/* ===== Tokens ===== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #f6f5fb;
  --text: #0a0826;        /* near-black with hint of indigo */
  --muted: #5b5970;
  --indigo: #0d008e;       /* primary brand */
  --indigo-deep: #07005c;
  --indigo-bright: #1a10c8;
  --mint: #50ffb0;
  --mint-text: #003822;    /* legible on mint */
  --mint-deep: #2cdf90;
  --warn: #ff6b6b;
  --border: #e6e4f0;
  --border-strong: #c9c5dc;

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(13, 0, 142, 0.05);
  --shadow-md: 0 8px 28px rgba(13, 0, 142, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 0, 142, 0.16);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--mint); color: var(--mint-text); }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 128px 0;
}
@media (max-width: 800px) { section { padding: 80px 0; } }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(13, 0, 142, 0.06);
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 19px;
}
.brand img {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--indigo);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--indigo);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 150ms ease, transform 120ms ease;
}
.header-cta:hover { background: var(--indigo-bright); transform: translateY(-1px); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.4vw, 84px); font-weight: 800; letter-spacing: -0.045em; hyphens: manual; -webkit-hyphens: manual; overflow-wrap: break-word; }
h2 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; letter-spacing: -0.04em; }
h3 { font-size: clamp(22px, 2.2vw, 26px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.18; }
h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }

p { margin: 0; color: var(--muted); line-height: 1.6; }
.lede { font-size: clamp(18px, 1.5vw, 21px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(13, 0, 142, 0.06);
  margin-bottom: 28px;
  white-space: nowrap;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--mint-deep);
  border-radius: 50%;
}
.section-intro { max-width: 880px; margin: 0 auto 88px; text-align: center; }
.section-intro p { margin-top: 24px; font-size: clamp(17px, 1.4vw, 20px); }

.mint-mark { color: var(--mint); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  border: 0;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 150ms ease, transform 100ms ease, box-shadow 200ms ease;
}
.btn-mint {
  background: var(--mint);
  color: var(--mint-text);
  box-shadow: 0 8px 24px rgba(80, 255, 176, 0.32);
}
.btn-mint:hover { background: var(--mint-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(80, 255, 176, 0.42); }
.btn-mint:active { transform: translateY(0); }
.btn-indigo {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 0, 142, 0.25);
}
.btn-indigo:hover { background: var(--indigo-bright); transform: translateY(-2px); }

/* ===== Hero (full-bleed indigo) ===== */
.hero {
  background: var(--indigo);
  color: #fff;
  padding: 96px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 50% at 80% 20%, rgba(80, 255, 176, 0.10), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(80, 255, 176, 0.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 0;
}
.hero .eyebrow {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.hero h1 { color: #fff; margin-bottom: 32px; max-width: 16ch; line-height: 1.0; }
.hero h1 em {
  font-style: normal;
  color: var(--mint);
  position: relative;
}
.hero .lede {
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: 40px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.hero .lede strong { color: #fff; font-weight: 600; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.trust-line {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin-bottom: 64px;
}
.trust-line .dot { color: rgba(255,255,255,0.35); }

/* ===== Stats strip ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 36px 0 40px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .num em { font-style: normal; color: var(--mint); }
.stat .label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Phone mockup (in hero) ===== */
.phone-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 580px;
  align-self: end;
  margin-bottom: -20px;
}
.phone {
  width: 280px;
  height: 580px;
  border: 2px solid #1a0fb0;
  border-radius: 44px;
  background: #fff;
  padding: 16px 14px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 6px rgba(255,255,255,0.04);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #07005c;
  border-radius: 16px;
}
.phone-screen {
  margin-top: 36px;
  height: calc(100% - 50px);
  border-radius: 26px;
  background: #fff;
  border: 1px solid #eeecf7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone--back  { position: absolute; transform: rotate(-8deg) translate(-110px, 0) scale(0.82); opacity: 0.65; z-index: 1; }
.phone--mid   { position: absolute; transform: rotate(5deg) translate(110px, -16px) scale(0.84); opacity: 0.85; z-index: 2; }
.phone--front { position: relative; z-index: 3; }

/* Phone screen elements */
.scr-title { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.scr-sub { font-size: 10px; color: var(--muted); }

.scr-hero {
  background: var(--indigo);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
}
.scr-hero .h { font-size: 13px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 4px; }
.scr-hero .h em { font-style: normal; color: var(--mint); }
.scr-hero .s { font-size: 9px; opacity: 0.75; line-height: 1.4; }
.scr-pills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}
.scr-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
}
.scr-pill .v { font-size: 13px; font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.scr-pill .l { font-size: 7px; letter-spacing: 0.05em; opacity: 0.7; text-transform: uppercase; margin-top: 4px; }

.scr-input {
  height: 32px;
  border: 1px solid #ece9f7;
  border-radius: 10px;
  background: #fafafd;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  color: var(--muted);
}
.scr-input .val { color: var(--text); font-weight: 700; margin-left: auto; }
.scr-btn {
  margin-top: auto;
  height: 38px;
  background: var(--indigo);
  color: #fff;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.scr-btn.mint { background: var(--mint); color: var(--mint-text); }
.scr-result {
  border: 1px solid #ece9f7;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fafafd;
}
.scr-result .row { display: flex; justify-content: space-between; font-size: 10px; padding: 3px 0; }
.scr-result .row span:first-child { color: var(--muted); }
.scr-result .row span:last-child { color: var(--text); font-weight: 700; }
.scr-result .row.bad span:last-child { color: var(--warn); }
.scr-result .row.good span:last-child { color: var(--indigo); }
.scr-banner {
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 7px;
}
.scr-banner.warn { background: #fff0f0; color: #c53030; }
.scr-banner.mint { background: var(--mint); color: var(--mint-text); }
.scr-banner svg { width: 12px; height: 12px; flex-shrink: 0; }
.scr-letter {
  border: 1px solid #ece9f7;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scr-letter .lh { font-size: 9px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.scr-letter .ln { height: 4px; background: #eeecf7; border-radius: 2px; }
.scr-letter .ln.s { width: 70%; }
.scr-letter .ln.m { width: 90%; }
.scr-letter .ln.xs { width: 40%; }
.scr-letter .sig { margin-top: auto; height: 12px; width: 60px; border-bottom: 1px solid #c9c5dc; }

/* ===== Problem grid ===== */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 40px 36px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.feature:hover {
  border-color: var(--indigo);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--indigo);
  color: var(--mint);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 12px; }
.feature p { font-size: 16px; line-height: 1.6; }

/* ===== How it works (numbered) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  width: 56px; height: 56px;
  background: var(--mint);
  color: var(--mint-text);
  border-radius: 50%;
  margin-bottom: 28px;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 16px; }

/* ===== Pro section (full-bleed indigo) ===== */
.pro-section {
  background: var(--indigo);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 90% 10%, rgba(80, 255, 176, 0.10), transparent 60%);
  pointer-events: none;
}
.pro-section .container { position: relative; }
.pro-section h2, .pro-section h3 { color: #fff; }
.pro-section p { color: rgba(255,255,255,0.82); }
.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--mint-text);
  margin-bottom: 28px;
}
.pro-section h2 { margin-bottom: 24px; max-width: 14ch; }
.pro-section h2 em { font-style: normal; color: var(--mint); }
.pro-section .pro-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 50ch;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.82);
}
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.92);
  font-size: 16.5px;
  line-height: 1.55;
}
.checklist li .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--mint);
  color: var(--mint-text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.checklist li svg { width: 14px; height: 14px; stroke-width: 3; }

/* Letter preview */
.letter {
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 40px 40px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  font-size: 14px;
  position: relative;
  transform: rotate(-1.2deg);
  max-width: 460px;
  margin: 0 auto;
}
.letter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #fff;
  transform: rotate(2.4deg);
  z-index: -1;
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}
.letter-head {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.letter h4 {
  margin: 0 0 22px;
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
}
.letter-addr { margin-bottom: 22px; }
.letter-line { height: 8px; background: #eeecf7; border-radius: 4px; margin-bottom: 8px; }
.letter-line.short { width: 35%; }
.letter-line.med { width: 60%; }
.letter-line.long { width: 92%; }
.letter-para { margin-bottom: 16px; }
.letter-para .letter-line { margin-bottom: 7px; }
.letter-sig { margin-top: 28px; display: flex; flex-direction: column; gap: 4px; }
.letter-sig .sig-name {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: 26px;
  color: var(--indigo);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  opacity: 0.75;
}
.letter-sig .sig-rule { width: 150px; height: 1px; background: var(--border-strong); }
.letter-sig small { font-size: 11px; color: var(--muted); }

/* ===== Download ===== */
.download { text-align: center; }
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-pill);
  margin: 16px auto 0;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.appstore-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(10, 8, 38, 0.28);
}
.appstore-badge svg { width: 38px; height: 38px; }
.appstore-badge .as-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.appstore-badge .as-text .small { font-size: 11px; opacity: 0.78; letter-spacing: 0.03em; }
.appstore-badge .as-text .big { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.trust-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 15px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.trust-row svg { width: 18px; height: 18px; color: var(--indigo); }

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
details.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
details.faq[open] { border-color: var(--indigo); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 28px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--indigo);
  border-bottom: 2px solid var(--indigo);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex-shrink: 0;
  margin-top: -4px;
}
details.faq[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
details.faq .answer {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ===== Footer (deep indigo) ===== */
.site-footer {
  padding: 80px 0 56px;
  background: var(--indigo-deep);
  color: #cfcde2;
}
.site-footer .container { display: grid; gap: 48px; }
.haftung {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: flex-start;
  max-width: 800px;
}
.haftung .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.haftung .icon svg { width: 18px; height: 18px; stroke-width: 2.4; }
.haftung h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.haftung p {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-row .left { color: #fff; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.footer-row .center { display: flex; gap: 28px; }
.footer-row .center a { color: rgba(255,255,255,0.70); font-size: 15px; }
.footer-row .center a:hover { color: var(--mint); }
.footer-row .right { color: rgba(255,255,255,0.75); font-size: 14px; text-align: right; }

/* ===== Sub-page (Impressum / Datenschutz) ===== */
.subpage {
  padding: 80px 0 96px;
  max-width: 820px;
  margin: 0 auto;
}
.subpage h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; letter-spacing: -0.04em; }
.subpage .meta { color: var(--muted); font-size: 14.5px; margin-bottom: 48px; }
.subpage h2 { font-size: 26px; font-weight: 700; margin-top: 48px; margin-bottom: 14px; letter-spacing: -0.025em; }
.subpage h3 { font-size: 19px; margin-top: 32px; margin-bottom: 10px; }
.subpage p, .subpage li { color: var(--text); font-size: 16.5px; line-height: 1.7; }
.subpage ul { padding-left: 22px; }
.subpage li { margin-bottom: 6px; }
.subpage .placeholder {
  color: var(--indigo);
  background: rgba(13, 0, 142, 0.06);
  border: 1px dashed rgba(13, 0, 142, 0.30);
  border-radius: 6px;
  padding: 2px 10px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 500;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--indigo);
  font-size: 14.5px;
  font-weight: 500;
}
.back-link:hover { color: var(--indigo-bright); }

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .hero-grid { gap: 48px; grid-template-columns: 1.15fr 0.85fr; }
  .phone-stack { min-height: 540px; }
  .phone { width: 250px; height: 520px; }
  .phone--back { transform: rotate(-7deg) translate(-92px, 0) scale(0.82); }
  .phone--mid  { transform: rotate(5deg) translate(92px, -14px) scale(0.82); }
}
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero { padding: 72px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; align-items: stretch; }
  .phone-stack { min-height: 520px; margin-bottom: -10px; max-width: 100%; overflow: visible; }
  .three-col, .steps { grid-template-columns: 1fr; gap: 16px; }
  .pro-grid { grid-template-columns: 1fr; gap: 60px; }
  .letter { transform: rotate(-0.5deg); }
  .stats-strip { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .stats-strip .stat { display: flex; align-items: baseline; gap: 16px; }
  .stats-strip .stat .num { margin-bottom: 0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { padding: 56px 0 0; }
  .hero h1 { font-size: clamp(34px, 9vw, 54px); line-height: 1.04; }
  .eyebrow { white-space: normal; }
  .footer-row { grid-template-columns: 1fr; text-align: left; }
  .footer-row .right { text-align: left; }
  .footer-row .center { flex-wrap: wrap; gap: 18px; }
  .btn { width: 100%; }
  .header-cta { display: none; }
  .phone-stack { transform: scale(0.85); transform-origin: center bottom; }
  .trust-row { gap: 18px; font-size: 14px; }
}
