/* Version 3 — App-aligned editorial
   Matches the actual product: square corners (4-6px), dark sidebar metaphor,
   off-white content, ALL CAPS section labels with wide tracking, subdued blue.
   The marketing site should feel like the same studio made both. */

:root {
  --sc-blue: #427AE4;
  --sc-blue-hover: #3568cc;
  --sc-blue-soft: oklch(0.62 0.10 250);
  --sc-blue-tint: oklch(0.96 0.025 250);
  --sc-blue-tint-2: oklch(0.92 0.04 250);

  --sc-bg: oklch(0.97 0.003 250);          /* matches app's #EFEFF1-ish */
  --sc-bg-2: oklch(0.985 0.003 250);
  --sc-bg-3: oklch(0.94 0.004 250);
  --sc-paper: #ffffff;
  --sc-ink: #15171C;                        /* near-black like the app sidebar */
  --sc-ink-2: oklch(0.32 0.008 260);
  --sc-ink-3: oklch(0.50 0.008 260);
  --sc-mute: oklch(0.65 0.006 260);
  --sc-line: oklch(0.90 0.004 250);
  --sc-line-2: oklch(0.84 0.005 250);
  --sc-success: oklch(0.55 0.13 150);
  --sc-warn: oklch(0.62 0.14 60);

  --sc-sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sc-mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* SQUARE — match the app */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 6px;
  --r-xl: 6px;

  --shadow-sm: 0 1px 0 rgba(20, 28, 48, 0.04);
  --shadow-md: 0 1px 0 rgba(20, 28, 48, 0.04), 0 8px 20px -12px rgba(20, 28, 48, 0.18);
  --shadow-lg: 0 1px 0 rgba(20, 28, 48, 0.04), 0 24px 48px -20px rgba(20, 28, 48, 0.20);
  --shadow-blue: 0 14px 28px -14px rgba(66, 122, 228, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sc-sans);
  background: var(--sc-bg);
  color: var(--sc-ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* App-style ALL CAPS eyebrow with wide tracking */
.eyebrow {
  font-family: var(--sc-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sc-ink-2);
}
.eyebrow .dot { display: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.018em; line-height: 1.08; color: var(--sc-ink); }
.h-display { font-size: clamp(40px, 5.0vw, 68px); font-weight: 500; letter-spacing: -0.028em; line-height: 1.04; }
.h-1 { font-size: clamp(32px, 3.4vw, 48px); letter-spacing: -0.022em; line-height: 1.08; font-weight: 500; }
.h-2 { font-size: clamp(24px, 2.2vw, 32px); letter-spacing: -0.018em; line-height: 1.15; font-weight: 500; }
.h-3 { font-size: 18px; letter-spacing: -0.008em; line-height: 1.3; font-weight: 500; }
p { margin: 0; }
.lead { font-size: 18px; line-height: 1.6; color: var(--sc-ink-2); text-wrap: pretty; font-weight: 400; }
.muted { color: var(--sc-ink-3); }
.tiny { font-size: 13px; color: var(--sc-ink-3); }

/* Buttons — square, app-style */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 4px;
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  text-transform: none;
}
.btn-primary { background: var(--sc-ink); color: white; }
.btn-primary:hover { background: black; }
.btn-blue { background: var(--sc-blue); color: white; }
.btn-blue:hover { background: var(--sc-blue-hover); }
.btn-outline-blue { background: transparent; color: var(--sc-blue); border-color: var(--sc-blue); }
.btn-outline-blue:hover { background: var(--sc-blue-tint); }
.btn-ghost { background: transparent; color: var(--sc-ink); border-color: var(--sc-line-2); }
.btn-ghost:hover { background: var(--sc-bg-3); border-color: var(--sc-ink); }
.btn-dark { background: var(--sc-ink); color: white; }
.btn-dark:hover { background: black; }
.btn-wa { background: #25D366; color: #07331b; }
.btn-wa:hover { background: #1fb858; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-lg { height: 48px; padding: 0 24px; font-size: 15px; }

.card { background: var(--sc-paper); border: 1px solid var(--sc-line); border-radius: 6px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.tighter { padding: 40px 0; }

.band-blue { background: var(--sc-blue); color: white; }
.band-blue h1, .band-blue h2, .band-blue h3 { color: white; }
.band-blue .lead { color: rgba(255,255,255,0.82); }
.band-blue .eyebrow { color: rgba(255,255,255,0.75); }

.band-tint { background: var(--sc-bg-3); }
.band-ink { background: var(--sc-ink); color: white; }
.band-ink h1, .band-ink h2, .band-ink h3 { color: white; }

/* Top nav — app-aligned, dark variant available */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in oklab, var(--sc-bg) 88%, transparent);
  border-bottom: 1px solid var(--sc-line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: -0.01em; font-size: 15px; }
.nav-brand .mark { width: 28px; height: 28px; border-radius: 4px; background: transparent; display: grid; place-items: center; overflow: hidden; }
.nav-brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a { padding: 8px 16px; font-size: 14px; color: var(--sc-ink-2); border-radius: 4px; transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--sc-ink); }

.nav-cta { display: flex; align-items: center; gap: 8px; }
.country-pill { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px; border-radius: 4px; border: 1px solid var(--sc-line-2); background: var(--sc-paper); font-size: 12px; color: var(--sc-ink-2); font-family: var(--sc-mono); letter-spacing: 0.04em; cursor: pointer; }
.country-pill:hover { background: var(--sc-bg-3); }
.country-pill .flag { width: 14px; height: 10px; border-radius: 1px; overflow: hidden; }

.country-pill .caret { transition: transform .15s ease; opacity: .65; margin-left: 2px; }
.country-pill.open { background: var(--sc-bg-3); }
.country-pill.open .caret { transform: rotate(180deg); }
.country-menu { position: relative; }
.country-menu-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 4px;
  background: white;
  border: 1px solid var(--sc-line);
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 16px 32px -16px rgba(15, 23, 42, 0.20);
  z-index: 60;
  animation: cm-fade .12s ease;
}
@keyframes cm-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.country-menu-list li { margin: 0; }
.country-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sc-sans);
  font-size: 13px;
  color: var(--sc-ink);
  transition: background .12s ease;
  text-align: left;
}
.country-menu-item:hover { background: var(--sc-paper-2); }
.country-menu-item.active { background: var(--sc-blue-tint); color: var(--sc-blue); }
.country-menu-item .flag { width: 16px; height: 11px; border-radius: 1px; overflow: hidden; flex-shrink: 0; }
.country-menu-label { flex: 1; }
.country-menu-code { font-family: var(--sc-mono); font-size: 11px; color: var(--sc-ink-3); letter-spacing: 0.06em; }
.country-menu-item.active .country-menu-code { color: var(--sc-blue); }
.hero { padding: 64px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }

.hero-niche {
  display: inline-flex; align-items: center; gap: 10px;
  height: 32px; padding: 0 12px;
  border-radius: 4px;
  background: var(--sc-paper);
  border: 1px solid var(--sc-line-2);
  color: var(--sc-ink-2);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-niche .pulse { width: 6px; height: 6px; border-radius: 99px; background: var(--sc-blue); position: relative; }
.hero-niche .pulse::after { content: ""; position: absolute; inset: -3px; border-radius: 99px; border: 1.5px solid var(--sc-blue); opacity: .5; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

.hero h1 .blue { color: var(--sc-blue); }
.hero h1 .ink { color: var(--sc-ink); }
.hero p.lead { margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 36px; align-items: center; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--sc-line); }
.hero-meta .item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sc-ink-3); }
.hero-meta .item svg { width: 14px; height: 14px; color: var(--sc-blue); }

/* Hero art */
.hero-art { position: relative; aspect-ratio: 5 / 4.5; }
.mock-window {
  position: absolute;
  background: var(--sc-paper);
  border-radius: 6px;
  border: 1px solid var(--sc-line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mw-bar { height: 30px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--sc-line); background: var(--sc-bg-3); }
.mw-bar .dot { width: 8px; height: 8px; border-radius: 99px; background: var(--sc-line-2); }
.mw-bar .url { flex: 1; height: 18px; border-radius: 3px; background: var(--sc-paper); border: 1px solid var(--sc-line); font-family: var(--sc-mono); font-size: 10px; color: var(--sc-mute); display: flex; align-items: center; padding: 0 8px; }

/* Proof */
.proof { border-top: 1px solid var(--sc-line); border-bottom: 1px solid var(--sc-line); background: var(--sc-bg-2); padding: 28px 0; }
.proof-row { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.proof-label { font-size: 12px; letter-spacing: 0.04em; color: var(--sc-ink-3); line-height: 1.4; }
.proof-label strong { color: var(--sc-ink); font-weight: 500; }
.proof-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; align-items: center; }
.proof-logo { display: flex; align-items: center; justify-content: center; height: 56px; border-radius: 4px; background: var(--sc-paper); border: 1px solid var(--sc-line); font-weight: 500; letter-spacing: -0.005em; color: var(--sc-ink-2); font-size: 16px; }
.proof-logo img { max-height: 28px; max-width: 70%; object-fit: contain; filter: grayscale(1) contrast(1.1); opacity: .85; }
.proof-logo.text-logo { font-size: 15px; }

/* Before / after — square cards */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; align-items: stretch; }
.ba-card { padding: 36px; border-radius: 6px; position: relative; display: flex; flex-direction: column; }
.ba-card.before { background: var(--sc-bg-3); border: 1px solid var(--sc-line); }
.ba-card.after { background: var(--sc-paper); border: 1px solid var(--sc-line); }

.ba-tag {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  border-radius: 3px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 500;
}
.ba-tag.before { background: transparent; border: 1px solid var(--sc-line-2); color: var(--sc-ink-3); }
.ba-tag.after { background: var(--sc-blue); color: white; }

.ba-list { list-style: none; padding: 0; margin: 20px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.ba-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--sc-ink-2); }
.ba-list li .icon { width: 20px; height: 20px; flex-shrink: 0; border-radius: 3px; display: grid; place-items: center; margin-top: 1px; }
.ba-card.before .icon { background: transparent; border: 1px solid var(--sc-line-2); color: var(--sc-warn); }
.ba-card.after .icon { background: var(--sc-blue-tint); color: var(--sc-blue); }
.ba-list li .icon svg { width: 12px; height: 12px; }
.ba-card.before li { color: var(--sc-ink-3); }
.ba-card.before li s { color: var(--sc-mute); text-decoration-thickness: 1px; }

.ba-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--sc-line); display: flex; justify-content: space-between; align-items: baseline; }
.ba-footer .num { font-family: var(--sc-mono); font-size: 32px; letter-spacing: -0.02em; color: var(--sc-ink); font-weight: 400; }
.ba-card.before .ba-footer .num { color: var(--sc-warn); }
.ba-card.after .ba-footer .num { color: var(--sc-blue); }
.ba-footer .lab { font-size: 11px; color: var(--sc-ink-3); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }

/* Value stack */
.vs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.vs-grid .feature { padding: 28px; border: 1px solid var(--sc-line); border-radius: 6px; background: var(--sc-paper); display: flex; flex-direction: column; gap: 14px; transition: border-color .15s ease; }
.vs-grid .feature:hover { border-color: var(--sc-ink); }
.vs-grid .feature.span-2 { grid-column: span 2; }
.feature .icon { width: 36px; height: 36px; border-radius: 4px; background: var(--sc-blue-tint); color: var(--sc-blue); display: grid; place-items: center; }
.feature .icon svg { width: 18px; height: 18px; }
.feature h3 { font-size: 17px; }
.feature p { font-size: 14px; color: var(--sc-ink-3); line-height: 1.55; }
.feature .feat-meta { font-size: 11px; color: var(--sc-ink-3); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* Case study */
.case { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.case-photo { border-radius: 6px; background: var(--sc-bg-3); border: 1px solid var(--sc-line); overflow: hidden; aspect-ratio: 4 / 5; position: relative; background: linear-gradient(135deg, var(--sc-bg-3), var(--sc-paper)); }
.case-photo-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-photo .ph-stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(-25deg, transparent 0 22px, color-mix(in oklab, var(--sc-blue) 5%, transparent) 22px 23px); }
.case-photo .ph-label { position: absolute; left: 24px; bottom: 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sc-ink-3); background: var(--sc-paper); padding: 6px 10px; border-radius: 3px; border: 1px solid var(--sc-line); font-weight: 500; }
.case-photo .ph-tag { position: absolute; left: 24px; top: 24px; font-size: 11px; color: var(--sc-blue); background: var(--sc-paper); padding: 6px 10px; border-radius: 3px; border: 1px solid var(--sc-line); font-weight: 500; letter-spacing: 0.06em; }

.case-quote { font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.018em; line-height: 1.25; color: var(--sc-ink); font-weight: 400; margin: 16px 0 28px; text-wrap: balance; }
.case-quote span { color: var(--sc-blue); }
.case-author { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.case-author .av { width: 40px; height: 40px; border-radius: 4px; background: var(--sc-bg-3); border: 1px solid var(--sc-line); display: grid; place-items: center; font-weight: 500; color: var(--sc-ink-2); }
.case-author .name { font-weight: 500; font-size: 15px; }
.case-author .role { font-size: 13px; color: var(--sc-ink-3); }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--sc-line); }
.case-stats .stat { padding: 22px 24px 4px 0; border-right: 1px solid var(--sc-line); }
.case-stats .stat + .stat { padding-left: 24px; }
.case-stats .stat:last-child { border-right: 0; padding-right: 0; }
.case-stats .stat .v { font-family: var(--sc-mono); font-size: 28px; letter-spacing: -0.02em; color: var(--sc-blue); font-weight: 400; line-height: 1; }
.case-stats .stat .l { font-size: 11px; color: var(--sc-ink-3); margin-top: 10px; line-height: 1.4; max-width: 140px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* Pricing */
.plans { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan { background: var(--sc-paper); border: 1px solid var(--sc-line); border-radius: 6px; padding: 32px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.plan.featured { background: var(--sc-ink); color: white; border-color: var(--sc-ink); }
.plan.featured h3 { color: white; }
.plan.featured .price-amt { color: white; }
.plan.featured .plan-feat li { color: rgba(255,255,255,0.78); }
.plan.featured .plan-feat li svg { color: var(--sc-blue); }
.plan.featured .plan-tag { background: var(--sc-blue); color: white; }
.plan.featured .plan-desc, .plan.featured .price-cur, .plan.featured .price-suf, .plan.featured .price-extra { color: rgba(255,255,255,0.55); }

.plan h3 { font-size: 20px; }
.plan-tag {
  position: absolute; top: 24px; right: 24px;
  height: 22px; padding: 0 10px;
  border-radius: 3px;
  background: var(--sc-blue-tint); color: var(--sc-blue);
  font-size: 10px; display: inline-flex; align-items: center;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.plan-desc { font-size: 14px; color: var(--sc-ink-3); min-height: 42px; }
.price-row { display: flex; align-items: baseline; gap: 6px; }
.price-amt { font-size: 44px; font-weight: 500; letter-spacing: -0.028em; color: var(--sc-ink); line-height: 1; font-family: var(--sc-mono); }
.price-cur { font-size: 16px; color: var(--sc-ink-3); align-self: flex-start; margin-top: 6px; font-family: var(--sc-mono); }
.price-suf { font-size: 13px; color: var(--sc-ink-3); }
.price-extra { font-size: 12px; color: var(--sc-ink-3); margin-top: 4px; font-family: var(--sc-mono); letter-spacing: 0.02em; }

.plan-feat { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feat li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--sc-ink-2); line-height: 1.5; }
.plan-feat li svg { width: 14px; height: 14px; color: var(--sc-blue); flex-shrink: 0; margin-top: 4px; }
.plan-feat li.muted { color: var(--sc-mute); }
.plan-feat li.muted svg { color: var(--sc-mute); }

.plan .btn { margin-top: auto; justify-content: center; }

#garantias { padding-bottom: 32px; }
#garantias + #cta { padding-top: 32px; }
.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.guarantee { padding: 32px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); color: white; display: flex; flex-direction: column; gap: 12px; }
.guarantee .num { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.18em; font-weight: 500; }
.guarantee h3 { font-size: 20px; color: white; }
.guarantee p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; }
.guarantee .badge { width: 40px; height: 40px; border-radius: 4px; background: rgba(255,255,255,0.14); display: grid; place-items: center; color: white; margin-bottom: 4px; }
.guarantee .badge svg { width: 20px; height: 20px; }

/* Final CTA */
.cta-final { text-align: center; padding: 32px 32px 80px; }
.cta-final h2 { font-size: clamp(32px, 3.6vw, 52px); letter-spacing: -0.022em; max-width: 880px; margin: 0 auto; font-weight: 500; }
.cta-final p { margin: 20px auto 36px; max-width: 540px; }
.cta-final .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { border-top: 1px solid var(--sc-line); padding: 56px 0 40px; background: var(--sc-bg-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sc-ink-3); margin-bottom: 16px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--sc-ink-2); }
.footer-links a svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }
.footer-links a:hover { color: var(--sc-blue); }
.footer-base { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--sc-line); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--sc-ink-3); font-family: var(--sc-mono); }

/* Section header */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.section-head .left h2 { max-width: 540px; }
.section-head .right { color: var(--sc-ink-3); font-size: 16px; line-height: 1.6; max-width: 420px; }
.section-head.center { display: block; text-align: center; }
.section-head.center h2 { max-width: 760px; margin: 0 auto; }
.section-head.center .right { max-width: 600px; margin: 16px auto 0; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }

/* Mock dashboard - mirror the actual app */
.mock-dash { position: absolute; inset: 0; display: grid; grid-template-columns: 90px 1fr; }
.mock-side {
  background: var(--sc-ink);
  padding: 14px 8px;
  display: flex; flex-direction: column; gap: 2px; align-items: stretch;
}
.mock-side .si { width: 100%; height: 24px; padding: 0 8px; border-radius: 2px; display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.55); font-size: 9px; letter-spacing: 0.04em; }
.mock-side .si.active { background: rgba(255,255,255,0.1); color: white; }
.mock-side .si svg { width: 11px; height: 11px; }
.mock-main { padding: 16px 18px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mock-h { display: flex; justify-content: space-between; align-items: center; }
.mock-h h4 { font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400; }
.mock-pill { font-size: 9px; padding: 3px 8px; border-radius: 2px; background: var(--sc-blue-tint); color: var(--sc-blue); letter-spacing: 0.06em; }
.mock-section-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sc-ink-3); font-weight: 500; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-stat { padding: 10px 12px; background: var(--sc-paper); border: 1px solid var(--sc-line); border-radius: 4px; }
.mock-stat .l { font-size: 9px; color: var(--sc-ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.mock-stat .v { font-family: var(--sc-mono); font-size: 18px; font-weight: 400; color: var(--sc-ink); margin-top: 2px; }
.mock-stat .v.up { color: var(--sc-success); }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--sc-line); font-size: 11px; }
.mock-row:last-child { border-bottom: 0; }
.mock-row .sw { width: 26px; height: 26px; border-radius: 3px; background: linear-gradient(135deg, var(--sc-bg-3), var(--sc-blue-tint)); flex-shrink: 0; }
.mock-row .name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-row .price { font-family: var(--sc-mono); color: var(--sc-ink); }
.mock-row .stk { font-family: var(--sc-mono); color: var(--sc-success); font-size: 9px; padding: 2px 6px; background: transparent; border: 1px solid color-mix(in oklab, var(--sc-success) 30%, white); border-radius: 99px; }
.mock-row .stk.low { color: var(--sc-warn); border-color: color-mix(in oklab, var(--sc-warn) 30%, white); }

.mw-1 { left: 0; top: 0; width: 78%; height: 76%; }
.mw-2 { right: 0; bottom: 0; width: 60%; height: 54%; }
.mw-3 { right: 6%; top: 6%; width: 38%; }

.mw-shot {
  width: 100%;
  height: calc(100% - 30px);
  overflow: hidden;
  background: var(--sc-paper);
  position: relative;
}
.mw-shot.mw-shot-full { height: 100%; }
.mw-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.mw-2 .mw-shot img { object-fit: cover; object-position: top left; }

.mw-pos { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mw-pos .row { display: flex; justify-content: space-between; font-size: 12px; }
.mw-pos .row .l { color: var(--sc-ink-3); }
.mw-pos .row .v { font-family: var(--sc-mono); }
.mw-pos .total { font-size: 26px; font-weight: 500; letter-spacing: -.02em; color: var(--sc-blue); margin-top: 4px; font-family: var(--sc-mono); }
.mw-pos .pay { background: var(--sc-blue); color: white; height: 32px; border-radius: 4px; display: grid; place-items: center; font-size: 12px; }

.mw-not { padding: 12px 14px; display: flex; gap: 10px; align-items: center; font-size: 12px; }
.mw-not .ic { width: 26px; height: 26px; border-radius: 3px; background: color-mix(in oklab, var(--sc-success) 18%, white); color: var(--sc-success); display: grid; place-items: center; flex-shrink: 0; }
.mw-not .ic svg { width: 14px; height: 14px; }
.mw-not .t { font-weight: 500; font-size: 12px; }
.mw-not .s { font-size: 11px; color: var(--sc-ink-3); font-family: var(--sc-mono); }

[data-tweaks-panel] { z-index: 80 !important; }

@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .ba-grid, .vs-grid, .plans, .guarantees { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .case-photo { aspect-ratio: 16/10; }
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proof-row { grid-template-columns: 1fr; gap: 18px; }
  section { padding: 64px 0; }
}

[id] { scroll-margin-top: 80px; }

/* FAQ single-column accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sc-line);
}
.faq-item {
  border-bottom: 1px solid var(--sc-line);
  overflow: hidden;
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.4;
  color: var(--sc-ink);
  margin: 0;
  user-select: none;
  transition: color .15s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--sc-blue); }
.faq-chev {
  width: 28px; height: 28px;
  border-radius: 99px;
  border: 1px solid var(--sc-line-2);
  display: grid;
  place-items: center;
  color: var(--sc-ink-3);
  flex-shrink: 0;
  transition: transform .25s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.faq-chev svg { width: 14px; height: 14px; }
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  background: var(--sc-blue);
  border-color: var(--sc-blue);
  color: white;
}
.faq-a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sc-ink-3);
  margin: 0;
  padding: 0 56px 28px 0;
  text-wrap: pretty;
  max-width: 760px;
  animation: faq-fade .25s ease;
}
@keyframes faq-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .faq-q { font-size: 16px; padding: 20px 0; }
  .faq-a { padding-right: 0; padding-bottom: 24px; }
}

/* Lead modal */
.lead-modal {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--sc-ink) 55%, transparent);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 24px;
  z-index: 200;
  animation: lead-fade .18s ease;
}
@keyframes lead-fade { from { opacity: 0; } to { opacity: 1; } }
.lead-card {
  background: var(--sc-paper);
  border: 1px solid var(--sc-line);
  border-radius: 8px;
  width: 100%; max-width: 460px;
  padding: 36px 36px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  animation: lead-pop .22s cubic-bezier(.2,.8,.2,1);
}
@keyframes lead-pop { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }
.lead-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 4px;
  background: transparent; border: 1px solid transparent;
  color: var(--sc-ink-3);
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.lead-close:hover { background: var(--sc-paper-2, var(--sc-bg-3)); color: var(--sc-ink); border-color: var(--sc-line); }
.lead-eyebrow {
  display: inline-block;
  font-family: var(--sc-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sc-blue);
  background: color-mix(in oklab, var(--sc-blue) 10%, white);
  border: 1px solid color-mix(in oklab, var(--sc-blue) 25%, white);
  padding: 5px 10px; border-radius: 99px;
  margin-bottom: 16px;
}
.lead-title { font-size: 28px; font-weight: 500; letter-spacing: -.01em; line-height: 1.15; margin: 0; color: var(--sc-ink); }
.lead-sub { font-size: 14px; color: var(--sc-ink-3); margin: 10px 0 24px; line-height: 1.5; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.lead-field > span { font-size: 12px; color: var(--sc-ink-2, var(--sc-ink)); font-weight: 500; letter-spacing: .01em; }
.lead-field input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--sc-line);
  border-radius: 4px;
  background: var(--sc-paper);
  font: inherit; font-size: 14px;
  color: var(--sc-ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.lead-field input::placeholder { color: var(--sc-ink-3); }
.lead-field input:focus { border-color: var(--sc-blue); box-shadow: 0 0 0 3px color-mix(in oklab, var(--sc-blue) 18%, transparent); }
.lead-field input[aria-invalid="true"] { border-color: oklch(0.55 0.18 25); }
.lead-err { font-style: normal; font-size: 11.5px; color: oklch(0.55 0.18 25); margin-top: 2px; }
.lead-submit { margin-top: 6px; height: 48px; justify-content: center; }
.lead-fineprint { font-size: 11px; color: var(--sc-ink-3); text-align: center; margin: 10px 0 0; }
.lead-success { text-align: center; padding: 8px 0 4px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lead-success .lead-title { margin-top: 6px; }
.lead-success .lead-sub { margin-bottom: 18px; }
.lead-tick {
  width: 56px; height: 56px; border-radius: 99px;
  background: color-mix(in oklab, var(--sc-success) 16%, white);
  color: var(--sc-success);
  display: grid; place-items: center;
  border: 1px solid color-mix(in oklab, var(--sc-success) 30%, white);
  margin-bottom: 6px;
  animation: lead-tick-pop .35s cubic-bezier(.2,.8,.2,1);
}
.lead-tick svg { width: 26px; height: 26px; }
@keyframes lead-tick-pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.lead-success-meta {
  width: 100%;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--sc-paper-2, var(--sc-bg-3));
  border: 1px solid var(--sc-line);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: left;
}
.lead-success-meta > div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13px; }
.lead-success-meta span { color: var(--sc-ink-3); font-family: var(--sc-mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.lead-success-meta strong { color: var(--sc-ink); font-weight: 500; word-break: break-word; }
@media (max-width: 540px) {
  .lead-card { padding: 28px 22px 20px; }
  .lead-title { font-size: 24px; }
}
