/* =============================================
   Variables
   ============================================= */
:root {
  /* Backgrounds */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #121212;
  --bg-elevated:   #1A1A1A;
  --border-subtle: #222222;

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-tertiary:  #6E6E6E;

  /* Accent — gold only */
  --accent-gold:      #D4AF37;
  --accent-gold-soft: #E8C97A;
  --accent-cream:     #F5F0E1;

  /* Aliases kept for minimal refactor */
  --white:    #FFFFFF;
  --gray-100: #F0F0F5;
  --gray-400: #B8B8B8;
  --border:   rgba(255, 255, 255, 0.06);
  --gold:     #D4AF37;

  /* Layout */
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1100px;
  --pad-section: 112px;
  --radius:      8px;
  --radius-sm:   8px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --t:           0.25s ease;
}

/* =============================================
   Reset
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: linear-gradient(to bottom, #0A0A0A 0%, #0E0E0E 100%);
  min-height: 100vh;
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }

/* =============================================
   Utilities
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.text-accent { color: var(--accent-gold); }
.text-gold   { color: var(--gold); }

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #0A0A0A;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-gold-soft);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.btn:active { transform: translateY(0) scale(1); }

.btn--large { padding: 15px 36px; font-size: 1rem; }
.btn--small { padding: 10px 22px; font-size: 0.875rem; }
.btn--full  { width: 100%; }

/* =============================================
   Sections
   ============================================= */
.section { padding: var(--pad-section) 0; }

.section__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.section__headline {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  color: var(--text-primary);
}

/* =============================================
   Scroll fade-in
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   Nav
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}
.nav.nav--solid { background: rgba(10, 10, 10, 0.96); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo     { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 28px; width: auto; }
.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t);
}
.nav__link:hover { color: var(--accent-gold); }

/* =============================================
   Hero
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 96px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  animation: fadeUp 0.75s var(--ease) both;
}

.hero__headline {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-primary);
  animation: fadeUp 0.75s 0.08s var(--ease) both;
}

.hero__sub {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  animation: fadeUp 0.75s 0.12s var(--ease) both;
}

.hero .btn {
  animation: fadeUp 0.75s 0.22s var(--ease) both;
}

/* =============================================
   iPhone mockup
   ============================================= */
.iphone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  animation: fadeUp 0.75s 0.45s var(--ease) both;
}

.iphone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1c1c1e;
  border-radius: 44px;
  padding: 9px;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.13),
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 48px 110px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(212, 175, 55, 0.06),
    0 0 0px rgba(212, 175, 55, 0);
  animation: iphoneGlow 12s infinite;
}

.iphone-btn { position: absolute; background: #38383a; }
.iphone-btn--vol-up,
.iphone-btn--vol-dn {
  left: -4px;
  width: 4px;
  height: 36px;
  border-radius: 2px 0 0 2px;
}
.iphone-btn--vol-up { top: 115px; }
.iphone-btn--vol-dn { top: 152px; }
.iphone-btn--power  {
  right: -4px;
  top: 143px;
  width: 4px;
  height: 54px;
  border-radius: 0 2px 2px 0;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.iphone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 89px;
  height: 22px;
  background: #000;
  border-radius: 9999px;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.08);
  z-index: 20;
}

/* ── Scenes ───────────────────────────────── */
.scene {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
}

.scene-night {
  background: linear-gradient(160deg, #0e0b1c 0%, #080e1e 55%, #050810 100%);
  animation: scene-night 12s infinite;
}

.scene-morning {
  background: linear-gradient(160deg, #1a1410 0%, #13100a 55%, #0c0a05 100%);
  animation: scene-morning 12s infinite;
  opacity: 0;
}

/* ── Lockscreen ───────────────────────────── */
.iphone-lockscreen {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.iphone-time {
  font-size: 60px;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.iphone-date {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
}

/* ── Notifications ────────────────────────── */
.iphone-notif {
  position: absolute;
  top: 157px;
  left: 8px;
  right: 8px;
  background: rgba(38, 38, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  z-index: 10;
  transform: translateY(-310px);
  opacity: 0;
}

.iphone-notif--night   { animation: notifSlide-night   12s infinite; }
.iphone-notif--morning { animation: notifSlide-morning 12s infinite; }

.iphone-notif__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #000;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.iphone-notif__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.iphone-notif__content { flex: 1; min-width: 0; text-align: left; }

.iphone-notif__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.iphone-notif__app  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.iphone-notif__time { font-size: 12px; color: rgba(255,255,255,0.42); }

.iphone-notif__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}
.iphone-notif__sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.3;
}

/* ── Captions ─────────────────────────────── */
.iphone-captions {
  display: grid;
  grid-template-areas: "cap";
  width: 400px;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.iphone-caption--night,
.iphone-caption--morning {
  grid-area: cap;
  font-size: 15px;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  word-break: normal;
}
.iphone-caption--night   { animation: caption-night   12s infinite; }
.iphone-caption--morning { animation: caption-morning 12s infinite; opacity: 0; }

/* ── Scene keyframes ──────────────────────── */
/* 12s loop: 0-5s night visible, 5-6s crossfade, 6-11s morning visible, 11-12s crossfade back */
@keyframes scene-night {
  0%      { opacity: 1; }
  41.67%  { opacity: 1; } /* 5s  — start fade */
  50%     { opacity: 0; } /* 6s  — morning fully in */
  91.67%  { opacity: 0; } /* 11s — start fade back */
  100%    { opacity: 1; } /* 12s — night restored */
}

@keyframes scene-morning {
  0%      { opacity: 0; }
  41.67%  { opacity: 0; } /* 5s  — start fade in */
  50%     { opacity: 1; } /* 6s  — fully visible */
  91.67%  { opacity: 1; } /* 11s — start fade out */
  100%    { opacity: 0; } /* 12s — night restored */
}

/* ── Notification keyframes ───────────────── */
/* Night: slides in at 1.5s (12.5%), fades out with scene at 5-6s (41.67-50%) */
@keyframes notifSlide-night {
  0%      { transform: translateY(-310px); opacity: 0; }
  12.5%   { transform: translateY(-310px); opacity: 0;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
  16.67%  { transform: translateY(0);     opacity: 1; }
  41.67%  { transform: translateY(0);     opacity: 1; } /* 5s — hold, then fade with scene */
  50%     { transform: translateY(0);     opacity: 0; } /* 6s — fully gone */
  100%    { transform: translateY(0);     opacity: 0; }
}

/* Morning: slides in at 6.5s (54.17%), fades out with scene at 11-12s (91.67-100%) */
@keyframes notifSlide-morning {
  0%      { transform: translateY(-310px); opacity: 0; }
  54.17%  { transform: translateY(-310px); opacity: 0;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
  58.33%  { transform: translateY(0);     opacity: 1; }
  91.67%  { transform: translateY(0);     opacity: 1; } /* 11s — hold, then fade with scene */
  100%    { transform: translateY(0);     opacity: 0; } /* 12s — fully gone */
}

/* ── Caption keyframes ────────────────────── */
@keyframes caption-night {
  0%      { opacity: 1; }
  41.67%  { opacity: 1; }
  50%     { opacity: 0; }
  91.67%  { opacity: 0; }
  100%    { opacity: 1; }
}

@keyframes caption-morning {
  0%      { opacity: 0; }
  41.67%  { opacity: 0; }
  50%     { opacity: 1; }
  91.67%  { opacity: 1; }
  100%    { opacity: 0; }
}

/* ── Gold glow — two pulses per 12s loop ──── */
/* Pulse 1: night notification at ~1.5-2s (12.5-16.67%) */
/* Pulse 2: morning notification at ~6.5-7s (54.17-58.33%) */
@keyframes iphoneGlow {
  0%      { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
  12%     { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
  16.67%  { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 80px rgba(212,175,55,0.35), 0 0 40px rgba(212,175,55,0.2); }
  28%     { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
  52%     { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
  58.33%  { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 80px rgba(212,175,55,0.35), 0 0 40px rgba(212,175,55,0.2); }
  70%     { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
  100%    { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 1px rgba(0,0,0,0.8), 0 48px 110px rgba(0,0,0,0.65), 0 0 60px rgba(212,175,55,0.06), 0 0 0px rgba(212,175,55,0); }
}

@media (prefers-reduced-motion: reduce) {
  .scene-night             { animation: none; opacity: 0; }
  .scene-morning           { animation: none; opacity: 1; }
  .iphone-notif--night     { display: none; }
  .iphone-notif--morning   { animation: none; transform: translateY(0); opacity: 1; }
  .iphone-caption--night   { animation: none; opacity: 0; }
  .iphone-caption--morning { animation: none; opacity: 1; }
  .iphone                  { animation: none; }
  .iphone-wrap             { animation: none; opacity: 1; transform: none; }
}

/* =============================================
   How it works
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.step__icon {
  color: var(--accent-gold);
  margin-bottom: 20px;
  line-height: 1;
}
.step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   Capabilities
   ============================================= */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
}

.cap-item__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.cap-item__icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.cap__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.cap__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 28px;
}

/* =============================================
   Capabilities — alternating row layout
   ============================================= */
.cap-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cap-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Even rows: reverse so visual goes left, text goes right */
.cap-row:nth-child(even) {
  flex-direction: row-reverse;
}

.cap-text,
.cap-visual {
  flex: 1 1 0;
  min-width: 0;
}

.cap-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.cap-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.cap-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* Card base */
.cap-card {
  background: #131313;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

/* --- Vehicle card --- */
.cap-veh-regrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.cap-veh-reg {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.42);
}

.cap-veh-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.cap-veh-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.cap-veh-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-gold);
}

/* --- Lead card --- */
.cap-lead-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cap-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-lead-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cap-lead-name {
  font-weight: 500;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1;
}

.cap-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 9px;
  border-radius: 100px;
  width: fit-content;
}

.cap-lead-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cap-field {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
}

.cap-label {
  color: rgba(255, 255, 255, 0.42);
  min-width: 54px;
  flex-shrink: 0;
}

.cap-field span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Calendar card --- */
.cap-cal-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.cap-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cap-slot {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  font-family: var(--font);
  user-select: none;
}

.cap-slot--selected {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.cap-cal-confirm {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
}

/* --- Hot lead card --- */
.cap-card--hotlead {
  border-color: rgba(212, 175, 55, 0.3);
}

.cap-hot-alertrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.cap-hot-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.cap-hot-name {
  font-weight: 500;
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.cap-hot-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
  margin-bottom: 10px;
}

.cap-hot-sent {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.58);
}

/* --- Chat cards --- */
.cap-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-bubble {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.cap-bubble--customer {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 14px 14px 14px 4px;
}

.cap-bubble--bot {
  align-self: flex-end;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold-soft);
  border-radius: 14px 14px 4px 14px;
}

/* --- Mobile: always visual-top, text-below, no alternation --- */
@media (max-width: 767px) {
  .cap-rows {
    gap: 2rem;
  }

  .cap-row,
  .cap-row:nth-child(even) {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cap-visual {
    order: -1;
    width: 100%;
  }

  .cap-text {
    order: 1;
    width: 100%;
  }
}

/* =============================================
   Pricing
   ============================================= */
.pricing__card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
}

.pricing .section__label { color: var(--accent-gold); }

.pricing .section__headline {
  color: var(--text-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.pricing__badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  line-height: 1;
}
.price-from {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-tertiary);
}
.price-amount {
  font-size: 7.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  line-height: 1;
}
.price-period {
  font-size: 1.75rem;
  color: var(--text-tertiary);
  font-weight: 300;
}

.pricing__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  margin-bottom: 44px;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.pricing__features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L4 7.5L10 1' stroke='%230A0A0A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pricing__microtext {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 16px;
}

.pricing__card .btn {
  padding: 18px 36px;
  min-width: 320px;
}

/* =============================================
   Pricing v2 — billing toggle + card
   ============================================= */

/* --- Billing toggle --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 2rem;
  gap: 2px;
}

.pricing-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.pricing-toggle-btn.active {
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-gold-soft);
}

.pricing-toggle-save {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.25);
  color: var(--accent-gold-soft);
  padding: 2px 8px;
  border-radius: 6px;
  line-height: 1.5;
}

/* --- Pricing card v2 --- */
.pricing-card-v2 {
  background: #131313;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.pricing-trial-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold-soft);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* Show/hide price blocks via data-billing attribute */
.pricing-card-v2[data-billing="yearly"]  .pricing-price--monthly { display: none; }
.pricing-card-v2[data-billing="monthly"] .pricing-price--yearly  { display: none; }

.pricing-price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price__figure {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price__period {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.pricing-price__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.pricing-divider {
  border: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.pricing-features-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.75rem;
  text-align: left;
}

.pricing-features-v2 li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.pricing-features-v2 li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23D4AF37' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pricing-card-v2 .btn {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 14px;
}

.pricing-microtext-v2 {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 14px;
}

.pricing-bottom-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .pricing-card-v2 {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .pricing-price__figure {
    font-size: 3rem;
  }
}

/* =============================================
   FAQ
   ============================================= */
.faq__list {
  max-width: 680px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item { border-bottom: 1px solid var(--border-subtle); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  text-align: left;
  background: var(--bg-elevated);
  border: none;
  padding: 24px 30px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background var(--t);
  line-height: 1.4;
}
.faq__question:hover { background: #222222; }

.faq__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.faq__icon::before { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq__icon::after  { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }

.faq__item.is-open .faq__icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: var(--bg-secondary);
}
.faq__item.is-open .faq__answer { max-height: 240px; }
.faq__answer p {
  padding: 22px 30px 30px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* =============================================
   Contact
   ============================================= */
.contact {
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.contact__inner { max-width: 560px; margin: 0 auto; }
.contact .section__headline { margin-bottom: 18px; }
.contact__sub {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 44px;
  line-height: 1.55;
}
.contact__note {
  margin-top: 22px;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}
.contact__note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
  color: var(--accent-gold);
}
.contact__note a:hover { color: var(--accent-gold-soft); }

/* =============================================
   Footer
   ============================================= */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--accent-gold);
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--text-tertiary);
  transition: color var(--t);
}
.footer__link:hover { color: var(--accent-gold); }
.footer__sep { color: var(--border-subtle); }

/* =============================================
   Animations
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================
   Responsive — tablet
   ============================================= */
@media (max-width: 860px) {
  :root { --pad-section: 80px; }

  .steps   { grid-template-columns: 1fr; gap: 32px; }
  .cap-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================
   Responsive — nav links hide
   ============================================= */
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* =============================================
   Responsive — mobile
   ============================================= */
@media (max-width: 560px) {
  :root { --pad-section: 64px; }

  .container { padding: 0 20px; }

  .hero__headline { font-size: 2.125rem; }

  .iphone            { width: 260px; height: 520px; border-radius: 42px; padding: 9px; }
  .iphone-screen     { border-radius: 34px; }
  .scene             { border-radius: 34px; }
  .iphone-island     { width: 84px; height: 21px; border-radius: 9999px; top: 10px; }
  .iphone-lockscreen { top: 50px; }
  .iphone-time       { font-size: 52px; letter-spacing: -2px; }
  .iphone-date       { font-size: 14px; }
  .iphone-notif      { top: 138px; left: 7px; right: 7px; }
  .iphone-btn--vol-up { top: 107px; height: 28px; }
  .iphone-btn--vol-dn { top: 143px; height: 28px; }
  .iphone-btn--power  { top: 133px; height: 50px; }

  .pricing__card { padding: 40px 16px; }
  .price-amount  { font-size: 5rem; }
  .price-from    { font-size: 1.75rem; }
  .pricing__card .btn { min-width: 0; width: 100%; }

  .cap__desc { padding-left: 0; }

  .footer__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
