*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── TOKENS ──
   Same terracotta/forest the in-app product actually uses (see
   shared/css/theme.css) — one brand, expressed here as clean flat surfaces
   instead of the app's warm paper cards. */
:root {
  --paper:      #FFFFFF;
  --sand:       #F6F3EC;
  --sand-2:     #EFEADD;
  --ink:        #17130D;
  --ink-soft:   #5C5646;
  --ink-faint:  #948C78;
  --mist:       #E6E1D3;
  --mist-2:     #D8D0B9;

  --clay:       #C85A1E;
  --clay-dark:  #A6470F;
  --clay-tint:  #FBEDE3;
  --moss:       #23470E;
  --moss-tint:  #E9F0E1;
  --green:      #1A7A4A;
  --red:        #B23A2E;

  --card:       #FFFFFF;
  --on-accent:  #FFFFFF;

  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sans:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
  --t: 0.18s ease;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ── LANG ── */
body.lang-en .t-es { display: none; }
body.lang-es .t-en { display: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mist);
}
.nav-brand {
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-pill {
  display: flex;
  background: var(--sand);
  border-radius: 99px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 5px 12px; border: none; border-radius: 99px;
  background: transparent;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  font-family: var(--sans);
  color: var(--ink-soft); cursor: pointer; transition: all 0.2s;
}
.lang-btn.active { background: var(--ink); color: var(--paper); }
.nav-cta {
  padding: 10px 20px;
  background: var(--clay);
  color: var(--on-accent); border-radius: 99px;
  font-size: 13.5px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--clay-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 7.5rem 3rem 4rem;
  position: relative; overflow: hidden;
  background: var(--paper);
}
.hero-inner {
  width: 100%; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; text-align: left; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clay-tint);
  color: var(--clay-dark);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  padding: 7px 14px; border-radius: 99px;
  margin-bottom: 1.75rem;
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.2vw, 3.9rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.35em;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--clay);
}
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 0 2.25rem;
  animation: fadeUp 0.7s 0.08s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-btns {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 14px;
  animation: fadeUp 0.7s 0.14s cubic-bezier(0.16,1,0.3,1) both;
}
.btn-main {
  padding: 15px 28px;
  background: var(--clay);
  color: var(--on-accent);
  border-radius: 99px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(23,19,13,0.06);
}
.btn-main:hover { background: var(--clay-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(200,90,30,0.25); }
.btn-main:active { transform: translateY(0); }
.btn-ghost {
  padding: 14px 6px; color: var(--ink);
  border-radius: 99px;
  font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover { color: var(--clay); }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-fine {
  margin-top: 1.75rem; font-size: 13px; color: var(--ink-faint);
  letter-spacing: 0.005em;
}
.hero-fine strong { color: var(--ink-soft); font-weight: 600; }

/* ── HERO VISUAL (signature: real product window) ── */
.hero-visual-wrap { position: relative; display: flex; justify-content: center; z-index: 1; }
.mock-window {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -20px rgba(23,19,13,0.22), 0 8px 24px -8px rgba(23,19,13,0.10);
  overflow: hidden;
  width: 100%; max-width: 400px;
}
.hero-mock {
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both, float 7s 1s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.mock-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; background: var(--sand);
  border-bottom: 1px solid var(--mist);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist-2); }
.mock-url {
  margin-left: 6px; flex: 1;
  background: var(--paper); border: 1px solid var(--mist);
  border-radius: 99px; padding: 4px 12px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-faint);
}
.mock-body { padding: 18px 18px 20px; }

/* Calendar mockup (used in hero + feature strip) */
.mock-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-cal-title { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--ink); }
.mock-cal-nav { display: flex; gap: 6px; color: var(--ink-faint); }
.mock-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 14px; }
.mock-day { text-align: center; font-size: 9.5px; padding: 5px 0; border-radius: 6px; color: var(--ink-soft); }
.mock-day.head { color: var(--ink-faint); font-weight: 600; font-size: 8.5px; }
.mock-day.sel { background: var(--clay); color: #fff; font-weight: 600; }
.mock-day.dot { position: relative; }
.mock-day.dot::after { content:''; position:absolute; bottom:1px; left:50%; transform:translateX(-50%); width:3px; height:3px; background:var(--clay); border-radius:50%; }
.mock-appt {
  display: flex; gap: 10px; align-items: center;
  padding: 9px 10px; border-radius: var(--r-sm);
  background: var(--sand); margin-bottom: 6px;
}
.mock-appt-time { font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: var(--clay); min-width: 40px; }
.mock-appt-name { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.mock-appt-svc { font-size: 10px; color: var(--ink-faint); margin-top: 1px; }
.mock-appt.done { background: var(--moss-tint); }
.mock-appt.done .mock-appt-time { color: var(--moss); }

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
  background: var(--sand);
}
.trust-track { display: inline-flex; gap: 2.75rem; animation: tick 26s linear infinite; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.trust-sep { width: 3px; height: 3px; background: var(--mist-2); border-radius: 50%; }

/* ── SECTIONS ── */
section { position: relative; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.pad { padding: 6.5rem 0; }
.section-soft { background: var(--sand); }

/* ── EYEBROW / HEADLINES ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--clay);
  margin-bottom: 1rem;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600; line-height: 1.16;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.h2 em, .h3 em { font-style: normal; font-weight: 600; color: var(--clay); }
.h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 600; line-height: 1.25;
  color: var(--ink); letter-spacing: -0.01em;
}
.body-text { font-size: 15.5px; font-weight: 400; color: var(--ink-soft); line-height: 1.75; }
.section-head { max-width: 620px; }
.section-head.center { max-width: 560px; margin: 0 auto; text-align: center; }

/* ── FEATURE TOUR (signature: one row per tool) ── */
.feature-tour { display: flex; flex-direction: column; gap: 5.5rem; margin-top: 4rem; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.feature-row.rev .feature-copy { order: 2; }
.feature-row.rev .feature-visual { order: 1; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--clay-tint); color: var(--clay-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-title { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; max-width: 400px; }
.feature-points { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: 7px; }
.feature-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.feature-points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); margin-top: 7px; flex-shrink: 0; }
.feature-visual { display: flex; justify-content: center; }
.feature-visual .mock-window { max-width: 340px; }
.feature-visual .mock-window:hover { transform: none; }

/* Client card mockup */
.mock-client-card { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--r-sm); background: var(--sand); margin-bottom: 8px; }
.mock-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--moss-tint); color: var(--moss); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.mock-client-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.mock-client-meta { font-size: 10px; color: var(--ink-faint); margin-top: 1px; }

/* Booking link mockup */
.mock-svc-btn { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: var(--r-sm); border: 1px solid var(--mist); margin-bottom: 8px; font-size: 11.5px; color: var(--ink); }
.mock-svc-btn.on { border-color: var(--clay); background: var(--clay-tint); font-weight: 600; }
.mock-svc-btn b { color: var(--clay-dark); font-family: var(--mono); font-size: 11px; }
.mock-cta-btn { text-align: center; padding: 10px; border-radius: var(--r-sm); background: var(--clay); color: #fff; font-size: 12px; font-weight: 600; margin-top: 4px; }

/* WhatsApp reminder mockup */
.mock-chat-bubble { max-width: 84%; background: #DCF8C6; border-radius: 12px 12px 12px 3px; padding: 10px 12px; font-size: 11.5px; color: #1C1E1B; line-height: 1.5; box-shadow: 0 1px 1px rgba(0,0,0,0.06); }
.mock-chat-time { font-size: 9px; color: #6B8A6B; text-align: right; margin-top: 4px; }
.mock-chat-bg { background: #E9EBE3; border-radius: var(--r-sm); padding: 16px 14px; }

/* Reports mockup */
.mock-stat-big { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--ink); }
.mock-stat-label { font-size: 10.5px; color: var(--ink-faint); margin-bottom: 14px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.mock-bar { flex: 1; background: var(--sand-2); border-radius: 4px 4px 0 0; position: relative; }
.mock-bar.hi { background: var(--clay); }

/* Receipt + gallery mockup */
.mock-receipt-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); padding: 6px 0; border-bottom: 1px solid var(--mist); }
.mock-receipt-row.total { color: var(--ink); font-weight: 700; border-bottom: none; padding-top: 8px; }
.mock-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.mock-gallery div { aspect-ratio: 1; border-radius: 6px; background: var(--sand-2); display: flex; align-items: center; justify-content: center; font-size: 8.5px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── POCKET (cross-device) ── */
.pocket {
  display: flex; align-items: center; gap: 4.5rem; flex-wrap: wrap;
}
.pocket-t { flex: 1; min-width: 280px; }
.pocket-v { flex: 1; min-width: 280px; display: flex; justify-content: center; }

.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-soft);
  padding: 10px 0; border-bottom: 1px solid var(--mist);
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-ico {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--moss);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-ico svg { width: 10px; height: 10px; }

/* Phone (flattened, no rotation) */
.phone {
  width: 232px;
  background: var(--ink);
  border-radius: 32px; padding: 9px;
  box-shadow: 0 24px 60px -12px rgba(23,19,13,0.30);
  animation: float 7s ease-in-out infinite;
}
.phone-screen { background: #FAF8F3; border-radius: 24px; overflow: hidden; }
.ph-hdr { background: var(--clay); padding: 18px 14px 13px; text-align: center; }
.ph-brand { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #fff; }
.ph-sub { font-size: 6px; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.ph-nav { display: flex; background: #fff; border-bottom: 1px solid var(--mist); padding: 4px 3px; gap: 1px; }
.ph-tab { flex: 1; font-size: 5px; text-align: center; padding: 3px 1px; border-radius: 5px; color: var(--ink-faint); line-height: 1.3; }
.ph-tab.on { background: var(--clay); color: #fff; }
.ph-body { padding: 9px; }
.ph-cal { background: #fff; border: 1px solid var(--mist); border-radius: 8px; padding: 6px; margin-bottom: 6px; }
.ph-cal-lbl { font-size: 6px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.03em; }
.ph-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; }
.ph-d { text-align: center; font-size: 5px; padding: 2.5px 0; border-radius: 4px; color: var(--ink-soft); line-height: 1.2; }
.ph-dh { color: var(--ink-faint) !important; font-weight: 600; font-size: 4.5px !important; }
.ph-empty { visibility: hidden; }
.ph-d.sel { background: var(--clay); color: #fff; font-weight: 600; }
.ph-d.dot::after { content:''; display:block; width:2.5px;height:2.5px;background:var(--clay);border-radius:50%;margin:0.5px auto 0; }
.ph-appt { display:flex; gap:5px; align-items:flex-start; background:#fff; border-radius:6px; padding:5px 6px; margin-bottom:4px; border-left:2px solid var(--clay); }
.ph-t { font-size:5.5px; font-weight:700; color:var(--clay); min-width:20px; }
.ph-dog { font-size:5.5px; font-weight:600; color:var(--ink); }
.ph-svc { font-size:5px; color:var(--ink-faint); margin-top:1px; }

/* ── PRICING ── */
.pricing-card {
  max-width: 460px; margin: 3.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -24px rgba(23,19,13,0.18);
  text-align: left;
  overflow: hidden;
}
.pricing-head { padding: 2.25rem 2.25rem 1.5rem; text-align: center; border-bottom: 1px solid var(--mist); }
.pricing-badge {
  display: inline-block; background: var(--moss-tint); color: var(--moss);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: 99px; margin-bottom: 1rem;
}
.pricing-amount { font-family: var(--display); font-size: 48px; font-weight: 700; color: var(--ink); line-height: 1; }
.pricing-amount .curr { font-size: 18px; vertical-align: top; margin-right: 2px; color: var(--clay); font-weight: 600; }
.pricing-period { font-size: 12.5px; color: var(--ink-faint); margin-top: 8px; }
.pricing-later { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.pricing-later strong { color: var(--clay-dark); }
.price-tier-list { list-style: none; padding: 1.75rem 2.25rem; column-count: 2; column-gap: 1.5rem; }
.price-tier-list li { break-inside: avoid; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); padding: 6px 0; }
.p-check { width: 15px; height: 15px; flex-shrink: 0; background: var(--moss); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.p-check svg { width: 9px; height: 9px; }
.btn-buy {
  display: block; margin: 0 2.25rem 2.25rem;
  padding: 13px; text-align: center;
  background: var(--clay); color: #fff;
  border-radius: 99px;
  font-size: 14.5px; font-weight: 600; font-family: var(--sans);
  transition: all 0.2s;
}
.btn-buy:hover { background: var(--clay-dark); transform: translateY(-1px); }
.pricing-note { margin-top: 2rem; font-size: 12.5px; color: var(--ink-soft); text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.savings-row { display: flex; justify-content: center; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.savings-stat { text-align: center; }
.savings-num { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); }
.savings-num.accent { color: var(--clay); }
.savings-label { font-size: 11.5px; color: var(--ink-faint); margin-top: 4px; max-width: 140px; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%; border-collapse: collapse;
  margin-top: 3rem; font-size: 14px;
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  overflow: hidden;
}
.compare-table th {
  padding: 1rem 1.25rem; text-align: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  border-bottom: 1px solid var(--mist);
  color: var(--ink-soft);
  background: var(--sand);
}
.compare-table th.col-us { background: var(--ink); color: var(--paper); }
.compare-table td {
  padding: 0.9rem 1.25rem; text-align: center;
  border-bottom: 1px solid var(--mist);
  color: var(--ink-soft);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-us {
  background: var(--clay-tint);
  color: var(--ink);
  font-weight: 600;
}
.compare-table td:first-child { text-align: left; color: var(--ink); font-size: 13px; font-weight: 600; }
.compare-tick  { color: var(--green); font-size: 16px; }
.compare-cross { color: var(--red); font-size: 16px; }
.compare-price { font-family: var(--display); font-size: 17px; font-weight: 700; }
.compare-price-sub { font-size: 10.5px; color: var(--ink-faint); display: block; margin-top: 2px; }
.compare-table td.col-us .compare-price-sub { color: var(--ink-soft); }

/* ── TESTIMONIALS (flat cards) ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3.5rem; }
.t-card {
  background: var(--card);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  padding: 1.75rem 1.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(23,19,13,0.16); }
.t-stars { font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; color: var(--clay); }
.t-quote { font-size: 14.5px; font-weight: 400; color: var(--ink); line-height: 1.65; margin-bottom: 1.1rem; }
.t-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.t-biz  { font-size: 11.5px; color: var(--ink-faint); margin-top: 2px; }

/* ── FAQ ── */
.faq-wrap { max-width: 640px; margin: 3rem auto 0; background: var(--card); border: 1px solid var(--mist); border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 1.1rem 1.5rem;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--clay); }
.faq-q::after {
  content: '+'; font-size: 18px;
  color: var(--clay); font-weight: 400;
  flex-shrink: 0; transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--ink-soft); line-height: 1.75;
  max-height: 0; overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.15rem; }
.faq-updated { margin-top: 1.5rem; text-align: center; font-size: 11.5px; color: var(--ink-faint); }

/* ── CTA BOTTOM ── */
.cta-bg {
  background: var(--ink);
  text-align: center; padding: 6.5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-bg .eyebrow { color: #E8A87A; }
.cta-bg .h2 { color: #fff; }
.cta-bg .body-text { color: rgba(255,255,255,0.62); }
.cta-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content; margin: 0 auto 1.75rem;
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 12.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 99px;
}

/* ── FOOTER ── */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--mist);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-brand { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.01em; color: var(--ink); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12.5px; color: var(--ink-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--clay); }
.footer-copy { font-size: 11.5px; color: var(--ink-faint); }
.footer-contact { font-size: 12.5px; color: var(--ink-soft); }
.footer-contact a { color: var(--ink-soft); transition: color 0.2s; }
.footer-contact a:hover { color: var(--clay); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual-wrap { margin-top: 2.5rem; }
  .feature-row, .feature-row.rev { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row .feature-copy, .feature-row.rev .feature-copy { order: 1; text-align: center; }
  .feature-row .feature-visual, .feature-row.rev .feature-visual { order: 2; }
  .feature-icon { margin-left: auto; margin-right: auto; }
  .feature-desc { margin-left: auto; margin-right: auto; }
  .feature-points { align-items: center; }
  .feature-points li { text-align: left; }
}
@media (max-width: 720px) {
  .nav { padding: 0 1.25rem; }
  .hero { padding: 6.5rem 1.5rem 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pocket { gap: 2.5rem; }
  .footer { flex-direction: column; align-items: flex-start; }
  .price-tier-list { column-count: 1; }
}
@media (max-width: 600px) {
  .compare-table, .compare-table tbody, .compare-table td { display: block; width: 100%; }
  .compare-table thead { display: none; }
  .compare-table { border: none; border-radius: 0; }
  .compare-table tr {
    display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--mist); border-radius: var(--r);
    margin-bottom: 12px; padding: 12px 14px;
  }
  .compare-table td {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 10px;
    padding: 7px 0; border-bottom: 1px solid var(--mist); text-align: right;
  }
  .compare-table td .compare-price-sub { flex-basis: 100%; }
  .compare-table td:last-child { border-bottom: none; }
  .compare-table td:first-child {
    order: -2; display: block; text-align: left; font-weight: 700;
    border-bottom: 1px solid var(--mist); padding-bottom: 8px; margin-bottom: 2px;
  }
  .compare-table td[data-label]::before {
    content: attr(data-label);
    font-size: 10px; font-weight: 600; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--ink-faint);
  }
  .compare-table td.col-us {
    order: -1; background: var(--clay-tint);
    margin: 0 -14px 4px; padding: 8px 14px; border: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-h1,.hero-sub,.hero-btns,.hero-mock { animation: none; }
  .trust-track { animation: none; }
  .phone { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
