/* ============================================================
   FITKIT — Guest landing experience
   Design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --green: #16D2D3;
  --blue: #12A8A9;
  --teal: #16D2D3;
  --yellow: #FFEB00;
  --ink: #181818;
  --ink-soft: #606060;
  --ink-faint: #787878;
  --bg: #FFFFFF;
  --mist: #F6F9FC;
  --mist-2: #EEF3F8;
  --line: rgba(24,24,24, 0.08);
  --line-strong: rgba(24,24,24, 0.12);

  /* Gradient language */
  --grad: linear-gradient(118deg, #16D2D3 0%, #12c9cc 42%, #12A8A9 100%);
  --grad-soft: linear-gradient(118deg, rgba(22,210,211,0.12), rgba(18,168,169,0.12));
  --grad-text: linear-gradient(108deg, #0D7E7F 0%, #12A8A9 92%);

  /* Radius */
  --r-xs: 12px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadow — soft, layered, premium */
  --sh-xs: 0 1px 2px rgba(24,24,24,0.04), 0 2px 6px rgba(24,24,24,0.04);
  --sh-sm: 0 2px 6px rgba(24,24,24,0.05), 0 8px 20px rgba(24,24,24,0.06);
  --sh-md: 0 4px 12px rgba(24,24,24,0.06), 0 18px 44px rgba(24,24,24,0.09);
  --sh-lg: 0 8px 28px rgba(24,24,24,0.08), 0 40px 90px rgba(24,24,24,0.16);
  --sh-brand: 0 10px 30px rgba(18,168,169,0.28), 0 24px 60px rgba(18,168,169,0.22);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.mono {
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.04em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(22,210,211,0.14);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section title block */
.sec-head { max-width: 720px; }
.sec-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.sec-head p {
  margin-top: 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
}

/* ============================================================
   BUTTONS / STORE BADGES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space: nowrap;
}
.btn-grad {
  background: var(--grad); color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(18,168,169,0.36), 0 30px 70px rgba(18,168,169,0.28); }
.btn-grad:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.7); color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--sh-sm); }

/* Store badge */
.store {
  display: inline-flex; align-items: center; gap: 13px;
  height: 58px; padding: 0 24px 0 20px;
  border-radius: 16px;
  background: var(--ink); color: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--sh-sm);
}
.store:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.store svg { flex: none; }
.store .lab { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store .lab small { font-size: 11px; opacity: 0.72; font-weight: 400; letter-spacing: 0.01em; }
.store .lab span { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.store.light { background: #fff; color: var(--ink); border: 1px solid var(--line); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: calc(100% - 40px); max-width: 1120px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 14px 0 22px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, var(--sh-sm);
  transition: box-shadow .4s var(--ease), background .4s, transform .5s var(--ease);
}
.nav.scrolled .nav-inner {
  background: rgba(255,255,255,0.82);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--sh-md);
}
.logo { display: flex; align-items: center; gap: 13px; font-weight: 700; font-size: 24px; letter-spacing: -0.03em; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad); position: relative;
  box-shadow: 0 4px 12px rgba(18,168,169,0.35);
  display: grid; place-items: center;
}
.logo .mark svg { width: 19px; height: 19px; }
.nav-token {
  display: none; align-items: center; gap: 7px;
  font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--ink-faint);
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--mist); border: 1px solid var(--line);
}
@media (min-width: 880px) { .nav-token { display: inline-flex; } }
.nav-token b { color: var(--green); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.55;
}
.blob.a { width: 620px; height: 620px; top: -220px; right: -120px; background: radial-gradient(circle, rgba(22,210,211,0.55), transparent 65%); }
.blob.b { width: 560px; height: 560px; top: 60px; right: 180px; background: radial-gradient(circle, rgba(18,168,169,0.42), transparent 65%); animation: drift 16s ease-in-out infinite; }
.blob.c { width: 420px; height: 420px; top: 320px; left: -160px; background: radial-gradient(circle, rgba(22,210,211,0.28), transparent 65%); animation: drift 20s ease-in-out infinite reverse; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.hero-copy h1 em { font-style: normal; }
.hero-copy .sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6; max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap;
}
.hero-trust .t { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); font-weight: 450; }
.hero-trust .tick {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  background: var(--grad-soft); display: grid; place-items: center;
}
.hero-trust .tick svg { width: 11px; height: 11px; }

/* Phone showcase */
.showcase { position: relative; display: grid; place-items: center; min-height: 640px; }

/* ── New two-phone mockup ─────────────────────────────────── */
.phone-duo {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 840 / 1260;
  --mx: 0; --my: 0;
}
.ph-glow {
  position: absolute; left: 38%; bottom: -2%;
  width: 54%; height: 12%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(200,130,70,0.38) 0%, rgba(220,150,80,0.18) 45%, transparent 72%);
  filter: blur(22px);
  z-index: 1;
  border-radius: 50%;
  animation: glowPulse 7s ease-in-out infinite;
}
.ph-wrap {
  position: absolute; inset: 0;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.ph-front {
  z-index: 3;
  transform: translate(calc(var(--mx) * 24px), calc(var(--my) * 17px));
}
.ph-back {
  z-index: 2;
  transform: translate(calc(var(--mx) * -17px), calc(var(--my) * -12px));
}
.ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  will-change: transform;
}
.ph-front .ph-img {
  animation: phoneIn 1.1s cubic-bezier(.2,.75,.25,1) .15s both,
             floatFront 6.5s ease-in-out 1.25s infinite;
}
.ph-back .ph-img {
  animation: phoneIn 1.1s cubic-bezier(.2,.75,.25,1) .34s both,
             floatBack 8s ease-in-out 1.45s infinite;
}
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(48px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatFront {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-15px); }
}
@keyframes floatBack {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-22px); }
}
@keyframes glowPulse {
  0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.06); }
}
.phone-float { transform-origin: center; position: relative; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.phone {
  position: relative; z-index: 2;
  animation: floaty 6.5s ease-in-out infinite;
  width: 304px; height: 632px;
  border-radius: 52px;
  background: linear-gradient(150deg, #181818, #2a2a2a);
  padding: 13px;
  box-shadow: var(--sh-lg), 0 0 0 2px rgba(255,255,255,0.06) inset;
}
.phone::before {
  content: ""; position: absolute; left: 50%; top: 13px; transform: translateX(-50%);
  width: 104px; height: 30px; background: #0a0b0d; border-radius: 0 0 18px 18px; z-index: 6;
}
.island {
  position: absolute; left: 50%; top: 20px; transform: translateX(-50%);
  width: 84px; height: 26px; background: #000; border-radius: 999px; z-index: 7;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 9px;
}
.island::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1c2733; box-shadow: 0 0 0 1px rgba(18,168,169,0.4); }
.screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 40px; overflow: hidden;
  background: #fff;
}

/* App UI inside phone — FitKit Categories */
.app { position: absolute; inset: 0; display: flex; flex-direction: column; background: #fff; }
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 15px 22px 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
.app-status .r5 { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.app-status .sig { display: flex; gap: 3px; align-items: flex-end; }
.app-status .sig i { width: 3px; border-radius: 2px; background: var(--ink); display: inline-block; }

.app-bar { position: relative; display: flex; align-items: center; justify-content: center; padding: 8px 18px 10px; }
.app-bar .blogo { height: 30px; width: auto; }
.app-bar .right { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 9px; color: var(--ink); }
.app-bar .right svg { width: 21px; height: 21px; }
.app-credits { display: inline-grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; border-radius: 999px; background: var(--yellow); color: #1a1a1a; font-size: 12.5px; font-weight: 700; }

.app-tabs { display: flex; align-items: center; gap: 12px; padding: 2px 16px 10px; font-size: 12.5px; }
.app-tabs .tb { color: var(--ink-faint); font-weight: 500; white-space: nowrap; padding: 6px 4px; }
.app-tabs .tb.on { background: var(--teal); color: #fff; padding: 6px 15px; border-radius: 999px; font-weight: 600; }

.app-grid { padding: 4px 14px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; overflow: hidden; align-content: start; }
.tile { position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--mist-2); }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 2%, transparent 46%); }
.tile .badge { position: absolute; left: 9px; bottom: 30px; width: 25px; height: 25px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; z-index: 2; }
.tile .badge svg { width: 13px; height: 13px; }
.tile .tlab { position: absolute; left: 10px; bottom: 9px; color: #fff; font-size: 12px; font-weight: 600; z-index: 2; letter-spacing: -0.01em; }

.app-nav { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: #fff; border-top: 1px solid var(--line); display: flex; justify-content: space-around; align-items: center; padding-bottom: 3px; box-shadow: 0 -6px 18px rgba(24,24,24,0.05); }
.app-nav .ni { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--ink-faint); }
.app-nav .ni svg { width: 20px; height: 20px; }
.app-nav .ni small { font-size: 8px; font-weight: 500; }
.app-nav .ni.on { color: var(--teal); }

/* Floating glass cards around phone */
.fcard { position: absolute; z-index: 5; background: rgba(255,255,255,0.8); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border: 1px solid rgba(255,255,255,0.85); border-radius: 18px; box-shadow: var(--sh-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px; animation: floaty 7s ease-in-out infinite; }
.fcard.col { flex-direction: column; align-items: flex-start; gap: 9px; }
.fcard .row { display: flex; align-items: center; gap: 11px; width: 100%; }
.fcard .fi { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #fff; }
.fcard .fi svg { width: 18px; height: 18px; }
.fcard .ft b { font-size: 13.5px; font-weight: 600; display: block; letter-spacing: -0.01em; }
.fcard .ft small { font-size: 11.5px; color: var(--ink-faint); }
.fcard .prog { width: 100%; height: 6px; border-radius: 4px; background: var(--mist-2); overflow: hidden; }
.fcard .prog i { display: block; height: 100%; background: var(--teal); border-radius: 4px; }
.fcard.wifi { top: 64px; left: -44px; animation-delay: -1s; width: 210px; }
.fcard.beach { bottom: 118px; right: -46px; animation-delay: -3s; width: 210px; }

/* Call before booking card */
.fcard-booking-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; width: 100%; }
.fcard-credits { display: flex; flex-direction: column; align-items: center; flex: none; background: var(--yellow); border-radius: 10px; padding: 6px 8px; min-width: 44px; }
.fcard-credits-n { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1; }
.fcard-credits-l { font-size: 9px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.fcard-cta-btn { width: 100%; padding: 9px 12px; border-radius: 999px; background: #0D7E7F; color: #fff; font-size: 12.5px; font-weight: 700; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; transition: background 0.2s; }
.fcard-cta-btn:hover { background: #0D7E7F; }
.fcard-confirm-link { font-size: 10.5px; color: var(--ink-faint); text-align: center; display: block; }
.fcard-confirm-link strong { color: var(--ink); text-decoration: underline; }

/* Check-in available card */
.fcard.beach { background: rgba(255,200,170,0.18); border-color: rgba(220,100,60,0.15); }
.fcard-checkin-label { font-size: 11px; font-weight: 700; color: #c05a2a; letter-spacing: 0.03em; text-transform: uppercase; }
.fcard-checkin-row { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.fcard-checkin-item { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.fcard-checkin-item svg { color: #c05a2a; flex: none; }
.fcard-join-btn { width: 100%; padding: 9px 12px; border-radius: 999px; background: rgba(192,90,42,0.18); color: #c05a2a; font-size: 12.5px; font-weight: 700; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; transition: background 0.2s; }
.fcard-join-btn:hover { background: rgba(192,90,42,0.28); }
.fi.tg { background: var(--grad); }
.fi.yl { background: var(--yellow); color: #1a1a1a; }
.fi.bl { background: linear-gradient(135deg, #00b9cc, #5fe0e6); }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 80px 0; position: relative; }
.section.mist { background: var(--mist); }
.section.mist::before, .section.mist::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--line);
}
.section.mist::before { top: 0; }
.section.mist::after { bottom: 0; }

/* Feature grid */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px;
}
.feat {
  position: relative; padding: 30px 28px 32px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-xs);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  overflow: hidden;
}
.feat::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad-soft); opacity: 0; transition: opacity .5s var(--ease);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.feat:hover::before { opacity: 1; }
.feat > * { position: relative; z-index: 1; }
.feat .ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad); color: #fff; box-shadow: var(--sh-brand);
  transition: transform .5s var(--ease);
}
.feat:hover .ic { transform: scale(1.06) rotate(-3deg); }
.feat .ic svg { width: 25px; height: 25px; }
.feat h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-top: 22px; }
.feat p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin-top: 9px; }
.feat .idx { position: absolute; top: 26px; right: 28px; font-family:'Geist Mono',monospace; font-size: 12px; color: var(--ink-faint); z-index: 1; }

/* ============================================================
   ACTIVITY CHIPS
   ============================================================ */
.acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 50px; }
.act {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 20px 12px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.85); border: 1px solid var(--line);
  box-shadow: var(--sh-xs); font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.act:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); border-color: transparent; }
.act .ai { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; background: #FFEB00; color: #1a1a1a; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.act .ai svg { width: 18px; height: 18px; stroke: #1a1a1a; }

/* Slim stat band */
.statband {
  display: flex; align-items: center; justify-content: flex-start; gap: 0;
  margin-top: 56px; padding: 30px 36px; border-radius: var(--r-lg);
  background: rgba(255,255,255,0.85); border: 1px solid var(--line); box-shadow: var(--sh-xs);
  flex-wrap: wrap;
}
.statband .si { flex: 1; padding: 28px 20px; text-align: center; }
.statband .si:first-child { padding-left: 20px; }
.statband .si + .si { border-left: 1px solid var(--line); }
.statband .si .n { font-size: clamp(32px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.statband .si .n::before { content: ""; display: block; width: 28px; height: 3px; border-radius: 2px; background: var(--grad); margin: 0 auto 14px; }
.statband .si .l { margin-top: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 640px) {
  .statband { gap: 22px; padding: 26px 24px; }
  .statband .si { padding: 0; flex: 1 1 40%; }
  .statband .si + .si { border-left: none; }
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 60px; align-items: stretch; }
.cpanel { border-radius: var(--r-lg); padding: 34px 32px; position: relative; }
.cpanel.without { background: #fff; border: 1px solid var(--line); }
.cpanel.with { background: var(--ink); color: #fff; box-shadow: var(--sh-lg); overflow: hidden; }
.cpanel.with::before { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(22,210,211,0.18), rgba(18,168,169,0.14)); }
.cpanel.with > * { position: relative; z-index: 1; }
.cpanel .clab {
  display: inline-flex; align-items: center; gap: 9px;
  font-family:'Geist Mono',monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.cpanel.without .clab { background: var(--mist-2); color: var(--ink-faint); }
.cpanel.with .clab { background: rgba(255,255,255,0.16); color: #fff; }
.cpanel h3 { font-size: 25px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 22px; }
.cpanel.without h3 { color: var(--ink-soft); }
.crow { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid; }
.cpanel.without .crow { border-color: var(--line); }
.cpanel.with .crow { border-color: rgba(255,255,255,0.12); }
.crow .ci { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; }
.cpanel.without .ci { background: var(--mist-2); color: var(--ink-faint); }
.cpanel.with .ci { background: var(--grad); color: #fff; }
.crow span { font-size: 15.5px; font-weight: 450; }
.cpanel.without .crow span { color: var(--ink-faint); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; position: relative; }
.step { padding: 0 28px; position: relative; min-width: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; right: -6px; width: 12px; height: 12px;
  border-top: 2px solid var(--line-strong); border-right: 2px solid var(--line-strong);
  transform: rotate(45deg);
}
.step .num {
  width: 68px; height: 68px; border-radius: 22px; display: grid; place-items: center;
  font-size: 26px; font-weight: 600; color: #fff; background: var(--grad);
  box-shadow: var(--sh-brand); margin-bottom: 28px; letter-spacing: -0.02em;
  position: relative;
}
.step .num .glyph { position: absolute; inset: 0; display: grid; place-items: center; }
.step h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.step p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; margin-top: 11px; max-width: 280px; }
.step .ill {
  margin-top: 26px; height: 150px; border-radius: var(--r-md);
  background: var(--ink); border: 1px solid transparent;
  display: grid; place-items: center; overflow: hidden; position: relative;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.stat {
  padding: 40px 34px; border-radius: var(--r-lg);
  background: rgba(255,255,255,0.8); border: 1px solid var(--line);
  box-shadow: var(--sh-xs); position: relative; overflow: hidden;
}
.stat .num { font-size: clamp(44px, 5vw, 62px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.stat .lab { margin-top: 14px; font-size: 16px; color: var(--ink-soft); font-weight: 450; }
.stat .spark { position: absolute; right: 28px; top: 32px; width: 30px; height: 30px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  position: relative; margin: 0 24px 28px; border-radius: var(--r-xl);
  background: var(--grad); overflow: hidden;
  padding: 96px 40px 100px; text-align: center; color: #fff;
}
.cta-mesh { position: absolute; inset: 0; opacity: 0.9; }
.cta-mesh .m { position: absolute; border-radius: 50%; filter: blur(50px); }
.cta-mesh .m1 { width: 400px; height: 400px; background: rgba(255,255,255,0.25); top: -160px; left: 10%; }
.cta-mesh .m2 { width: 360px; height: 360px; background: rgba(9,84,84,0.4); bottom: -160px; right: 12%; animation: drift 18s ease-in-out infinite; }
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 600; }
.cta p { margin-top: 22px; font-size: clamp(17px, 1.5vw, 21px); opacity: 0.92; line-height: 1.55; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cta .store { background: #fff; color: var(--ink); }
.cta .store:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.18); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-old { padding: 46px 0 56px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .logo { font-size: 17px; }
.footer .copy { font-size: 13.5px; color: var(--ink-faint); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1 !important; transform: none !important; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .phone-float, .phone, .fcard, .blob.b, .blob.c, .cta-mesh .m2, .mrow, .grad-text, .ph-img, .ph-glow { animation: none !important; }
  .ph-img { opacity: 1 !important; transform: none !important; }
  .showcase::before, .scrollcue .m::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LINK RESOLVER — loading + error states
   ============================================================ */
.resolver {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--grad);
  transition: opacity .6s var(--ease), visibility .6s;
}
.resolver.hide { opacity: 0; visibility: hidden; pointer-events: none; }
html.pending .resolver.hide { opacity: 1; visibility: visible; pointer-events: auto; }
.resolver .panel { text-align: center; color: #fff; padding: 32px; max-width: 420px; }
.resolver .rlogo {
  width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 26px;
  background: rgba(255,255,255,0.16); display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px);
}
.resolver .rlogo svg { width: 32px; height: 32px; }
.spinner {
  width: 38px; height: 38px; margin: 0 auto;
  border: 3px solid rgba(255,255,255,0.28);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.resolver .rstatus { margin-top: 22px; font-size: 15px; opacity: 0.9; }
.resolver .rstatus .mono { display: block; margin-top: 8px; font-size: 12.5px; opacity: 0.75; }

/* error variant */
.resolver.error { background: var(--mist); }
.resolver.error .panel { color: var(--ink); }
.resolver.error .rlogo { background: #fff; border-color: var(--line); box-shadow: var(--sh-sm); }
.resolver.error .ico { width: 58px; height: 58px; border-radius: 18px; margin: 0 auto 24px; display: grid; place-items: center; background: var(--grad-soft); }
.resolver.error h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.resolver.error p { margin-top: 12px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.resolver.error .ebtns { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ============================================================
   TOAST (analytics feedback)
   ============================================================ */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: rgba(24,24,24,0.92); color: #fff;
  padding: 13px 18px; border-radius: 16px;
  font-size: 14px; box-shadow: var(--sh-lg);
  backdrop-filter: blur(12px);
  transform: translateY(16px); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.toast.show { transform: none; opacity: 1; }
.toast .td { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; flex: none; }
.toast .mono { color: var(--green); font-size: 12.5px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .phone-duo { max-width: 520px; }
  .hero-copy .sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .steps { grid-template-columns: 1fr; gap: 46px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .step:not(:last-child)::after { display: none; }
  .step { padding: 0; text-align: center; }
  .step .num, .step p { margin-left: auto; margin-right: auto; }
  .step .ill { display: flex; }
  .sec-head, .sec-head p { margin-left: auto; margin-right: auto; }
  .sec-head { text-align: center; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 124px 0 52px; }
  .section { padding: 68px 0; }
  .nav-inner { height: 56px; }
  .store { height: 54px; }
  .cta { margin: 0 14px 16px; padding: 60px 20px 140px; }
  .showcase { min-height: 560px; }
  .sec-head h2 { font-size: clamp(30px, 8vw, 44px); }
  .acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .act { width: 100%; padding: 12px 14px; font-size: 15px; }
  .act-more { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 560px) {
  .nav { top: 12px; }
  .nav-inner { padding: 0 10px 0 15px; }
  .logo { font-size: 16px; gap: 8px; }
  .logo .mark-img { width: 30px; height: 30px; }
  .nav .btn-grad { height: 42px; padding: 0 15px; font-size: 13.5px; }
  .nav-token { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero-cta .store { width: 100%; justify-content: center; }
  .hero-trust { gap: 11px 16px; }
  .phone-float { transform: scale(0.94); transform-origin: center top; }
  .phone-duo { max-width: 440px; }
  .showcase { min-height: 540px; }
  .showcase::before { width: 360px; height: 360px; }
  .statband { flex-direction: column; align-items: stretch; gap: 0; padding: 4px 22px; }
  .statband .si { padding: 18px 0; }
  .statband .si:first-child { padding-top: 6px; }
  .statband .si + .si { border-left: none; border-top: 1px solid var(--line); }
  .cta-cta { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cta-cta .store { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .phone-float { transform: scale(0.84); }
  .phone-duo { max-width: 360px; }
  .showcase { min-height: 500px; }
  .hero-copy h1 { font-size: 36px; }
}


/* ============================================================
   MODERN ADDITIONS
   ============================================================ */

/* Conic aurora glow behind the phone */
.showcase::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 520px; height: 520px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(22,210,211,0.18), rgba(18,168,169,0.10), rgba(254,246,36,0.12), rgba(22,210,211,0.18));
  filter: blur(64px); z-index: 0; pointer-events: none;
  animation: spin 28s linear infinite;
}
.fcard { z-index: 5; }

/* Shimmer on gradient text */
.grad-text { background-size: 220% auto; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* Scroll cue */
.scrollcue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  z-index: 2;
}
.scrollcue .m { width: 22px; height: 34px; border: 1.6px solid var(--line-strong); border-radius: 12px; position: relative; }
.scrollcue .m::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 3px; background: var(--teal); transform: translateX(-50%); animation: scrolldot 1.9s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 70% { opacity: 1; transform: translate(-50%, 11px); } 100% { opacity: 0; transform: translate(-50%, 11px); } }
@media (max-width: 980px) { .scrollcue { display: none; } }

/* Activity marquee */
.marquee { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.mrow { display: flex; gap: 13px; width: max-content; will-change: transform; }
.mrow.r1 { animation: marquee 42s linear infinite; }
.mrow.r2 { animation: marquee 36s linear infinite reverse; }
.marquee:hover .mrow { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sticky mobile download bar */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; align-items: center; gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.84); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(24,24,24,0.08);
  transform: translateY(120%); transition: transform .5s var(--ease);
}
.mobar.show { transform: none; }
.mobar .mb-tx { flex: 1; min-width: 0; }
.mobar .mb-tx b { font-size: 14px; font-weight: 600; display: block; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobar .mb-tx small { font-size: 11.5px; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobar .btn-grad { height: 46px; padding: 0 22px; flex: none; }
@media (max-width: 768px) { .mobar { display: flex; } .mobar .mb-tx small { display: none; } }
@media (max-width: 360px) {
  .mobar { gap: 8px; padding: 10px 14px; }
  .mb-badges { gap: 6px; }
  .mb-badge { padding: 7px 10px; gap: 6px; }
  .mb-badge-lab small { font-size: 9px; }
  .mb-badge-lab strong { font-size: 11px; }
}

/* Display headline font — Montserrat Bold per FitKit brand */
.hero-copy h1, .sec-head h2, .cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.025em; }
.statband .si .n { font-family: 'Montserrat', sans-serif; font-weight: 800; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
h4 { font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: none;
  padding: 0;
  margin: 0;
}
.footer-top-border {
  height: 3px;
  background: #0D7E7F;
  width: 100%;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-top: 52px;
  padding-bottom: 48px;
  align-items: start;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
/* Brand col */
.footer-brand img { margin-bottom: 16px; }
.footer-tagline {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-socials a {
  color: var(--ink-soft);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--ink); }
/* Links col */
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-nav-links a:hover { color: var(--blue); }

/* Newsletter col */
.footer-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 8px;
  gap: 8px;
}
.footer-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: transparent;
  padding: 4px 0;
}
.footer-input::placeholder { color: var(--ink-faint); }
.footer-submit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.footer-submit:hover { background: #0D7E7F; transform: scale(1.05); }

/* Download col */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  width: fit-content;
  min-width: 160px;
}
.footer-badge:hover { border-color: var(--ink); background: var(--mist); }
.footer-badge-lab {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-badge-lab small { font-size: 10px; color: var(--ink-soft); font-weight: 400; }
.footer-badge-lab strong { font-size: 13px; font-weight: 700; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-help {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-help:hover { color: var(--ink); }
.footer-contact-btn {
  height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.footer-contact-btn:hover { background: #0D7E7F; }

/* Legal strip */
.footer-legal {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
}
.footer-legal a {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--ink); }

/* Footer bottom bar wraps on mobile */
.footer-bottom-inner {
  flex-wrap: wrap;
  gap: 8px;
}

/* Footer responsive */
@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .footer-badges { margin-bottom: 12px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal {
    flex-direction: column; gap: 10px; text-align: center;
  }
}

/* ============================================================
   TRAVEL SECTION
   ============================================================ */
.travel-sec {
  background: var(--ink);
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.travel-sec::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: -280px; right: -160px;
  background: radial-gradient(circle, rgba(22,210,211,0.09), transparent 60%);
  pointer-events: none;
}
.travel-sec::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(18,168,169,0.07), transparent 60%);
  pointer-events: none;
}

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.travel-eyebrow { color: rgba(255,255,255,0.45) !important; }

.travel-h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin-top: 18px;
}
.travel-h2 em { font-style: normal; }

.travel-lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.35vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 440px;
}

.city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
}
.city-chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16D2D3;
  flex: none;
  opacity: 0.85;
}
.city-chip.more-chip {
  color: rgba(255,255,255,0.28);
  border-style: dashed;
}
.city-chip.more-chip::before { display: none; }

.travel-expand {
  margin-top: 28px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.travel-strong {
  color: #16D2D3;
  font-weight: 600;
}

.travel-stats-row {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.tst {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 28px;
  flex: 1;
  text-align: center;
}
.tst:first-child { padding-left: 0; text-align: left; }
.tst-n {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.tst-l {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.tst-sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  flex: none;
}

/* No extra charge callout */
.travel-no-charge {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(22,210,211,0.07);
  border: 1px solid rgba(22,210,211,0.2);
}
.tnc-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: var(--sh-brand);
  margin-top: 1px;
}
.tnc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tnc-text strong {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
}
.tnc-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}

/* Coverage card */
.travel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.coverage-card {
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}
.cov-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cov-head-left {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cov-head-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: var(--sh-brand);
}
.cov-head-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cov-head-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.cov-head-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
}
.cov-head-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(22,210,211,0.13);
  border: 1px solid rgba(22,210,211,0.24);
  font-size: 12px;
  font-weight: 600;
  color: #16D2D3;
  letter-spacing: 0.02em;
}
.cov-list {
  padding: 6px 0;
}
.cov-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.cov-row:last-child { border-bottom: none; }
.cov-row.home { background: rgba(22,210,211,0.06); }
.cov-flag {
  font-size: 28px;
  line-height: 1;
  flex: none;
  width: 36px;
  text-align: center;
}
.cov-row-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cov-row-info b {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}
.cov-row-info small {
  font-size: 11px;
  color: rgba(255,255,255,0.36);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.03em;
}
.cov-home-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(22,210,211,0.15);
  border: 1px solid rgba(22,210,211,0.28);
  font-size: 10.5px;
  font-weight: 700;
  color: #16D2D3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: none;
}
.cov-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(22,210,211,0.1);
  border: 1px solid rgba(22,210,211,0.2);
  display: grid;
  place-items: center;
  color: #16D2D3;
  flex: none;
}
.cov-foot {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}
.cov-foot-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
}
.cov-foot-stat:first-child { align-items: flex-start; text-align: left; }
.cov-foot-n {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cov-foot-l {
  font-size: 9.5px;
  color: rgba(255,255,255,0.28);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cov-foot-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.07);
  flex: none;
}

@media (max-width: 980px) {
  .travel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .travel-lead { margin-left: auto; margin-right: auto; }
  .city-row { justify-content: center; }
  .travel-no-charge { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
  .coverage-card { max-width: 420px; margin: 0 auto; }
  .cov-foot-stat:first-child { align-items: center; text-align: center; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 22px 0;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logos img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.48);
  transition: filter 0.25s;
  display: block;
}
.trust-logos img:hover { filter: grayscale(0) opacity(1); }
@media (max-width: 860px) {
  .trust-strip-label { display: none; }
  .trust-logos { justify-content: center; }
}

/* ============================================================
   HOW IT WORKS — 4 STEPS
   ============================================================ */
.steps4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.step4 {
  padding: 0 22px;
  position: relative;
  min-width: 0;
}
.step4:first-child { padding-left: 0; }
.step4:last-child  { padding-right: 0; }
.step4:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -5px;
  width: 11px; height: 11px;
  border-top: 2px solid var(--line-strong);
  border-right: 2px solid var(--line-strong);
  transform: rotate(45deg);
}
.s4-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.s4-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.s4-icon-box {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--grad);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-brand);
  flex: none;
}
.step4 h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.step4 > p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 9px;
}
/* Credit packs visual */
.s4-packs {
  display: flex;
  gap: 8px;
  padding: 0 12px;
  width: 100%;
}
.s4-pack {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.s4-pack.active {
  background: rgba(22,210,211,0.15);
  border-color: rgba(22,210,211,0.32);
}
.s4-pack-n { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.s4-pack-u { font-size: 9px; color: rgba(255,255,255,0.4); font-family: 'Geist Mono',monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.s4-pack-tag { margin-top: 6px; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); }
.s4-pack.active .s4-pack-tag { background: rgba(22,210,211,0.2); color: #16D2D3; }
/* Booking search visual */
.s4-book {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px;
  width: 100%;
}
.s4-book-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}
.s4-book-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(22,210,211,0.1);
  border: 1px solid rgba(22,210,211,0.22);
}
.s4-book-dot { width: 7px; height: 7px; border-radius: 50%; background: #16D2D3; flex: none; box-shadow: 0 0 8px rgba(22,210,211,0.65); }
.s4-book-name { flex: 1; font-size: 12.5px; font-weight: 600; color: #fff; }
.s4-book-dist { font-size: 10.5px; color: rgba(255,255,255,0.4); font-family: 'Geist Mono',monospace; }
/* Steps4 responsive */
@media (max-width: 1100px) {
  .steps4 { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .step4:not(:last-child)::after { display: none; }
  .step4 { padding: 0 28px; }
  .step4:first-child, .step4:nth-child(3) { padding-left: 0; }
  .step4:nth-child(2), .step4:last-child { padding-right: 0; }
}
@media (max-width: 620px) {
  .steps4 { grid-template-columns: 1fr; gap: 40px; }
  .step4, .step4:nth-child(n) { padding: 0; }
}

/* ============================================================
   CREDITS SECTION
   ============================================================ */
.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cbullets { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.cbullet { display: flex; align-items: flex-start; gap: 14px; }
.cb-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
  box-shadow: var(--sh-brand);
}
.cb-b { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; display: block; margin-bottom: 3px; }
.cb-s { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
/* Credit card visual */
.credit-card-vis {
  width: 100%;
  max-width: 360px;
  border-radius: var(--r-xl);
  background: var(--ink);
  padding: 26px 26px 22px;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.credit-card-vis::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  top: -90px; right: -50px;
  background: radial-gradient(circle, rgba(22,210,211,0.13), transparent 60%);
  pointer-events: none;
}
.credit-card-vis > * { position: relative; z-index: 1; }
.ccv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ccv-head-l { display: flex; align-items: center; gap: 9px; }
.ccv-title { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: -0.01em; }
.ccv-active { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #16D2D3; font-family: 'Geist Mono',monospace; letter-spacing: 0.06em; }
.ccv-dot { width: 6px; height: 6px; border-radius: 50%; background: #16D2D3; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.ccv-balance { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.ccv-n { font-size: 46px; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.ccv-u { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.35); font-family: 'Geist Mono',monospace; letter-spacing: 0.04em; }
.ccv-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.ccv-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.ccv-bar-fill { height: 100%; width: 60%; background: var(--grad); border-radius: 3px; }
.ccv-bar-pct { font-size: 10px; color: rgba(255,255,255,0.28); font-family: 'Geist Mono',monospace; letter-spacing: 0.05em; white-space: nowrap; }
.ccv-sep { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 16px; }
.ccv-label { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Geist Mono',monospace; margin-bottom: 12px; }
.ccv-acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.ccv-act {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: default;
}
.ccv-act-i { width: 28px; height: 28px; border-radius: 8px; background: rgba(22,210,211,0.12); display: grid; place-items: center; }
@media (max-width: 980px) {
  .credits-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .cbullets { align-items: center; }
  .cbullet { text-align: left; }
  .credit-card-vis { margin: 0 auto; }
  .pricing-card { margin: 0 auto; }
}

/* ============================================================
   PRICING CARD
   ============================================================ */
.pricing-card {
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-xl);
  background: var(--ink);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  position: relative;
}
.pricing-card::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(22,210,211,0.13), transparent 60%);
  pointer-events: none;
}
.pc-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.pc-head-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.pc-item {
  background: var(--ink);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.2s;
  cursor: default;
}
.pc-item:hover { background: rgba(255,255,255,0.03); }
.pc-price {
  font-size: 30px;
  font-weight: 800;
  color: #16D2D3;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.pc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  line-height: 1.35;
}
.pc-foot {
  padding: 14px 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.03em;
  text-align: center;
  position: relative; z-index: 1;
}

/* ============================================================
   CREDIT PACKAGES — Apple-style pricing grid
   ============================================================ */
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.22s, background 0.22s;
  cursor: default;
}
.pkg-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.16);
}
.pkg-card.pkg-featured {
  background: rgba(22,210,211,0.08);
  border-color: rgba(22,210,211,0.45);
  box-shadow: 0 0 0 1px rgba(22,210,211,0.2), 0 24px 64px rgba(22,210,211,0.18);
  transform: translateY(-12px);
}
.pkg-card.pkg-featured:hover {
  background: rgba(22,210,211,0.11);
  border-color: rgba(22,210,211,0.6);
  transform: translateY(-14px);
}
.pkg-badge-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(108deg, #0D7E7F 0%, #16D2D3 100%);
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(22,210,211,0.35);
}
.pkg-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: 'Geist Mono', monospace;
  margin-bottom: 18px;
}
.pkg-featured .pkg-label { color: #16D2D3; }
.pkg-featured .pkg-credits-unit { color: rgba(22,210,211,0.6); }
.pkg-credits {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.pkg-credits-unit {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 22px 0;
}
.pkg-featured .pkg-divider { background: rgba(22,210,211,0.18); }
.pkg-price {
  font-size: 30px;
  font-weight: 800;
  color: #16D2D3;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.pkg-rate {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  margin-top: 6px;
  display: block;
}
.pkg-benefits {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: nowrap;
}
.pkg-benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
}
.pkg-benefit-ic {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(22,210,211,0.12);
  border: 1px solid rgba(22,210,211,0.22);
  display: grid;
  place-items: center;
  flex: none;
}
@media (max-width: 900px) {
  .pkg-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pkg-credits { font-size: 46px; }
  .pkg-card.pkg-featured { transform: none; }
  .pkg-card.pkg-featured:hover { transform: none; }
  .pkg-benefits { flex-wrap: wrap; gap: 20px; justify-content: center; }
}
@media (max-width: 768px) {
  .pkg-benefits { flex-direction: column; align-items: center; gap: 12px; }
}
@media (max-width: 540px) {
  .pkg-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pkg-card { padding: 22px 14px 18px; }
  .pkg-credits { font-size: 36px; }
  .pkg-price { font-size: 22px; }
  .pkg-rate { font-size: 10px; }
  .pkg-badge-pill {
    font-size: 9px;
    padding: 3px 10px;
    top: -11px;
  }
}

/* Activity chip — "and much more" variant */
.act-more { opacity: 0.5; }
.act-more-ai { background: rgba(0,0,0,0.06) !important; }
.act .ai svg { stroke: currentColor; }

/* CTA sub-label */
.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.52;
  letter-spacing: 0.01em;
}

/* ============================================================
   TESTIMONIALS — Apple-style dual marquee
   ============================================================ */
.testimonials { padding: 80px 0; overflow: hidden; background: var(--mist); max-width: 100vw; }
.testimonials .sec-head { margin-bottom: 52px; }

.marquee-track {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 16px;
  position: relative;
}
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--mist) 0%, transparent 100%); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, var(--mist) 0%, transparent 100%); }

.marquee-row {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.marquee-row.left  { animation: marquee-left  38s linear infinite; }
.marquee-row.right { animation: marquee-right 42s linear infinite; }
.marquee-track:hover .marquee-row { animation-play-state: paused; }

@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.tcard {
  flex: none;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(24,24,24,0.06), 0 4px 16px rgba(24,24,24,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}
.tcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(24,24,24,0.08), 0 12px 32px rgba(24,24,24,0.09);
}
.tcard-stars {
  display: flex;
  gap: 3px;
}
.tcard-stars svg { color: #FFD700; }
.tcard-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
  flex: 1;
  position: relative;
  padding-top: 6px;
}
.tcard-quote::before {
  content: '\201C';
  font-size: 56px;
  line-height: 0.6;
  font-family: Georgia, serif;
  color: #0D7E7F;
  opacity: 0.25;
  position: absolute;
  top: -4px;
  left: -4px;
}
.tcard-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.tcard-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tcard-role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: #0D7E7F;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.tcard-role.plain {
  background: var(--mist);
  color: var(--ink-faint);
}

/* ============================================================
   STEP ILL REDESIGNS — Apple-inspired
   ============================================================ */

/* Step 1: Full-text store badges */
.ill-download {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  justify-self: stretch;
  align-self: stretch;
  box-sizing: border-box;
}
.dl-bdg {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 46px;
  padding: 0 16px;
  border-radius: 13px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.11);
  color: #fff;
  text-decoration: none;
  transition: background 0.22s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}
.dl-bdg:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.dl-bdg svg { flex: none; }
.dl-bdg-lab {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.dl-bdg-lab small { font-size: 9.5px; opacity: 0.6; font-weight: 400; letter-spacing: 0.01em; }
.dl-bdg-lab strong { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }

/* Step 2: iOS segmented control */
.ill-plan {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  justify-self: stretch;
  align-self: stretch;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.seg-ctrl {
  position: relative;
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 3px;
  width: 100%;
}
.seg-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: rgba(255,255,255,0.18);
  border-radius: 9px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.3), inset 0 0 0 0.5px rgba(255,255,255,0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.seg-ctrl[data-active="1"] .seg-indicator {
  transform: translateX(calc(100% + 3px));
}
.seg-tab {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
  text-align: center;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.seg-tab.active { color: #fff; }
.seg-detail {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
}

/* Step 3: Auto check-in card */
.ill-checkin {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  justify-self: stretch;
  align-self: stretch;
  box-sizing: border-box;
}
.checkin-ping {
  position: relative;
  width: 52px;
  height: 52px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ping-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0,155,166,0.5);
  animation: ping-expand 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
}
.ping-ring:nth-child(2) { animation-delay: 0.8s; }
.ping-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes ping-expand {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.ping-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0D7E7F;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,155,166,0.5);
  position: relative;
  z-index: 1;
}
.checkin-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkin-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0D7E7F;
}
.checkin-venue {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.checkin-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.02em;
}

/* ============================================================
   HOW IT WORKS — STEP CARD UPGRADE
   ============================================================ */

/* Mist background + hairline borders */
.hiw-section {
  background: var(--mist);
  position: relative;
}
.hiw-section::before,
.hiw-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}
.hiw-section::before { top: 0; }
.hiw-section::after  { bottom: 0; }

/* Steps container */
.hiw-section .steps4 {
  gap: 16px;
  align-items: stretch;
}

/* Dashed connector line behind the step icons */
.hiw-section .steps4::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 64px;
  right: 64px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-strong) 0px,
    var(--line-strong) 5px,
    transparent 5px,
    transparent 13px
  );
  z-index: 0;
  pointer-events: none;
}

/* White cards for each step */
.step4 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--sh-xs);
  padding: 22px 20px 0 !important;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  display: flex !important;
  flex-direction: column !important;
}
.step4:first-child { padding-left: 20px !important; }
.step4:last-child  { padding-right: 20px !important; }
.step4 .s4-badge-row { margin-bottom: 16px; }
.step4 h3, .step4 > p { padding: 0 2px; }
.step4:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

/* Hide the old tiny chevron connector arrows */
.step4:not(:last-child)::after { display: none !important; }

/* Step counter — slightly more prominent */
.s4-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ── Illustration blocks inside each card ─────────────────── */
.step4 .ill {
  margin-top: 18px;
  flex: 1 !important;
  min-height: 130px;
  border-radius: 14px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 12px 14px;
  gap: 7px;
}

/* Step 1 — download badges stacked */
.step4 .ill.ill-download {
  flex-direction: column;
  align-items: stretch;
  padding: 14px 16px;
  gap: 8px;
  justify-content: center;
}

/* Step 2 — three credit packs */
.step4 .ill .s4-packs {
  padding: 0;
  gap: 7px;
  width: 100%;
  align-items: stretch;
}
.step4 .ill .s4-pack {
  padding: 12px 6px;
  border-radius: 11px;
}

/* Step 3 — search bar text contrast fix */
.s4-book-bar { color: rgba(255,255,255,0.72); }

/* Step 4 — country flag rows */
.s4-countries {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.s4-country-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.s4-country-row:last-child { border-bottom: none; }
.s4-country-flag { font-size: 17px; line-height: 1; flex: none; width: 24px; }
.s4-country-name { flex: 1; }
.s4-country-check {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(22,210,211,0.12);
  border: 1px solid rgba(22,210,211,0.28);
  display: grid;
  place-items: center;
  color: #16D2D3;
  flex: none;
}

/* Responsive card overrides — beat existing specificity */
@media (max-width: 1100px) {
  .step4                             { padding: 20px 18px 0 !important; }
  .step4:first-child,
  .step4:nth-child(3)                { padding-left: 18px !important; }
  .step4:nth-child(2),
  .step4:last-child                  { padding-right: 18px !important; }
  /* ill margins must match card padding (18px not 20px) */
  .step4 .ill                        { margin-left: -18px !important; margin-right: -18px !important; width: calc(100% + 36px) !important; }
  .hiw-section .steps4::before      { display: none; }
}
@media (max-width: 620px) {
  .step4,
  .step4:nth-child(n)                { padding: 18px 16px 0 !important; }
}

/* ============================================================
   CREDITS SECTION — DARK REDESIGN
   ============================================================ */
.credits-sec {
  background: var(--ink);
  padding-top: 72px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}
/* ambient glows */
.credits-sec::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: -300px; left: -150px;
  background: radial-gradient(circle, rgba(22,210,211,0.07), transparent 60%);
  pointer-events: none;
}
.credits-sec::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(18,168,169,0.06), transparent 60%);
  pointer-events: none;
}

/* Text on dark */
.credits-sec .eyebrow           { color: rgba(255,255,255,0.38); }
.credits-sec .eyebrow .dot      { background: var(--grad); }
.credits-sec h2                 { color: #fff; }
.credits-sec .credits-body-text { color: rgba(255,255,255,0.55); }

/* Cbullets — editorial separator-row style */
.credits-sec .cbullets {
  margin-top: 28px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0;
}
.credits-sec .cbullet {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
  align-items: flex-start;
}
.credits-sec .cb-ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(22,210,211,0.1);
  border: 1px solid rgba(22,210,211,0.22);
  box-shadow: none;
  margin-top: 1px;
}
.credits-sec .cb-ic svg  { stroke: #16D2D3; }
.credits-sec .cb-b       { color: #fff; font-size: 15.5px; }
.credits-sec .cb-s       { color: rgba(255,255,255,0.45); font-size: 13.5px; }

/* Pricing card — glass treatment on dark section */
.credits-sec .pricing-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  max-width: 420px;
}
.credits-sec .pricing-card::before {
  background: radial-gradient(circle, rgba(22,210,211,0.1), transparent 60%);
}
.credits-sec .pc-head                { border-bottom-color: rgba(255,255,255,0.07); }
.credits-sec .pc-head-label          { color: rgba(255,255,255,0.32); }
.credits-sec .pc-grid                { background: rgba(255,255,255,0.07); }
.credits-sec .pc-item                { background: rgba(0,0,0,0.3); }
.credits-sec .pc-item:hover          { background: rgba(255,255,255,0.04); }
.credits-sec .pc-foot                { color: rgba(255,255,255,0.2); border-top-color: rgba(255,255,255,0.07); }

/* Credits responsive */
@media (max-width: 980px) {
  .credits-sec .cbullets  { align-items: stretch; }
  .credits-sec .cbullet   { text-align: left; }
}

/* ============================================================
   APPLE × LINEAR REDESIGN
   How It Works + Credits — clean, precise, premium
   Inspired by apple.com + linear.app (2026)
   ============================================================ */

/* ── HOW IT WORKS — STEP CARDS ────────────────────────────── */

/* Hover: lift + teal edge light */
.step4 {
  transition:
    transform .5s cubic-bezier(0.22,1,0.36,1),
    box-shadow .5s cubic-bezier(0.22,1,0.36,1),
    border-color .5s cubic-bezier(0.22,1,0.36,1) !important;
}
.step4:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(22,210,211,0.24) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 6px rgba(24,24,24,0.05),
    0 14px 40px rgba(24,24,24,0.10),
    0 30px 72px rgba(24,24,24,0.07),
    0 0 0 1px rgba(22,210,211,0.07) !important;
}

/* Icon box: micro-animation on card hover */
.s4-icon-box {
  transition: transform .44s cubic-bezier(0.22,1,0.36,1), box-shadow .44s !important;
}
.step4:hover .s4-icon-box {
  transform: scale(1.08) rotate(-3deg) !important;
  box-shadow:
    0 12px 28px rgba(18,168,169,0.44),
    0 4px 8px rgba(18,168,169,0.22) !important;
}

/* ── ILLUSTRATION BOXES — taller, centered, with ambient glow ── */

.step4 .ill {
  flex: none !important;
  height: 174px !important;
  margin-top: auto !important;
  margin-left: -20px !important;
  margin-right: -20px !important;
  width: calc(100% + 40px) !important;
  border-radius: 0 0 20px 20px !important;
  padding: 16px 20px !important;
  gap: 7px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(158deg, #0a1010 0%, #181818 100%) !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 0 0 20px 20px !important;
}

/* Ambient teal glow — top-right corner of each ill */
.step4 .ill::before {
  content: "";
  position: absolute;
  top: -18px; right: -18px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(22,210,211,0.2), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above the glow */
.step4 .ill > * { position: relative; z-index: 1; }

/* ── STEP 1 — Download Badges ────────────────────────────── */

.ill-download {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
}
.dl-bdg {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 18px 8px 13px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  color: #fff !important;
  width: 166px !important;
  transition: background .2s, border-color .2s !important;
}
.dl-bdg:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(22,210,211,0.3) !important;
}
.dl-bdg svg { flex: none !important; }
.dl-bdg-lab {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}
.dl-bdg-lab small {
  font-size: 9px !important;
  opacity: 0.48 !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}
.dl-bdg-lab strong {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

/* ── STEP 2 — Credit Packs ───────────────────────────────── */

.s4-packs {
  padding: 0 4px !important;
  gap: 6px !important;
  width: 100% !important;
}
.s4-pack {
  border-radius: 11px !important;
  padding: 11px 8px !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  transition: background .2s, border-color .2s, box-shadow .2s !important;
}
.s4-pack:not(.active):hover {
  background: rgba(255,255,255,0.09) !important;
  border-color: rgba(255,255,255,0.18) !important;
}
.s4-pack.active {
  background: rgba(22,210,211,0.1) !important;
  border-color: rgba(22,210,211,0.36) !important;
  box-shadow:
    0 0 0 1px rgba(22,210,211,0.1) inset,
    0 0 18px rgba(22,210,211,0.08) !important;
}
.s4-pack.active .s4-pack-n { color: #16D2D3 !important; }
.s4-pack-n { font-size: 20px !important; }

/* ── STEP 3 — Booking Search ─────────────────────────────── */

.s4-book {
  padding: 0 4px !important;
  gap: 6px !important;
  width: 100% !important;
}
.s4-book-bar {
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 10px !important;
  padding: 8px 11px !important;
  font-size: 12px !important;
  gap: 7px !important;
}
.s4-book-result {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 11px !important;
  border-radius: 9px !important;
  background: rgba(255,255,255,0.042) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  transition: background .2s !important;
}
.s4-book-result:hover { background: rgba(255,255,255,0.08) !important; }

/* Fix booking text visibility + style */
.s4-book-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #16D2D3 !important;
  box-shadow: 0 0 8px rgba(22,210,211,0.55) !important;
  flex: none !important;
}
.s4-book-name {
  color: #fff !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  flex: 1 !important;
}
.s4-book-dist {
  color: rgba(255,255,255,0.37) !important;
  font-family: 'Geist Mono', monospace !important;
  font-size: 10.5px !important;
  flex: none !important;
  white-space: nowrap !important;
}

/* ── STEP 4 — Country List ───────────────────────────────── */

.s4-countries {
  padding: 0 4px !important;
  width: 100% !important;
}
.s4-country-row {
  padding: 7px 4px !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
}

/* ── CREDITS SECTION — Precision dark card ───────────────── */

/* Critical contrast fixes */
.credits-sec .pc-head-label {
  color: rgba(255,255,255,0.56) !important;
  letter-spacing: 0.12em !important;
}
.credits-sec .pc-foot {
  color: rgba(255,255,255,0.48) !important;
  border-top-color: rgba(255,255,255,0.08) !important;
  font-size: 12.5px !important;
  padding: 15px 24px 18px !important;
  line-height: 1.5 !important;
}

/* Premium card shell — Linear glass aesthetic */
.credits-sec .pricing-card {
  background: rgba(255,255,255,0.038) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 0 0 1px rgba(22,210,211,0.05),
    0 32px 80px rgba(0,0,0,0.44) !important;
}

/* Subtle teal wash at card header — Apple detail */
.credits-sec .pc-head {
  background: linear-gradient(180deg, rgba(22,210,211,0.065) 0%, transparent 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  padding: 20px 24px 18px !important;
}

/* 1-px gap grid lines as separators */
.credits-sec .pc-grid {
  background: rgba(255,255,255,0.07) !important;
  gap: 1px !important;
  padding: 0 !important;
}

/* Item: dark base, clean hover */
.credits-sec .pc-item {
  background: #0a1010 !important;
  padding: 22px 24px 20px !important;
  border-radius: 0 !important;
  border: none !important;
  transition: background .22s !important;
}
.credits-sec .pc-item:hover { background: rgba(255,255,255,0.04) !important; }

/* Price: tight tracking, teal */
.credits-sec .pc-price {
  font-size: 28px !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
  color: #16D2D3 !important;
}

/* Description: readable at 50% white */
.credits-sec .pc-desc {
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* Bullet hover: subtle slide-right — Linear micro-interaction */
.credits-sec .cbullet {
  cursor: default;
  transition: transform .32s cubic-bezier(0.22,1,0.36,1);
}
.credits-sec .cbullet:hover {
  transform: translateX(4px);
}
.credits-sec .cbullet:hover .cb-ic {
  background: rgba(22,210,211,0.16) !important;
  border-color: rgba(22,210,211,0.34) !important;
  transition: background .2s, border-color .2s;
}

/* ── pkg-list: right-side pricing list in credits section ── */
.pkg-list {
  display: flex;
  flex-direction: column;
}
.pkg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.18s;
  position: relative;
}
.pkg-row:hover { background: rgba(255,255,255,0.025); }
.pkg-row-best {
  background: rgba(22,210,211,0.06) !important;
  border-left: 3px solid #16D2D3;
  padding-left: 21px;
}
.pkg-row-best:hover { background: rgba(22,210,211,0.09) !important; }
.pkg-row-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  flex: 1 1 0;
  max-width: 55%;
  overflow: hidden;
}
.pkg-row-left .pkg-row-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pkg-row-cr {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.pkg-row-unit {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.pkg-row-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(108deg, #0D7E7F 0%, #16D2D3 100%);
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-left: 2px;
  white-space: nowrap;
}
.pkg-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.pkg-row-price {
  font-size: 22px;
  font-weight: 800;
  color: #16D2D3;
  letter-spacing: -0.03em;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.pkg-row-best .pkg-row-price { color: #20e5e6; }
.pkg-row-tag {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  margin-top: 0;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile adjustments for pkg-list */
@media (max-width: 540px) {
  .pkg-row { padding: 14px 18px; }
  .pkg-row-best { padding-left: 15px; }
  .pkg-row-cr { font-size: 22px; }
  .pkg-row-price { font-size: 18px; }
  .pkg-row-tag { font-size: 11.5px; }
}


/* ============================================================
   RESPONSIVE OVERRIDES — appended last to win the cascade
   ============================================================ */

/* ── Touch: disable hover lifts ──────────────────────────── */
@media (hover: none) {
  .step4:hover {
    transform: none !important;
    box-shadow: var(--sh-xs) !important;
    border-color: var(--line) !important;
  }
  .step4:hover .s4-icon-box {
    transform: none !important;
    box-shadow: var(--sh-brand) !important;
  }
  .feat:hover  { transform: none !important; box-shadow: var(--sh-xs) !important; }
  .act:hover   { transform: none !important; box-shadow: var(--sh-xs) !important; }
  .tcard:hover { transform: none !important; }
}

/* ── HIW — Tablet: 2×2 grid ──────────────────────────────── */
@media (max-width: 1100px) {
  .hiw-section .steps4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .step4 {
    padding: 20px 20px 0 !important;
  }
  .step4:first-child,
  .step4:nth-child(3) { padding-left: 20px !important; }
  .step4:nth-child(2),
  .step4:last-child   { padding-right: 20px !important; }
  .step4:not(:last-child)::after { display: none !important; }
  .hiw-section .steps4::before  { display: none !important; }
}

/* ── HIW — Mobile: single column ────────────────────────── */
@media (max-width: 640px) {
  .hiw-section .steps4 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    /* rows are independent — no cross-card stretching needed */
    align-items: start !important;
  }
  .step4 {
    padding: 18px 18px 0 !important;
  }
  .step4:first-child,
  .step4:nth-child(3),
  .step4:nth-child(2),
  .step4:last-child {
    padding: 18px 18px 0 !important;
  }
  /* on single-col: contained rounded panel, no bleed */
  .step4 .ill {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    border-radius: 14px !important;
    margin-top: 14px !important;
    height: 186px !important;
  }
  /* Credit packs: slightly smaller text so 3 fit comfortably */
  .s4-pack-n  { font-size: 18px !important; }
  .s4-pack-u  { font-size: 8px !important; letter-spacing: 0.04em !important; }
  .s4-pack-tag { font-size: 9.5px !important; }
}

/* ── HIW — Small phone ───────────────────────────────────── */
@media (max-width: 390px) {
  .step4 h3   { font-size: 16px !important; }
  .step4 > p  { font-size: 13.5px !important; }
  .step4 .ill { height: 170px !important; }
  .s4-icon-box { width: 50px !important; height: 50px !important; border-radius: 15px !important; }
}

/* ── Credits section — mobile ───────────────────────────── */
@media (max-width: 640px) {
  .credits-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .credits-sec h2        { font-size: clamp(28px, 8vw, 40px) !important; }
  .credits-sec .pricing-card { max-width: 100% !important; }
  .credits-sec .pc-item  { padding: 16px 18px !important; }
  .credits-sec .pc-price { font-size: 22px !important; }
}

/* ── General section spacing on mobile ──────────────────── */
@media (max-width: 640px) {
  .section { padding: 44px 0 !important; }
  .hiw-section { padding: 44px 0 !important; }
  #download.section { padding-bottom: 0 !important; }
  .wrap { padding: 0 18px !important; }
  .sec-head h2 { font-size: clamp(28px, 8vw, 44px) !important; }
  .sec-head p  { font-size: 15px !important; }
}

/* ============================================================
   MOBILE IMPROVEMENTS — 12-point audit
   ============================================================ */

/* ── #1  HIW SNAP CAROUSEL ────────────────────────────────── */
.hiw-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
}
.hiw-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background 0.25s, width 0.3s, border-radius 0.3s;
  cursor: pointer;
  flex: none;
  border: none;
  padding: 0;
  outline: none;
}
.hiw-dot.active {
  background: var(--teal);
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .hiw-dots { display: flex; }
  /* Reveal all HIW cards immediately — they live in a carousel off-screen */
  .hiw-section .step4.reveal,
  .hiw-section .step4.reveal.in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Carousel container */
  .hiw-section .steps4 {
    display: flex !important;
    overflow-x: scroll !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-bottom: 6px !important;
    padding-top: 2px !important;
    scrollbar-width: none !important;
    align-items: stretch !important;
    grid-template-columns: unset !important;
    scroll-padding-left: 18px !important;
  }
  .hiw-section .steps4::-webkit-scrollbar { display: none; }
  .hiw-section .step4 {
    min-width: 84vw !important;
    max-width: 84vw !important;
    flex: 0 0 auto !important;
    scroll-snap-align: start !important;
  }
  .hiw-section .step4:last-child { margin-right: 18px !important; }
  /* Fix ill bleed to match 18px card padding on mobile */
  .hiw-section .step4 {
    padding-bottom: 0 !important;
    height: 400px !important;
    border-color: rgba(22,210,211,0.18) !important;
    box-shadow: 0 2px 16px rgba(22,210,211,0.07), 0 1px 4px rgba(24,24,24,0.06) !important;
  }
  .hiw-section .step4 .ill {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    margin: 0 !important;
    height: 190px !important;
    border-radius: 0 !important;
    background: linear-gradient(145deg, #081414 0%, #0d2020 45%, #141414 100%) !important;
  }
  .hiw-section .step4 .ill::before {
    width: 160px !important;
    height: 160px !important;
    top: -24px !important;
    right: -16px !important;
    background: radial-gradient(circle, rgba(22,210,211,0.28), transparent 62%) !important;
  }
}

/* ── #2  STAT BAND 2×2 GRID ─────────────────────────────── */
@media (max-width: 560px) {
  .statband {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-direction: unset !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 4px 0 !important;
  }
  .statband .si {
    padding: 20px 14px !important;
    text-align: center !important;
    border: none !important;
  }
  .statband .si + .si { border-left: none !important; border-top: none !important; }
  .statband .si:first-child {
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .statband .si:nth-child(2) { border-bottom: 1px solid var(--line) !important; }
  .statband .si:last-child { grid-column: 1 / -1 !important; }
}

/* ── #3  HIDE 2ND TESTIMONIAL ROW MOBILE ─────────────────── */
@media (max-width: 640px) {
  .marquee-row.right { display: none !important; }
}

/* ── #5  MOBAR STORE BADGES ──────────────────────────────── */
.mobar .mb-badges {
  display: flex;
  gap: 8px;
  flex: none;
}
.mb-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.18s;
  line-height: 1.3;
}
.mb-badge:active { opacity: 0.7; }
.mb-badge-lab { display: flex; flex-direction: column; }
.mb-badge-lab small {
  font-size: 10px;
  display: block;
  opacity: 0.5;
  white-space: nowrap;
}
.mb-badge-lab strong {
  font-size: 12px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
}

/* ── #6  HERO SHOWCASE MIN-HEIGHT ────────────────────────── */
@media (max-width: 560px) {
  .showcase { min-height: 0 !important; }
  .phone-duo { max-width: 420px; }
}
@media (max-width: 400px) {
  .showcase { min-height: 0 !important; }
}

/* ── #7  (removed — mobar is fixed overlay, no body clearance needed) */

/* ── #8  FOOTER LINKS HIDDEN MOBILE ─────────────────────── */
@media (max-width: 860px) {
  .footer-links { display: none !important; }
}

/* ── #10 HERO STORE BUTTONS GAP ──────────────────────────── */
@media (max-width: 560px) {
  .hero-cta { gap: 12px !important; }
}

/* ── #11 TRAVEL H2 TEXT-WRAP ─────────────────────────────── */
.travel-h2 { text-wrap: balance; }

/* ── #12 MARQUEE EDGE FADE WIDER MOBILE ──────────────────── */
@media (max-width: 640px) {
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent) !important;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent) !important;
  }
}