/* QR Now — landing page styles */

:root{
  --bg: #F7F6F3;
  --bg-alt: #EFEDE8;
  --dark: #101014;
  --dark-2: #0D0D0F;
  --ink: #0D0D0F;
  --text: #55555C;
  --text-muted: #70707A;
  --border: #E5E3DD;
  --blue: #1F3BFF;
  --blue-soft: #5485E5;
  --blue-tint: #E8EBFF;
  --green: #12855A;
  --orange: #C2410C;
  --white: #FFFFFF;

  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  --container: 1280px;
  --section-pad-y: 110px;
  --section-pad-x: 64px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{ overflow-x: hidden; width: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}
.section{ padding: var(--section-pad-y) 0; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow.on-dark{ color: #fff; opacity: .55; }

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.08;
  margin: 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  padding: 0 34px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary{
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(31,59,255,0.4);
}
.btn-ghost{
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 17px;
}
.btn-ghost svg{ flex-shrink: 0; }
.btn-dark-ghost{
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn svg{ flex-shrink: 0; }
.btn-sm{ height: 48px; padding: 0 22px; font-size: 15.5px; }

/* ---------- Nav ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo{ display: flex; align-items: center; gap: 11px; }
.logo img{ width: 36px; height: 36px; border-radius: 10px; }
.wordmark{
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
}
.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg{ width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero{
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 84px 0 96px;
}
.hero-copy{ flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 15px;
}
.badge .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.badge span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--text);
}
.hero h1{ font-size: 58px; letter-spacing: -2.4px; line-height: 1.03; }
.hero h1 .accent{ color: var(--blue); display: block; }
.hero-sub{
  font-size: 19.5px;
  line-height: 1.55;
  color: var(--text);
  max-width: 540px;
}
.cta-row{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.micro{ font-size: 14.5px; color: var(--text-muted); }

.hero-visual{ position: relative; width: 610px; height: 700px; flex-shrink: 0; }
.hero-glow{
  position: absolute;
  top: 70px; left: 5px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--blue-soft) 0%, rgba(84,133,229,0) 100%);
  opacity: .5;
  z-index: 0;
}
.phone{
  position: absolute;
  background: var(--dark-2);
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 26px 60px -14px rgba(13,13,15,0.4);
}
.phone img{ border-radius: 38px; display: block; width: 100%; height: 100%; object-fit: cover; }
.phone-home{ top: 78px; left: 0; width: 278px; z-index: 1; }
.phone-home img{ height: 566px; }
.phone-result{ top: 0; left: 296px; width: 314px; z-index: 2; }
.phone-result img{ height: 645px; }

/* ---------- Problem ---------- */
.problem{ background: var(--dark); color: #fff; }
.problem .inner{ display: flex; align-items: center; gap: 90px; }
.problem-copy{ flex: 1; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.problem h2{ font-size: 50px; letter-spacing: -2px; line-height: 1.08; color: #fff; }
.problem h2 .accent{ color: var(--blue-soft); display: block; }
.problem-body{ font-size: 19px; line-height: 1.58; opacity: .7; }
.problem-closing{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-soft);
}
.pain-steps{ display: flex; flex-direction: column; gap: 9px; width: 500px; max-width: 100%; flex-shrink: 0; }
.pain-step{
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 15px;
  padding: 15px 20px;
}
.pain-step .num{ font-family: var(--font-mono); font-size: 12.5px; opacity: .4; }
.pain-step .txt{ flex: 1; font-size: 17px; font-weight: 500; opacity: .85; }
.pain-step svg{ opacity: .35; flex-shrink: 0; }
.pain-step.warn{
  border: 1px solid var(--orange);
  background: rgba(255,255,255,0.06);
}
.pain-step.warn .num{ color: var(--orange); opacity: .45; }
.pain-step.warn .txt{ color: var(--orange); font-weight: 600; opacity: 1; }
.pain-step.warn svg{ opacity: 1; }

/* ---------- Section heads ---------- */
.section-head{
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.section-head h2{ font-size: 50px; letter-spacing: -2px; line-height: 1.08; }
.section-head h2 .accent{ color: var(--blue); }
.section-head p{ font-size: 19px; line-height: 1.5; color: var(--text); margin: 0; }

/* ---------- Solution ---------- */
.solution{ display: flex; flex-direction: column; align-items: center; gap: 56px; }
.steps{ display: flex; gap: 20px; width: 100%; }
.step-card{
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.step-top{ display: flex; align-items: center; justify-content: space-between; }
.step-badge{
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.step-num{ font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: .5px; color: var(--text-muted); }
.step-card h3{ font-size: 28px; letter-spacing: -0.8px; }
.step-card p{ margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--text); }
.solution-closing{ font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-muted); }

/* ---------- Use cases ---------- */
.use-cases{ background: var(--bg-alt); }
.use-cases-head{
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px;
}
.use-cases-head h2{ font-size: 50px; letter-spacing: -2px; line-height: 1.08; }
.use-cases-head p{ max-width: 380px; text-align: right; color: var(--text); font-size: 18px; line-height: 1.55; margin: 0; flex-shrink: 0; }
.use-case-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.use-case-card{
  background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.use-case-card .icon-badge{
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--blue-tint); display: flex; align-items: center; justify-content: center;
}
.use-case-card h3{ font-size: 22px; letter-spacing: -0.5px; font-weight: 400; }
.use-case-card p{ margin: 0; font-size: 16px; line-height: 1.5; color: var(--text); }
.use-case-card .flow{ font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .4px; color: var(--blue); }

/* ---------- Before / After ---------- */
.before-after .section-head{ max-width: 820px; }
.panels{ display: flex; gap: 24px; margin-top: 48px; }
.panel{ flex: 1; border-radius: 28px; padding: 36px; display: flex; flex-direction: column; gap: 22px; }
.panel.without{ background: var(--bg-alt); }
.panel.with{ background: var(--dark); color: #fff; }
.panel-head{ display: flex; align-items: center; gap: 11px; }
.panel-head h3{ font-size: 22px; letter-spacing: -0.5px; font-weight: 400; }
.panel.without h3{ color: var(--text); }
.panel.with h3{ color: #fff; }
.plain-steps{ display: flex; flex-direction: column; width: 100%; }
.plain-step{
  display: flex; align-items: center; gap: 14px; padding: 11px 0; width: 100%;
}
.plain-step .dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.plain-step .txt{ flex: 1; font-size: 17px; font-weight: 500; color: var(--text); }
.plain-step .step-label{ font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .8px; color: var(--text-muted); }
.win-steps{ display: flex; flex-direction: column; gap: 10px; width: 100%; }
.win-step{
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px; padding: 15px 20px;
}
.win-step svg{ flex-shrink: 0; }
.win-step .txt{ flex: 1; font-size: 17px; font-weight: 600; color: #fff; }
.win-step .step-label{ font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .8px; color: #fff; opacity: .45; }
.win-step.final{ background: var(--blue); }
.win-step.final .txt{ font-weight: 700; letter-spacing: .6px; }
.win-step.final .step-label{ opacity: .8; }
.panel-summary{ font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.panel.without .panel-summary{ color: var(--text-muted); }
.panel.with .panel-summary{ color: var(--blue-soft); }

/* ---------- Story sections (PDF / Web) ---------- */
.story{ display: flex; align-items: center; gap: 90px; }
.story.reverse{ flex-direction: row-reverse; }
.story-copy{ flex: 1; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.story h2{ font-size: 50px; letter-spacing: -2px; line-height: 1.08; }
.story h2 .accent{ color: var(--blue); display: block; }
.story-body{ font-size: 19px; line-height: 1.58; color: var(--text); }
.story-closing{ font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.pro-chip{
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dark); border-radius: 12px; padding: 9px 14px;
}
.pro-chip .pro{ font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 1px; color: var(--blue-soft); }
.pro-chip .txt{ font-size: 14px; font-weight: 500; color: #fff; }

.pdf-mock{
  background: #fff; border: 1px solid var(--border); border-radius: 28px;
  box-shadow: 0 18px 44px -12px rgba(13,13,15,0.12);
  padding: 28px; width: 520px; max-width: 100%; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.pdf-mock .file-row{ display: flex; align-items: center; gap: 13px; }
.file-badge{ width: 44px; height: 44px; border-radius: 13px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pdf-mock .file-name{ font-size: 16px; color: var(--ink); }
.pdf-mock .file-meta{ font-size: 13px; color: var(--text-muted); }
.divider{ height: 1px; background: var(--border); width: 100%; border: none; margin: 0; }
.found-line{ display: flex; align-items: center; gap: 7px; }
.found-line .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.found-line span{ font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 1.4px; color: var(--green); }
.result-list{ display: flex; flex-direction: column; gap: 10px; }
.result-row{
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 13px 14px;
}
.result-row .icon-badge-sm{ width: 40px; height: 40px; border-radius: 13px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.result-row .meta{ font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .8px; color: var(--text-muted); }
.result-row .dest{ font-size: 15px; font-weight: 600; color: var(--ink); }
.result-row .text{ flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.open-pill{ background: var(--blue-tint); color: var(--blue); border-radius: 12px; padding: 8px 13px; font-size: 13px; flex-shrink: 0; }

.browser-mock{
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  box-shadow: 0 18px 44px -12px rgba(13,13,15,0.12);
  overflow: hidden; width: 560px; max-width: 100%; flex-shrink: 0;
}
.browser-chrome{
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-alt); border-bottom: 1px solid var(--border);
  padding: 13px 16px;
}
.browser-dots{ display: flex; gap: 7px; }
.browser-dots span{ width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.browser-url{ flex: 1; display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 9px; padding: 7px 12px; min-width: 0; }
.browser-url span{ font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-body{ display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 44px 40px 48px; text-align: center; }
.browser-body .kicker{ font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 1.4px; color: var(--text-muted); }
.browser-body h3{ font-size: 28px; letter-spacing: -0.8px; line-height: 1.15; font-weight: 400; }
.qr-box{
  width: 168px; height: 168px; border-radius: 18px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.qr-box svg{ width: 108px; height: 108px; }
.browser-body .note{ font-size: 14.5px; color: var(--text-muted); }
.with-what{
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; border-radius: 14px; padding: 10px 16px;
  transform: rotate(2deg);
  font-size: 14px; font-weight: 600;
}

/* ---------- Privacy ---------- */
.privacy{ background: var(--dark); color: #fff; }
.privacy .section-head{ max-width: 800px; }
.privacy .section-head h2{ color: #fff; }
.privacy .section-head h2 .accent{ color: var(--blue-soft); }
.privacy .section-head p{ color: #fff; opacity: .7; }
.privacy-points{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.privacy-point{
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.privacy-point .txt{ font-size: 15.5px; font-weight: 500; line-height: 1.4; opacity: .9; }
.disclaimer{ font-size: 13.5px; opacity: .45; margin-top: 30px; text-align: center; }

/* ---------- Pricing ---------- */
.pricing .section-head{ max-width: 820px; }
.plans{ display: flex; align-items: center; gap: 24px; margin-top: 52px; }
.plan-phone{
  flex-shrink: 0; width: 286px; background: var(--dark-2); border-radius: 46px; padding: 9px;
  box-shadow: 0 26px 60px -14px rgba(13,13,15,0.4);
}
.plan-phone img{ border-radius: 38px; width: 100%; display: block; }
.plan-card{
  flex: 1; border-radius: 28px; padding: 34px;
  display: flex; flex-direction: column; gap: 22px;
}
.plan-card.free{ background: #fff; border: 1px solid var(--border); }
.plan-card.pro{ background: var(--dark); color: #fff; box-shadow: 0 20px 50px -16px rgba(13,13,15,0.4); }
.plan-top{ display: flex; flex-direction: column; gap: 8px; }
.plan-name-row{ display: flex; align-items: center; justify-content: space-between; }
.plan-name{ font-family: var(--font-display); font-size: 24px; letter-spacing: -0.6px; }
.plan-price-row{ display: flex; align-items: flex-end; gap: 10px; }
.plan-price{ font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: -1.6px; }
.plan-term{ font-size: 16px; opacity: .6; }
.plan-note{ font-size: 15px; color: var(--text-muted); }
.plan-card.pro .plan-note{ color: #fff; opacity: .6; }
.plan-features{ display: flex; flex-direction: column; gap: 13px; }
.plan-feature{ display: flex; align-items: center; gap: 12px; }
.plan-feature .tick{ width: 24px; height: 24px; border-radius: 12px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-card.pro .plan-feature .tick{ background: rgba(255,255,255,0.1); }
.plan-feature span{ font-size: 15.5px; font-weight: 500; color: var(--text); }
.plan-card.pro .plan-feature span{ color: #fff; }
.plan-cta{
  height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
}
.plan-cta.free{ background: #fff; border: 1px solid var(--border); color: var(--ink); }
.plan-cta.pro{ background: var(--blue); color: #fff; box-shadow: 0 8px 22px -6px rgba(31,59,255,0.4); font-weight: 400; letter-spacing: -0.2px;}
.plan-reassurance{ font-size: 13.5px; opacity: .55; text-align: center; }

/* ---------- Value ---------- */
.value{ background: var(--blue); color: #fff; text-align: center; padding: 104px 0; }
.value .price-line{ font-family: var(--font-display); font-size: 68px; font-weight: 700; letter-spacing: -2.8px; }
.value .statement{ font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.6px; line-height: 1.4; opacity: .85; max-width: 900px; margin: 22px auto 0; }
.value .kicker{ font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 1.4px; opacity: .7; margin-top: 22px; }

/* ---------- Final CTA ---------- */
.final-cta{ background: var(--dark); color: #fff; padding: 104px 0; }
.final-cta .container{ display: flex; align-items: center; gap: 80px; }
.final-copy{ flex: 1; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.final-copy h2{ font-size: 54px; letter-spacing: -2.2px; line-height: 1.06; }
.final-copy h2 .accent{ color: var(--blue-soft); display: block; }
.final-flow{ font-family: var(--font-mono); font-size: 15px; font-weight: 500; letter-spacing: .6px; opacity: .8; }
.final-secondary{ font-size: 19px; opacity: .6; }
.final-buttons{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.final-micro{ font-size: 14.5px; opacity: .5; }
.final-phone{
  flex-shrink: 0; width: 300px; background: var(--dark-2); border-radius: 46px; padding: 9px;
  box-shadow: 0 26px 60px -14px rgba(13,13,15,0.4);
}
.final-phone img{ border-radius: 38px; width: 100%; display: block; }

/* ---------- Footer ---------- */
.footer{ padding: 52px 0 48px; }
.footer-top{ display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand{ display: flex; flex-direction: column; gap: 14px; }
.footer-brand-line{ font-size: 16px; color: var(--text); }
.footer-domain{ font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--blue); }
.footer-links{ display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-links a{ font-size: 15px; font-weight: 500; color: var(--text); }
.footer-bottom{ display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.footer-bottom{ padding-top: 36px; border-top: 1px solid var(--border); }
.footer-bottom span{ font-size: 13.5px; color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px){
  :root{ --section-pad-x: 40px; --section-pad-y: 88px; }
  .hero{ gap: 40px; }
  .hero h1{ font-size: 46px; }
  .hero-visual{ width: 460px; height: 560px; }
  .phone-home{ width: 220px; top: 62px; }
  .phone-home img{ height: 450px; }
  .phone-result{ width: 250px; left: 220px; top: 0; }
  .phone-result img{ height: 512px; }
  .section-head h2, .problem h2, .story h2, .use-cases-head h2{ font-size: 40px; }
  .final-copy h2{ font-size: 42px; }
  .value .price-line{ font-size: 54px; }
  .value .statement{ font-size: 23px; }
  .privacy-points{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px){
  .nav-links{
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px var(--section-pad-x) 20px;
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child{ border-bottom: none; }
  .nav-toggle{ display: inline-flex; }
  .hero{ flex-direction: column; padding-top: 56px; padding-bottom: 56px; }
  .hero-copy{ align-items: flex-start; width: 100%; }
  .hero-sub{ max-width: none; }
  .hero-visual{ width: 100%; max-width: 460px; margin: 0 auto; }
  .problem .inner{ flex-direction: column; gap: 48px; }
  .pain-steps{ width: 100%; }
  .steps{ flex-direction: column; }
  .use-case-grid{ grid-template-columns: repeat(2, 1fr); }
  .use-cases-head{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .use-cases-head p{ text-align: left; max-width: none; }
  .panels{ flex-direction: column; }
  .story, .story.reverse{ flex-direction: column; }
  .pdf-mock, .browser-mock{ width: 100%; }
  .privacy-points{ grid-template-columns: repeat(2, 1fr); }
  .plans{ flex-direction: column; }
  .plan-phone{ width: 240px; }
  .final-cta .container{ flex-direction: column-reverse; gap: 48px; text-align: left; }
  .final-phone{ width: 220px; margin: 0 auto; }
  .footer-top{ flex-direction: column; gap: 24px; }
}

@media (max-width: 600px){
  :root{ --section-pad-x: 22px; --section-pad-y: 64px; }
  .nav{ height: 72px; }
  .nav > .btn{ display: none; }
  .wordmark{ font-size: 18px; }
  .hero h1{ font-size: 34px; letter-spacing: -1.4px; }
  .hero-sub{ font-size: 17px; }
  .btn{ height: 56px; padding: 0 24px; font-size: 16px; width: 100%; }
  .btn-ghost{ font-size: 15px; }
  .cta-row{ flex-direction: column; align-items: stretch; width: 100%; }
  .section-head h2, .problem h2, .story h2, .use-cases-head h2{ font-size: 30px; line-height: 1.15; }
  .section-head p{ font-size: 16px; }
  .use-case-grid{ grid-template-columns: 1fr; }
  .privacy-points{ grid-template-columns: 1fr; }
  .final-copy h2{ font-size: 32px; }
  .final-buttons{ flex-direction: column; align-items: stretch; width: 100%; }
  .final-buttons .btn{ width: 100%; }
  .value .price-line{ font-size: 40px; }
  .value .statement{ font-size: 19px; }
  .plan-price{ font-size: 34px; }
  .hero-visual{ max-width: 340px; height: 420px; }
  .phone-home{ width: 165px; top: 46px; left: 0; }
  .phone-home img{ height: 336px; }
  .phone-result{ width: 185px; left: 150px; top: 0; }
  .phone-result img{ height: 380px; }
  .hero-glow{ width: 340px; height: 340px; top: 40px; left: 0; }
}
