/* ============================================================
   ServicePress — Landing Page
   Design system: clean / technical SaaS, "simplicidade" angle
   Type: Schibsted Grotesk (display) · IBM Plex Sans (body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  /* surfaces & ink — Editorial Light (sync com app.css interno) */
  --bg:          #FBFAF8;   /* app --paper */
  --bg-deep:     #F5F3EF;   /* app --surface-2 */
  --surface:     #FFFFFF;
  --ink:         #1B1B19;
  --ink-soft:    #3A3934;
  --ink-faint:   #9C978D;   /* app --faint */
  --line:        #E9E6E0;   /* app --line */
  --line-soft:   #F1EFEA;
  --line-strong: #DBD7CF;   /* app --line-strong */

  /* accent único (clay/terracota) */
  --accent:       #B5552D;
  --accent-deep:  #93431F;  /* app --accent-ink */
  --accent-tint:  #F6EBE3;  /* app --accent-wash */
  --accent-ink:   #ffffff;  /* texto sobre accent */
  --live:         #2E9354;  /* app st-ok-dot */
  --live-tint:    #DEF1E3;  /* app st-ok-bg */
  --warn:         #C9871B;  /* app st-prog-dot */
  --warn-tint:    #FBEFD7;  /* app st-prog-bg */

  /* type families — idêntico ao interno */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

  /* rhythm */
  --section-y: 116px;
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(27,27,25,.04), 0 1px 1px rgba(27,27,25,.03);   /* app --shadow-1 */
  --shadow-md: 0 6px 24px -12px rgba(27,27,25,.18);                          /* app --shadow-2 */
  --shadow-lg: 0 12px 40px -12px rgba(27,27,25,.25);                         /* app --shadow-pop */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent-tint); color: var(--accent-deep); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }

a { color: inherit; text-decoration: none; }

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

section { padding: var(--section-y) 0; }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 19px; color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }

.section-head { max-width: 64ch; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 0; }
.section-head .lead { margin-top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink-faint); }
.btn svg { width: 18px; height: 18px; }

.microcopy {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.microcopy .dot { color: var(--line); }

/* placeholder block for [INSERIR ...] content */
.placeholder {
  border: 1.5px dashed var(--warn);
  background: var(--warn-tint);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: oklch(0.45 0.07 70);
}
.placeholder b { color: oklch(0.38 0.1 60); font-weight: 600; letter-spacing: 0.04em; }
.placeholder::before {
  content: "[ INSERIR ]";
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--warn);
  margin-bottom: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.78);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header[data-scrolled="true"] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand .mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand .logo-glyph {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--bg);
  font-size: 14px;
}
.brand .by { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 10px 18px; font-size: 14.5px; }
.menu-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 76px; padding-bottom: 96px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 78% 8%, var(--accent-tint), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  margin: 24px 0 0;
  line-height: 1.02;
}
.hero h1 em { font-style: normal; color: var(--accent-deep); }
.hero .sub { margin-top: 26px; font-size: 19.5px; color: var(--ink-soft); max-width: 56ch; text-wrap: pretty; }
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero .microcopy { margin-top: 20px; }

/* headline variant switching */
.headline-variant { display: none; }
html[data-headline="a"] .headline-variant.va { display: block; }
html[data-headline="b"] .headline-variant.vb { display: block; }
html[data-headline="c"] .headline-variant.vc { display: block; }
html:not([data-headline]) .headline-variant.va { display: block; }

/* ---------- live product mock ---------- */
.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 14px;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-deep);
}
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: block; }
.mock-bar .url {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  padding: 4px 12px;
  flex: 1;
}
.mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
}
.mock-head h3 { font-size: 17px; letter-spacing: -0.02em; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--live);
  background: var(--live-tint);
  padding: 4px 10px; border-radius: 100px;
  font-weight: 500;
}
.live-pill .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--live); position: relative; }
.live-pill .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--live); opacity: 0;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

.mock-cols {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2px; padding: 0 14px 6px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint);
}
.mock-cols span { padding: 6px 8px; }
.ticket-list { padding: 4px 14px 18px; display: flex; flex-direction: column; gap: 7px; }
.ticket {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 12px 14px;
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}
.ticket:hover { border-color: var(--line); box-shadow: var(--shadow-sm); }
.ticket .tk-id { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }
.ticket .tk-title { font-weight: 600; font-size: 13.5px; color: var(--ink); margin-top: 2px; }
.ticket .tk-meta { display: flex; align-items: center; gap: 9px; margin-top: 7px; }
.avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: #fff;
}
.tk-time { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-faint); }
.status {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  padding: 4px 9px; border-radius: 100px;
  letter-spacing: 0.03em; white-space: nowrap;
}
.status.open    { background: var(--warn-tint); color: #97600F; }
.status.doing   { background: var(--accent-tint); color: var(--accent-deep); }
.status.done    { background: var(--live-tint); color: #1C6B38; }
.ticket.just-updated { animation: flash 1.6s ease-out; }
@keyframes flash { 0% { background: var(--accent-tint); } 100% { background: var(--surface); } }

.mock-foot {
  border-top: 1px solid var(--line-soft);
  padding: 11px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
}

/* logo strip / dogfood note under hero */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust-strip .wrap { padding-top: 26px; padding-bottom: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust-strip p { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); max-width: 70ch; }
.trust-strip b { color: var(--ink); font-weight: 600; }

/* ============================================================
   VALUE / OPENING
   ============================================================ */
.value { background: var(--bg); }
.value .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.value .big {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.value .big .muted { color: var(--ink-faint); }
.value-body p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 20px; text-wrap: pretty; }
.value-body p strong { color: var(--ink); font-weight: 600; }
.value-body .punch {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* ============================================================
   PAIN
   ============================================================ */
.pain { background: var(--bg-deep); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.pain-card .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--bg-deep);
  display: grid; place-items: center;
  color: var(--ink-soft);
}
.pain-card .ic svg { width: 18px; height: 18px; }
.pain-card p { font-size: 15.5px; color: var(--ink); line-height: 1.5; font-weight: 500; }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { background: var(--bg); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-tint); }
.pillar .pic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-tint);
  display: grid; place-items: center;
  color: var(--accent-deep);
}
.pillar .pic svg { width: 24px; height: 24px; }
.pillar .ptag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); }
.pillar h3 { font-size: 21px; margin: 5px 0 10px; }
.pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.solution .mechanism {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 30ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.3;
}
.solution .mechanism .hl { color: var(--accent-deep); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--bg-deep); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 48px; }
.benefit {
  display: grid; grid-template-columns: 26px 1fr; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.benefit .chk {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; margin-top: 2px;
}
.benefit .chk svg { width: 14px; height: 14px; }
.benefit h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 600; letter-spacing: 0; }
.benefit p { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social { background: var(--bg); }
html[data-social="off"] .social { display: none; }
.dogfood {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px); line-height: 1.3;
  letter-spacing: -0.02em; max-width: 26ch;
}
.dogfood .hl { color: var(--accent-deep); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.metrics-ph { grid-column: 1 / -1; }
.quote-ph { min-height: 150px; }

/* ============================================================
   OFFER
   ============================================================ */
.offer { background: var(--ink); color: #D9D6D0; }
.offer h2 { color: #fff; }
.offer .eyebrow { color: #E0B498; }
.offer .eyebrow::before { background: var(--accent); }
.offer .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.offer .lead { color: #C7C3BC; }
.demo-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.demo-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  font-size: 16px;
  color: #E2DFDA;
}
.demo-list li:last-child { border-bottom: 1px solid oklch(1 0 0 / 0.1); }
.demo-list .v {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; margin-top: 1px;
}
.demo-list .v svg { width: 13px; height: 13px; }
.offer .placeholder { background: oklch(1 0 0 / 0.04); border-color: oklch(0.7 0.1 70 / 0.5); color: oklch(0.82 0.05 75); margin-top: 26px; }
.offer .placeholder b { color: oklch(0.88 0.07 75); }
.offer .placeholder::before { color: var(--warn); }

/* ============================================================
   OBJECTIONS
   ============================================================ */
.objections { background: var(--bg); }
.obj-list { display: grid; gap: 16px; max-width: 860px; }
.obj {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.obj .q {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; color: var(--ink);
  display: flex; gap: 12px; align-items: baseline;
}
.obj .q .mk { font-family: var(--font-mono); color: var(--accent); font-size: 15px; }
.obj .a { font-size: 15.5px; color: var(--ink-soft); margin-top: 12px; padding-left: 27px; line-height: 1.6; }
.obj .a strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--bg-deep); }
.guarantee .wrap { display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start; max-width: 920px; }
.guarantee .shield {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center;
}
.guarantee .shield svg { width: 32px; height: 32px; }
.guarantee h2 { font-size: clamp(24px, 3vw, 32px); }
.guarantee p { font-size: 17.5px; color: var(--ink-soft); margin-top: 14px; max-width: 64ch; text-wrap: pretty; }
.guarantee .placeholder { margin-top: 22px; max-width: 64ch; }

/* honest pilot microcopy */
.pilot-note {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
}
.pilot-note .b { color: var(--accent-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq .wrap { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-weight: 600; font-size: 18.5px;
  color: var(--ink);
}
.faq-q .tog {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: transform .25s, background .2s, border-color .2s, color .2s;
  color: var(--ink-soft);
}
.faq-q .tog svg { width: 15px; height: 15px; }
.faq-item[data-open="true"] .faq-q .tog { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 4px 26px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; max-width: 62ch; text-wrap: pretty; }
.faq-a-inner .placeholder { font-size: 12.5px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 120% at 100% 0%, oklch(1 0 0 / 0.14), transparent 60%);
}
.final-cta .wrap { position: relative; text-align: center; max-width: 800px; }
.final-cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); }
.final-cta p { font-size: 19px; color: rgba(255,255,255,0.92); margin: 22px auto 0; max-width: 60ch; text-wrap: pretty; }
.final-cta .btn-primary {
  background: #fff; color: var(--accent-deep); margin-top: 36px; font-size: 17px; padding: 17px 34px;
}
.final-cta .btn-primary:hover { background: var(--accent-tint); }
.final-cta .microcopy { color: rgba(255,255,255,0.85); justify-content: center; margin-top: 20px; }
.final-cta .microcopy .dot { color: oklch(1 0 0 / 0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--ink-faint); padding: 56px 0 40px; }
.site-footer .wrap { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.site-footer .brand .mark { color: #fff; }
.site-footer .brand .logo-glyph { background: var(--bg); color: var(--ink); }
.site-footer .brand .by { color: #7A756D; }
.footer-meta { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.9; text-align: right; }
.footer-meta a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.08);
  margin-top: 36px; padding-top: 24px;
  font-family: var(--font-mono); font-size: 11.5px; color: #6B6760;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .live-pill .pulse::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-y: 84px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: none; }
  .value .wrap, .offer .wrap, .faq .wrap { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid, .pillars, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .pain-grid, .pillars, .benefit-grid, .social-grid { grid-template-columns: 1fr; }
  .benefit-grid { gap: 0; }
  .header-cta .btn span { display: none; }
  .guarantee .wrap { grid-template-columns: 1fr; }
  .value-body .punch { padding-left: 16px; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
}
