/* ─────────────────────────────────────────────────────────────
   Peach marketing-web — pcospal.com structure, Peach identity
   Sits on top of colors_and_type.css.
   TYPE: marketing chrome uses Inter (matching pcospal.com's Framer default).
   Newsreader italic is preserved inside the phone mocks since those copy
   the real iOS app's typography.
   ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Override the global tokens locally — marketing chrome is sans throughout. */
:root {
  --mkt-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--mkt-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01', 'ss03'; /* Inter stylistic sets — slightly rounder a, j */
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  box-sizing: border-box;
}

/* ── NAV ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  padding: 18px 0;
  background: rgba(255, 246, 241, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: 22px; letter-spacing: -0.6px; color: var(--ink);
}
.nav-brand img { width: 32px; height: 32px; border-radius: 9px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--mkt-sans); font-size: 15px; font-weight: 500; color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }

/* Pill button system */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-family: var(--mkt-sans); font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer; text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.pill:active { opacity: 0.86; transform: translateY(0.5px); }
.pill-dark { background: var(--ink); color: var(--bg); }
.pill-peach { background: var(--primary); color: #fff; }
.pill-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-pill); }
.pill-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.pill-lg { padding: 16px 30px; font-size: 16px; }
.pill svg { display: block; }

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom, var(--warm-grad-top) 0%, var(--bg) 75%);
  padding: 72px 0 70px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 50px; align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-eyebrow {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.02; letter-spacing: -2.4px; color: var(--ink);
  margin: 0 0 26px; max-width: 100%;
  overflow-wrap: break-word;
}
.hero-title em { font-style: normal; font-weight: 700; color: var(--primary-deep); }
.hero-sub {
  font-family: var(--mkt-sans); font-weight: 400;
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 500px; margin: 0 0 32px; letter-spacing: -0.005em;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff; padding: 12px 20px; border-radius: 14px;
  font-family: var(--font-body);
}
.app-store-btn small {
  display: block; font-size: 10px; line-height: 1; color: rgba(255,255,255,0.7);
  margin-bottom: 3px;
}
.app-store-btn b { font-family: var(--mkt-sans); font-size: 18px; font-weight: 600; line-height: 1; letter-spacing: -0.3px; }

/* hero visual — mascot + floating phones */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 540px;
  margin-left: auto;
}
.hero-mascot-bg {
  position: absolute; inset: 0;
}
.hero-mascot-bg::before {
  content: ''; position: absolute; inset: 4%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244, 160, 160, 0.45), rgba(244, 160, 160, 0) 72%);
}
.hero-mascot-img {
  position: absolute; top: 6%; right: -2%;
  width: 72%; height: 88%;
  object-fit: contain;
  z-index: 2;
}
.float-card {
  position: absolute; background: #fff; border-radius: 22px;
  padding: 14px 16px; box-shadow: 0 18px 40px rgba(90,53,48,0.18);
  font-family: var(--font-body); display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--line);
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.float-card .lbl { font-family: var(--mkt-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.float-card .val { font-family: var(--mkt-sans); font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.4px; }
.float-1 { top: 7%;   left: -8%;  transform: rotate(-3deg); z-index: 3; }
.float-2 { bottom: 18%; right: -6%; transform: rotate(3deg);  z-index: 3; }

/* ── HERO PHONE — empty placeholder for a real app screenshot ──────── */
.hero-phone {
  position: absolute; top: 4%; left: -4%;
  width: 46%; aspect-ratio: 9 / 19;
  background: var(--bg-2); border-radius: 22px; padding: 0;
  transform: rotate(-5deg);
  z-index: 1; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
  border: 0; box-shadow: none;
}
.hero-phone-empty::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1.5px dashed var(--ink-3);
  border-radius: 16px; opacity: 0.45;
  pointer-events: none;
}
.hero-phone .ps-empty-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; padding: 18px; color: var(--ink-3);
  position: relative; z-index: 2;
}
.hero-phone .ps-empty-inner svg { color: var(--ink-3); opacity: 0.5; }
.hero-phone .ps-empty-label {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 13px;
  color: var(--ink); letter-spacing: -0.2px; line-height: 1.3;
}
.hero-phone .ps-empty-sub {
  font-family: var(--mkt-sans); font-weight: 500; font-size: 11px;
  color: var(--ink-3); line-height: 1.4;
}

/* ── FEATURE MARQUEE ───────────────────────────────────────────────── */
.marquee {
  background: var(--bg-2); border-top: 1px solid rgba(242,217,204,0.7);
  border-bottom: 1px solid rgba(242,217,204,0.7);
  padding: 18px 0; overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg-2), transparent); }
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: peachMarquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: 24px; color: var(--ink); letter-spacing: -0.6px;
  display: flex; align-items: center; gap: 48px;
}
.marquee-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--primary);
}
@keyframes peachMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-eyebrow {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--primary-deep);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05; letter-spacing: -1.8px; color: var(--ink);
  margin: 0 0 18px; max-width: 800px;
}
.section-title em { font-style: normal; font-weight: 700; color: var(--primary-deep); }
.section-sub {
  font-family: var(--mkt-sans); font-weight: 400;
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  max-width: 640px; margin: 0; letter-spacing: -0.005em;
}

/* ── PAIN CARDS — "If this sounds familiar" ────────────────────────── */
.familiar {
  background: var(--bg); padding: 100px 0;
}
.familiar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 50px;
}
.pain-card {
  background: var(--surface); border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.pain-art {
  aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pain-art img {
  width: 70%; height: 70%; object-fit: contain; position: relative; z-index: 1;
}
.pain-art::before {
  content: ''; position: absolute; inset: 0;
}
.pain-art.tone-blush::before { background: linear-gradient(135deg, #FFE5D5, #FFC7B8); }
.pain-art.tone-peach::before { background: linear-gradient(135deg, #FFC7B8, #F4A0A0); }
.pain-art.tone-cream::before { background: linear-gradient(135deg, #FAE8DC, #FFE5D5); }
.pain-art.tone-deep::before  { background: linear-gradient(135deg, #F4A0A0, #C7655B); }
.pain-art.tone-leaf::before  { background: linear-gradient(135deg, #FFE5D5, #A4C58F); }
.pain-art.tone-warm::before  { background: linear-gradient(135deg, #FFC7B8, #E89A53); }
.pain-body {
  padding: 22px 22px 26px;
}
.pain-card h3 {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.8px;
  color: var(--ink); margin: 0 0 10px;
}
.pain-card h3 em { font-style: normal; font-weight: 700; color: var(--primary-deep); }
.pain-card p {
  font-family: var(--mkt-sans); font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0;
}

/* ── MYTH VS REALITY ───────────────────────────────────────────────── */
.myth {
  background: var(--bg-2); padding: 100px 0;
}
.myth-table {
  margin-top: 50px;
  background: var(--surface); border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.myth-row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.myth-row:last-child { border-bottom: 0; }
.myth-row.head {
  background: var(--bg);
  font-family: var(--mkt-sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-3);
}
.myth-cell {
  padding: 22px 26px;
  font-family: var(--mkt-sans); font-weight: 600; font-size: 19px;
  letter-spacing: -0.5px; color: var(--ink); line-height: 1.35;
  display: flex; align-items: center;
}
.myth-cell.myth-text { color: var(--ink-3); font-weight: 500; }
.myth-cell.myth-text em { font-style: normal; font-weight: 600; }
.myth-divider {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: var(--mkt-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.6px; text-transform: uppercase;
  background: var(--bg);
  position: relative;
}
.myth-divider svg { width: 18px; height: 18px; color: var(--primary-deep); }
.myth-row.head .myth-cell { font-family: var(--mkt-sans); font-size: 12px; letter-spacing: 0.6px; color: var(--ink-3); font-weight: 600; }

/* ── HOW IT WORKS — 3 phone steps ──────────────────────────────────── */
.how { background: var(--bg); padding: 100px 0; }
.how-step {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
  margin-top: 80px;
}
.how-step:nth-child(even) { grid-template-columns: 1.1fr 1fr; direction: rtl; }
.how-step:nth-child(even) > * { direction: ltr; }
.how-step-num {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--primary-deep); margin-bottom: 12px;
}
.how-step h3 {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: clamp(32px, 3.8vw, 46px); line-height: 1.05; letter-spacing: -1.4px;
  color: var(--ink); margin: 0 0 20px;
}
.how-step h3 em { font-style: normal; font-weight: 700; color: var(--primary-deep); }
.how-step p {
  font-family: var(--mkt-sans); font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 18px;
  max-width: 480px;
}
.how-feats {
  display: flex; flex-direction: column; gap: 10px; margin-top: 18px;
  max-width: 460px;
}
.how-feat {
  background: var(--surface); border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-card);
  font-family: var(--mkt-sans); font-weight: 500; font-size: 15px; color: var(--ink);
  letter-spacing: -0.005em;
}
.how-feat svg { color: var(--primary-deep); flex: none; }
.how-phone-wrap {
  position: relative; aspect-ratio: 1 / 1; max-width: 540px;
}
.how-phone-wrap::before {
  content: ''; position: absolute; inset: 4%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244,160,160,0.30), rgba(244,160,160,0) 70%);
}
.how-phone {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  height: 88%; width: auto; aspect-ratio: 9 / 19;
  background: transparent; border-radius: 22px; overflow: hidden;
  border: 0; box-shadow: none;
  max-width: 90%;
}
.how-step:nth-child(odd) .how-phone { transform: translate(-50%, -50%); }
.how-step:nth-child(even) .how-phone { transform: translate(-50%, -50%); }
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, var(--warm-grad-top) 0%, var(--bg) 40%);
  display: flex; flex-direction: column;
  padding: 22px 18px 16px; text-align: center; box-sizing: border-box;
}
.phone-screen .island {
  width: 60px; height: 18px; border-radius: 999px;
  background: #000; margin: 4px auto 22px;
}
.phone-screen .eyebrow {
  font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 8px;
}
.phone-screen .h {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 24px; line-height: 1; letter-spacing: -0.6px;
  color: var(--ink); margin-bottom: 6px;
}
.phone-screen .sub { font-size: 11px; color: var(--ink-2); line-height: 1.4; margin-bottom: 18px; }
.phone-screen .pill-w {
  background: #fff; box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  border-radius: 999px; padding: 8px 16px; font-size: 11px; font-weight: 600; color: var(--ink);
  display: inline-block; margin: 0 auto;
}
.phone-screen .card {
  background: #fff; border-radius: 16px; padding: 10px 12px; margin-top: auto;
  box-shadow: 0 4px 12px rgba(90,53,48,0.08); text-align: left;
}
.phone-screen .card .h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 14px;
  color: var(--ink); line-height: 1.2; margin-bottom: 3px;
}
.phone-screen .card .p2 { font-size: 9px; color: var(--ink-2); line-height: 1.4; }
.phone-screen .chip-row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.phone-screen .chip-s {
  font-size: 9px; padding: 4px 8px; border-radius: 999px; background: var(--bg-2); color: var(--ink);
  font-weight: 500;
}
.phone-screen .chip-s.on { background: var(--ink); color: var(--bg); }

/* Empty phone-screen — placeholder for a real app capture (with frame) the user will drop in. */
.phone-screen-empty {
  background: var(--bg-2);
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 22px;
}
.phone-screen-empty::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1.5px dashed var(--ink-3);
  border-radius: 16px;
  opacity: 0.45;
  pointer-events: none;
}
.phone-screen-empty .ps-empty-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 24px; color: var(--ink-3);
}
.phone-screen-empty .ps-empty-inner svg { color: var(--ink-3); opacity: 0.5; }
.phone-screen-empty .ps-empty-label {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 14px;
  color: var(--ink); letter-spacing: -0.2px; line-height: 1.3;
}
.phone-screen-empty .ps-empty-sub {
  font-family: var(--mkt-sans); font-weight: 500; font-size: 12px;
  color: var(--ink-3); line-height: 1.4;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(135deg, #5A3530 0%, #C7655B 100%); color: #fff;
  padding: 100px 0; overflow: hidden; position: relative;
}
.testimonials .section-eyebrow { color: var(--primary); }
.testimonials .section-title { color: #fff; }
.testimonials .section-title em { color: var(--primary); }
.testimonials .section-sub { color: rgba(255,246,241,0.75); }
.test-stars {
  display: inline-flex; gap: 2px; align-items: center; margin-top: 30px; margin-bottom: 12px;
  color: var(--primary);
}
.test-stars b { color: #fff; font-family: var(--mkt-sans); font-weight: 700; margin-left: 10px; font-size: 16px; }
.test-stars span { color: rgba(255,246,241,0.7); font-family: var(--mkt-sans); font-size: 14px; margin-left: 8px; }
.test-track {
  display: flex; gap: 22px; margin-top: 50px;
  animation: peachMarquee 50s linear infinite;
  width: max-content;
}
.test-card {
  width: 360px; flex: none; padding: 28px;
  background: rgba(255,246,241,0.08);
  border: 1px solid rgba(255,246,241,0.18);
  border-radius: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.test-card .qmark {
  font-family: 'Georgia', serif; font-weight: 700; font-size: 56px;
  line-height: 0.6; color: var(--primary);
  margin-bottom: -22px;
}
.test-card blockquote {
  margin: 0; font-family: var(--mkt-sans);
  font-weight: 500; font-size: 18px; line-height: 1.45; letter-spacing: -0.3px;
  color: #fff;
}
.test-card blockquote em { font-style: normal; font-weight: 700; color: var(--primary); }
.test-meta {
  display: flex; gap: 12px; align-items: center; margin-top: auto;
  padding-top: 12px; border-top: 1px solid rgba(255,246,241,0.16);
}
.test-handle {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 14px; color: #fff;
}
.test-source { font-family: var(--mkt-sans); font-size: 12px; color: rgba(255,246,241,0.65); margin-top: 2px; }
.test-avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #FFC7B8, #F4A0A0);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mkt-sans); font-weight: 700; color: #fff; flex: none; font-size: 14px;
}

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); padding: 100px 0; }
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-list details {
  border-bottom: 1px solid var(--line); padding: 22px 0;
}
.faq-list summary {
  list-style: none; cursor: pointer;
  font-family: var(--mkt-sans); font-weight: 700; font-size: 22px;
  letter-spacing: -0.6px; color: var(--ink); line-height: 1.3;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg-2); color: var(--ink);
  font-family: var(--mkt-sans); font-weight: 400; font-size: 22px;
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: all var(--dur-base) var(--ease-out);
}
.faq-list details[open] summary::after {
  content: '–'; background: var(--primary); color: #fff;
}
.faq-list details p {
  margin: 14px 0 0; font-family: var(--mkt-sans);
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
  max-width: 640px;
}
.faq-list details p em { font-style: normal; font-weight: 600; color: var(--ink); }

/* ── FINAL CTA ─────────────────────────────────────────────────────── */
.final-cta {
  padding: 110px 0; position: relative; overflow: hidden;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--warm-grad-top) 100%);
}
.final-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.final-cta h2 {
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: clamp(44px, 6vw, 72px); line-height: 1; letter-spacing: -2.4px;
  color: var(--ink); margin: 0 0 22px;
}
.final-cta h2 em { font-style: normal; font-weight: 700; color: var(--primary-deep); }
.final-cta-quiz {
  font-family: var(--mkt-sans); font-weight: 600;
  font-size: 19px; color: var(--ink); margin-bottom: 18px; letter-spacing: -0.4px;
}
.final-cta p {
  font-family: var(--mkt-sans);
  font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 480px;
  margin: 0 0 26px;
}
.final-mascot-wrap {
  position: relative; aspect-ratio: 1 / 1; max-width: 460px; justify-self: end;
}
.final-mascot-wrap::before {
  content: ''; position: absolute; inset: 5%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244,160,160,0.45), rgba(244,160,160,0) 70%);
}
.final-mascot-wrap img { position: relative; width: 100%; height: 100%; object-fit: contain; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(255,246,241,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  font-family: var(--mkt-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.6px; text-transform: uppercase;
  color: rgba(255,246,241,0.55); margin: 0 0 14px;
}
.footer a { display: block; font-family: var(--mkt-sans); font-size: 14px; color: rgba(255,246,241,0.78); margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer-brand {
  display: flex; gap: 12px; align-items: center; margin-bottom: 16px;
  font-family: var(--mkt-sans); font-weight: 700;
  font-size: 26px; color: var(--bg); letter-spacing: -0.6px;
}
.footer-brand img { width: 38px; height: 38px; border-radius: 9px; }
.footer-tag { font-family: var(--mkt-sans); font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,246,241,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--mkt-sans); font-size: 12px; color: rgba(255,246,241,0.5);
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid, .familiar-grid, .footer-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-step { grid-template-columns: 1fr; gap: 28px; }
  .how-step:nth-child(even) { grid-template-columns: 1fr; }
  .section, .familiar, .myth, .how, .testimonials, .faq-section, .final-cta { padding: 70px 0; }
  .nav-links { display: none; }
  .myth-cell { font-size: 18px; padding: 16px 18px; }
  .myth-row { grid-template-columns: 1fr 50px 1fr; }
}
