

.hero-section {
  margin-top: 50px;
}
.work-body-container{
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
}

.work-body {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
  height: min-content;
  justify-content: center;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}

.work-section .work-body-inner{
   display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
  justify-content: center;
  align-items: center;

  width: 100%;
  flex: 1;
}




  /* ── HERO section────────────────────────────────────────────── */
  .store-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
  }

  .store-btn {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 9px;

  background: var(--pill-bg);
  color: var(--pill-fg);
  border: 2px solid var(--pill-bg) ;

  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 14px;

  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;

  transition: color 0.35s ease;
  z-index: 0;
}


  .store-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fbfbfb;

  transform: scaleY(0);
  transform-origin: bottom;

  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);

  z-index: 0;
}
  .store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-btn * {
  position: relative;
  z-index: 1;
}
.store-btn:hover::before {
  transform: scaleY(1);
}

.store-btn:hover {
  color: black;
}

  /* ── PHONE + DESTINATION CAROUSEL ───────────────────── */
  .showcase {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Radial glow behind phone */
  .glow {
    position: absolute;
    top: 40px;
    width: 500px; height: 360px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.10) 0%, transparent 72%);
    pointer-events: none;
  }

  /* Phone shell */
  .phone {
    position: relative;
    z-index: 2;
    width: var(--phone-w);
    height: var(--phone-h);
    background: #0a0d14;
    border-radius: 38px;
    box-shadow:
      0 0 0 2px #222,
      0 30px 80px rgba(0,0,0,0.30),
      inset 0 0 0 1px rgba(255,255,255,0.08);
    overflow: hidden;
    flex-shrink: 0;
  }

  .phone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
  }

  .phone-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.7s ease;
    opacity: 0;
    transform: scale(1.06);
  }
  .phone-img.active {
    opacity: 1;
    transform: scale(1);
  }

  /* Notch */
  .phone::before {
    content: '';
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 22px;
    background: #0a0d14;
    border-radius: 12px;
    z-index: 10;
  }

  /* ── DESTINATION CARDS STRIP ─────────────────────────── */
  .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 144px;
    padding-top: 20px;
    margin-top: -180px;
    padding-bottom: 150px;
    overflow: hidden;
    z-index: 5;
  }

  /* Fade masks */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0px;
    width: 200px;
    z-index: 5;
    pointer-events: none;
  }
  .carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .carousel-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

  .carousel-track {
    display: flex;
    gap: 14px;
    padding: 0px 40px 20px;
    cursor: grab;
    user-select: none;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    transform: translateZ(0); 
    backface-visibility: hidden;
    /* top: -150px; */
  }
  .carousel-track:active { cursor: grabbing; }

  .dest-card {
    flex-shrink: 0;
    width: 230px;
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 18px 16px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.45s ease,
                opacity 0.45s ease;
    opacity: 0.55;
    transform: scale(0.90) translateY(8px);
  }

  .dest-card.active {
    opacity: 1;
    transform: scale(1.06) translateY(-12px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.14);
  }

  .dest-card .flag {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: block;
  }

  .dest-card .country {
    font-weight: 600;
    font-size: 0.9rem;
  }

  .dest-card .price {
    font-size: 0.78rem;
    color: var(--muted);
  }
  .dest-card .price span {
    color: var(--fg);
    font-weight: 600;
  }

  

/* end of hero section */

/* ── DATA PLANS SECTION ── */
.plans-section {
  background: var(--bg);
  padding: 90px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.plans-section .section-header{
  margin-bottom: 0;
}

.plans-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #00C38E;
  display: block;
  margin-bottom: 12px;
}

.plans-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.plans-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Tab bar */
.tab-bar {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: #f6f8fa;
  max-width: 366px;
  height: min-content;
  justify-content: center;
  border-radius: 10px;
  padding: 4px;
  gap: 10px;
  width: 100%;
}

.tab {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #4f4f4f;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 4px 2px;
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, font-weight 0.1s;
}

.tab.active {
  border-color: var(--fg);
  color: var(--fg);
  font-weight: 600;
  background: #ffffff;
  box-shadow: rgba(27, 28, 29, 0.06) 0px 6px 10px 0px, rgba(27, 28, 29, 0.06) 0px 2px 4px 0px;
  transform: none;
  transform-origin: 50% 50% 0px;
  will-change: auto;
}

/* Grid */
.plans-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 860px;
  animation: fadeUp 0.3s ease;
}

.plans-grid.active { display: grid; }

/* Regional grid: 4 cols row 1, Asia centered row 2 */
.regional-grid {
  grid-template-columns: repeat(4, 1fr);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Map cards (regional) */
.map-card {
  padding: 18px 16px 16px;
  gap: 0;
  justify-content: space-between;
  min-height: 160px;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
}

.map-countries {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.map-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  width: 100%;
}
.pricing-map{
    width: 100%;
}

.world-svg {
  width: 100%;
  max-width: 130px;
  height: auto;
}

.world-bg { fill: #bbb; }
.region-shape { opacity: 0.9; }

/* Plan card */
.plan-card {
  height: min-content;
  min-height: 164px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: flex-start;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-align: center;
}
.plan-card-inner{
  align-content: center;
    align-items: left;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.plan-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.plan-flag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #eee;
  object-fit: cover;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.12); */
  flex-shrink: 0;
}
.global-plan-img {
  width: 160px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.plan-name {
  font-weight: 500;
  color: #333333;
  text-align: start;
}

.plan-price {
  align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.plan-price-value {
  padding: 4px 8px;
  font-size: 12px;
  background: #f7f7f8;
  border-radius: 8px;
  color: #333333;
  width: min-content;
}

/* View all button */


.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pill-bg);
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px 13px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.view-all-btn:hover { opacity: 0.82; transform: scale(0.97); }

.view-all-btn .btn-icon {
  width: 28px; height: 28px;
  background: #333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.view-all-btn .btn-icon svg { width: 12px; height: 12px; }

@media (max-width: 450px){
  .plan-card{
    flex-direction: row;
    align-items: center;
  }
}

/* end of data plans section */

/* why section */
/* ── FEATURES SECTION ── */
.features-section {
  padding: 80px 40px 100px;
  background: var(--bg);
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* 3-col layout */
.features-track {
  display: grid;
  grid-template-columns: 300px 320px 300px;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: center; 
}

.feat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.feat-col--left,
.feat-col--right {
  margin-top: 24px;
  margin-bottom: 24px;
}


.feat-col--mid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.feat-col--mid .feat-card--tall {
  flex: 1;
  height: auto;
}

/* Base card */
.feat-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 24px;
  gap: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 300px;
}
.feat-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

@media (max-width: 380px) {
  .feat-card{
    min-width: 250px;
  }
}

.feat-illus {
  flex-shrink: 0;
  min-height: 160px;
  /* height: 100%; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.feat-illus .coverage-map-img {
  max-width: 280px;
  width: 100%;
}

.feat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-title {
  font-weight: 600;
  font-size: 0.97rem;
  color: #0a0d14;
}

.feat-desc {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.65;
}

/* ── CHAT ILLUSTRATION ── */
.chat-ui {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.chat-row { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}
.av1 { background: #d4c5b5; }
.av2 { background: #c8c8c8; }
.chat-lines { display: flex; flex-direction: column; flex: 1; }
.chat-line { height: 9px; border-radius: 5px; background: #ebebeb; }
.chat-bubble-out {
  align-self: flex-end;
  background: #f0f0ee;
  border-radius: 12px 12px 3px 12px;
  padding: 9px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 65%;
}

/* ── DEST MINI GRID ── */
.dest-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 100%;
  padding: 4px 4px 0;
}
.dest-mini {
  background: #fafafa;
  border-radius: 10px;
  padding: 8px 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: 0.6rem;
  color: #aaa;
  position: relative;
  border: 1px solid #eee;
}
.dest-mini--sel { border-color: rgba(34,197,94,0.3); background: #fff; }
.mini-flag { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }
.mini-name { font-weight: 600; color: #333; font-size: 0.6rem; line-height: 1.2; }
.mini-price { font-size: 0.55rem; color: #aaa; }
.check-badge {
  position: absolute;
  top: -9px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px;
  background: #22c55e;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(34,197,94,0.4);
}

/* ── PRIVACY ILLUSTRATION ── */
.feat-illus--privacy {
  flex-direction: column;
  justify-content: flex-end;
}
.priv-lines-wrap {
  position: absolute;
  top: 16px; left: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.priv-bar { height: 9px; border-radius: 5px; background: #ebebeb; }
.shield-wrap { position: relative; z-index: 2; margin-bottom: 4px; }
.shield-svg {
  width: 72px;
  filter: drop-shadow(0 8px 20px rgba(232,80,26,0.30));
}

/* ── TALL CARD SECTIONS ── */
.tall-section { display: flex; flex-direction: column; }
.tall-divider {
  height: 1px;
  background: #f0f0ee;
  margin: 0 20px;
}

/* ── PAYMENT ILLUSTRATION ── */
.feat-illus--pay {
  padding: 12px 16px;
  background: #fff;
}
.pay-list { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #eee;
}
.pay-row--active { border-color: #e0e0e0; background: #fff; }
.pay-icon-wrap {
  width: 34px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #aaa;
  flex-shrink: 0;
}
.pay-line-fill { flex: 1; height: 8px; border-radius: 4px; background: #ebebeb; }
.pay-chevron {
  width: 7px; height: 7px;
  border-right: 1.5px solid #bbb;
  border-top: 1.5px solid #bbb;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Store buttons */
.feat-store-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.feat-store-btns .eroam-btn {
border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 14px;
  font-weight: 500;
}

.feat-store-btns .eroam-btn .eroam-btn-icon svg{
  width: 20px !important;
  height: 20px !important;
}

/* ── COVERAGE MAP ── */
.cov-svg { width: 100%; max-width: 260px; height: auto; }

/* ── BRANDS GRID ── */
.feat-illus--brands { padding: 20px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.brand-pill {
  background: #fafafa;
  border-radius: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  font-weight: 700;
}
.brand-mi       { color: #FF6900; font-size: 1.1rem; font-style: italic; }
.brand-samsung  { color: #1428A0; font-size: 0.52rem; }
.brand-lenovo   { color: #E2231A; font-size: 0.72rem; }



/* how eroam works section */

.work-section .content-side{
  max-width: 444px;
}

.steps-flow {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--muted);
  line-height: 36px;
  text-align: center;
}

.step-inline {
  display: inline;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-right: 8px;
}

.step-inline.active {
  color: var(--accent);
}

.emoji {
  filter: grayscale(1) opacity(0.4);
  transition: all 0.3s ease;
}

.step-inline.active .emoji {
  filter: grayscale(0) opacity(1);
}

/* Phone Mockup */
.phone-side-frame {
  width: 200px;
  height: 414px;
  background: #000;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.phone-side{
  max-width:300px
}

.phone-side-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.phone-side-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

/* faq section */








/* end of faq section */

/* start of comparison section */
.cmp-section {
  padding: 90px 0 100px;
  background: var(--bg);
}
.cmp-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
}


.cmp-table-wrap {
  display: flex;
  max-width: 1020px;
  margin: 0 auto;
  border-radius: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  scroll-snap-type: x mandatory;
  
}

.cmp-col {
  min-width: 220px;
  scroll-snap-align: start;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cmp-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.cmp-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
}

.cmp-col--feature { flex: 1.4; background: #fff; }
.cmp-col--eroam    { background: #0b2440; flex: 1; }
.cmp-col--other   { background: #fff; flex: 1; }

.cmp-col + .cmp-col { border-left: 1px solid rgba(0,0,0,0.07); }
.cmp-col--eroam + .cmp-col { border-left: 1px solid rgba(0,0,0,0.07); }

.cmp-col-head {
  padding: 22px 16px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: #0e1e2f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-height: 90px;
  justify-content: center;
}
.cmp-col-head--blank {
  background: #fff;
  color: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cmp-col-head--other {
  background: #f7f7f5;
  color: #444;
  font-weight: 600;
  font-size: 0.85rem;
}
.cmp-badge {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
}
.cmp-row {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: #555;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  min-height: 50px;
  transition: background 0.15s;
}
.cmp-row:hover { background: rgba(0,0,0,0.02); }
.cmp-col--eroam .cmp-row {
  border-top-color: rgba(255,255,255,0.08);
  justify-content: center;
}
.cmp-col--eroam .cmp-row:hover { background: rgba(255,255,255,0.06); }
.cmp-col--other .cmp-row { justify-content: center; }
.cmp-row--label { font-weight: 500; color: #333; }

.cmp-yes     { font-size: 1rem; color: #00C38E; font-weight: 700; }
.cmp-no      { font-size: 1rem; color: #de0b0b ; font-weight: 700; }
.cmp-partial { font-size: 1rem; color: #0279FF ; font-weight: 700; }
.cmp-col--eroam .cmp-yes { color: #6ee7a7; }

.cmp-legend {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .cmp-section { padding: 60px 16px 80px; }
  .cmp-col--other:last-child { display: none; }
  .cmp-row { padding: 12px 10px; font-size: 0.78rem; }
}


/* end of comparison section */


/* start of about section */
.about-section {
  padding: 90px 40px 100px;
}
.about-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  background: #f7f7f5;
  border-radius: 16px;
  padding: 24px 28px;
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.about-stat-num {
  font-size: 1.7rem;
  color: #0a0d14;
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* Card stack */
.about-right { 
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 340px;
  min-height: 280px;
}
.about-card {
  width: 100%;
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
}
.about-card--back {
  width: 80%; height: 220px;
  bottom: 0; left: 50%; transform: translateX(-50%) rotate(-6deg);
  background: #e8e8e4;
}
.about-card--mid {
  width: 88%; height: 240px;
  bottom: 10px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: #f0f0ec;
}
.about-card--front {
  width: 100%; height: 260px;
  bottom: 20px; left: 0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 16px;
  gap: 10px;
}
.about-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-logo-mark {
  width: 36px; height: 36px;
  background: transparent;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-logo-mark img{
  width: 36px;
  height: 36px;
}
.about-card-title { font-weight: 700; font-size: 0.9rem; color: #0a0d14; }
.about-map-visual { flex: 1; overflow: hidden; }
.about-card-footer {
  border-top: 1px solid #f0f0ee;
  padding-top: 10px;
}
.about-card-connected {
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 600;
}
@keyframes aboutPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.5); }
}
.about-pulse { animation: aboutPulse 2s ease-in-out infinite; }


/* end of about section */

/* start of contact section */
.contact-left { display: flex; flex-direction: column; gap: 0; }
.contact-left .body-text { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: #f5f5f2;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-label  { font-size: 0.75rem; color: var(--muted); margin-bottom: 2px; text-align: left; }
.contact-info-value  { font-size: 0.88rem; font-weight: 600; color: #0a0d14; }

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form-group { display: flex; flex-direction: column; gap: 7px; }
.contact-label { font-size: 0.8rem; font-weight: 600; color: #444; align-self: start; }
.contact-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #0a0d14;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  text-overflow: ellipsis;
}
.contact-input:focus {
  border-color: #0a0d14;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
}
.contact-input::placeholder { color: #bbb; }
.contact-select-wrap { position: relative; }
.contact-select { cursor: pointer; padding-right: 36px; }
.contact-select-arrow {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.eroam-btn.contact-submit{
  font-family: inherit;
 display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #0a0d14;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 4px;
}

.eroam-btn.contact-submit::before{
  background: #fff;
  color: var(--fg);
}
.eroam-btn.contact-submit:hover .eroam-btn-text{
  color: var(--fg);
}

.eroam-btn.contact-submit:hover .contact-submit-icon{
  background: rgba(0,0,0,0.15);
  color: var(--fg);
}

.contact-submit-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  will-change: color;
}
.contact-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 500;
  background: #f0fdf4;
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(34,197,94,0.2);
}
.contact-success.visible { display: flex; animation: fadeUp 0.4s ease; }



/* end of contact section */

/* footer section */

.footer {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  z-index: 100;
}

.footer-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  width: 110px;
}

.footer-logo img{
  width: 100%;
}

.logo-triangle {
  font-size: 12px;
  line-height: 1;
  position: relative;
  top: -1px; /* cleaner vertical alignment */
}

/* Links */
.footer-links {
  display: flex;
  gap: 30px;
  position: relative;
  top: auto;
  left: auto;
}

.footer-links a {
  text-decoration: none;
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent2);
}



@media (max-width: 767px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-box {
    padding: 50px 24px;
  }
  .contact-info-value {
    text-align: left;
  }
  .hero-section{
    margin-top: 50px;
  }
  .hero-section .section-header{
    margin-bottom: 20px
  }
  .hero-section .store-buttons{
    margin-bottom: 5px
  }
}

/* ── Chat / privacy bar width utilities ── */
.chat-line--w55 { width: 55%; }
.chat-line--w38 { width: 38%; }
.chat-line--w65 { width: 65%; }
.chat-line--w100 { width: 100%; }
.chat-line--w70 { width: 70%; }
.chat-line--mt { margin-top: 5px; }
.priv-bar--w90 { width: 90%; }
.priv-bar--w70 { width: 70%; }
.about-left .body-text + .body-text { margin-top: 12px; }
.about-map-visual svg { width: 100%; height: auto; }