:root {
  --yellow: #FFDD0F;
  --yellow-deep: #F2C800;
  --blue: #003FB8;
  --blue-deep: #002A7C;
  --blue-ink: #0A1438;
  --cream: #FAF8F1;
  --cream-2: #F2EFE3;
  --ink: #0A1024;
  --ink-soft: #444862;
  --line: rgba(10, 16, 36, 0.10);
  --line-strong: rgba(10, 16, 36, 0.22);
  --shadow-soft: 0 1px 2px rgba(10,16,36,.04), 0 8px 24px rgba(10,16,36,.06);
  --shadow-pop: 0 1px 2px rgba(10,16,36,.06), 0 14px 40px rgba(10,16,36,.10);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --maxw: 1280px;
  --maxw-text: 760px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
}
.serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow-on-dark { color: rgba(255,255,255,0.7); }
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 56ch;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container-text {
  width: 100%;
  max-width: var(--maxw-text);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,63,184,0.28); }
.btn-yellow { background: var(--yellow); color: var(--blue-ink); }
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255,221,15,0.45); background: #ffe540; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-dark-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-on-dark-ghost:hover { border-color: #fff; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }

/* Store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0A1024; color: #fff;
  padding: 10px 20px 10px 18px; border-radius: 14px;
  border: 1px solid #0A1024;
  transition: transform .15s ease, box-shadow .15s ease;
  min-width: 178px;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,16,36,.25); }
.store-badge svg { flex-shrink: 0; }
.store-badge .sb-l1 { font-size: 11px; opacity: .8; letter-spacing: .04em; line-height: 1; margin-bottom: 4px; display: block; }
.store-badge .sb-l2 { font-size: 18px; font-weight: 600; line-height: 1; font-family: var(--font-display); letter-spacing: -.01em; }

/* Section spacing */
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* Logo image */
.logo-img { height: 32px; width: auto; display: block; }

/* ===========================================
   NAV
   =========================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(250, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease;
}
body.home .nav {
  background: rgba(255, 221, 15, 0.85);
  border-bottom-color: rgba(10,16,36,0.08);
}
.nav.scrolled { background: rgba(250, 248, 241, 0.92); border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--blue-ink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--blue-ink); opacity: 0.85; transition: opacity .15s ease; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none; border: none;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================
   HERO
   =========================================== */
.hero {
  background: var(--yellow);
  color: var(--blue-ink);
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(40px, 7vw, 80px);
  padding-bottom: clamp(60px, 9vw, 120px);
}
.hero h1 {
  font-size: clamp(48px, 7.2vw, 104px);
  margin: 0 0 24px;
}
.hero h1 .underline-stroke {
  background-image: linear-gradient(transparent 68%, #fff 68%, #fff 92%, transparent 92%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0.06em;
  margin: 0 -0.06em;
}
.hero-lead { font-size: clamp(17px, 1.5vw, 21px); color: rgba(10,20,56,0.78); max-width: 50ch; margin: 0 0 32px; line-height: 1.5; }

/* Hero meta chips */
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.hero-meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  background: rgba(10,20,56,0.07);
  color: var(--blue-ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.hero-meta-chip strong { font-weight: 700; }
.hero-meta-chip svg { color: var(--blue); }

/* Form card */
.signup-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(10,16,36,0.06);
  max-width: 460px;
}
.signup-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; margin: 0 0 4px; letter-spacing: -0.01em;
}
.signup-card p.sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; }
.field { margin-bottom: 14px; position: relative; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input[type="email"], .field input[type="password"], .field input[type="text"] {
  width: 100%; height: 52px; padding: 0 16px;
  border-radius: 12px; border: 1.5px solid var(--line);
  background: #FAFAF7;
  font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s, background .15s;
}
.field input:focus { border-color: var(--blue); background: #fff; }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }
.field .hint.error { color: #C22; }
.signup-card .btn { width: 100%; margin-top: 8px; }
.signup-card .tos { font-size: 12px; color: var(--ink-soft); margin-top: 14px; text-align: center; line-height: 1.5; }
.signup-card .tos a { text-decoration: underline; }
.signup-card.success { text-align: center; padding: 40px 28px; }
.check-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 18px; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  cursor: pointer;
  font-size: 13px; color: var(--ink-soft); line-height: 1.45;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
  margin-top: 1px;
}
.checkbox.checked .checkbox-box { background: var(--blue); border-color: var(--blue); }
.checkbox input:checked + .checkbox-box { background: var(--blue); border-color: var(--blue); }
.checkbox:hover .checkbox-box { border-color: var(--blue); }
.checkbox-label a { text-decoration: underline; color: var(--ink); }
.checkbox-label a:hover { color: var(--blue); }
.checkbox-label .req { color: var(--blue); font-weight: 700; }

/* Hero phone visual */
.hero-visual {
  position: relative;
  height: 540px;
  z-index: 1;
}
.hero-visual .signup-card { position: relative; z-index: 3; }
.hero-blob {
  position: absolute; inset: -20px -20px -40px 20%;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  filter: blur(0);
}

/* ===========================================
   TRUST STRIP
   =========================================== */
.trust {
  background: var(--blue-ink); color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.trust-inner {
  display: flex; gap: 48px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item strong { color: var(--yellow); font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ===========================================
   MODES SECTION
   =========================================== */
.section-heading {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  text-wrap: balance;
}
.section-heading p.lead { margin: 0 auto; }

/* Mode card */
.mode-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 9vw, 120px);
}
.mode-row:last-child { margin-bottom: 0; }
.mode-row.reverse .mode-text { order: 2; }
.mode-row.reverse .mode-visual { order: 1; }

.mode-text .mode-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.mode-text .mode-num::before {
  content: ""; width: 28px; height: 2px; background: var(--blue); display: inline-block;
}
.mode-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.mode-text p { color: var(--ink-soft); font-size: 18px; line-height: 1.55; max-width: 46ch; margin: 0 0 24px; }
.mode-text ul { list-style: none; padding: 0; margin: 0 0 28px; }
.mode-text ul li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); font-size: 15px; }
.mode-text ul li:first-child { border-top: 0; }
.mode-text ul li .tick {
  width: 22px; height: 22px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* Phone frame */
.phone-frame {
  width: 320px; height: 660px;
  background: #0A1024;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(10,16,36,0.35), 0 12px 24px -12px rgba(10,16,36,0.18);
  margin: 0 auto;
  position: relative;
}
.phone-frame::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; background: #0A1024; border-radius: 16px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: repeating-linear-gradient(135deg, #EFEDE5 0 16px, #E5E2D5 16px 32px);
  position: relative;
  display: flex; flex-direction: column;
}
.phone-screen-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  background: rgba(250,248,241,0.95);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px dashed var(--line-strong);
  line-height: 1.5;
  width: 78%;
}
.phone-screen-label strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 13px; margin-bottom: 4px; letter-spacing: 0.02em; }

/* ===========================================
   SCREENSHOTS GALLERY
   =========================================== */
.screens-gallery {
  background: var(--blue-ink);
  color: #fff;
  padding: clamp(72px, 10vw, 140px) 0;
  overflow: hidden;
  position: relative;
}
.screens-gallery .section-heading h2 { color: #fff; }
.screens-gallery .section-heading p.lead { color: rgba(255,255,255,0.7); }
.gallery-track {
  display: flex; gap: 24px;
  padding: 8px var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track .phone-frame { flex-shrink: 0; scroll-snap-align: center; transform: scale(0.92); transition: transform .3s ease; }
.gallery-track .phone-frame:hover { transform: scale(1); }

/* ===========================================
   FEATURES GRID
   =========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); border-color: transparent; }
.feature.feature-yellow { background: var(--yellow); }
.feature.feature-blue { background: var(--blue); color: #fff; }
.feature.feature-blue p { color: rgba(255,255,255,0.85); }
.feature .ft-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature.feature-yellow .ft-icon { background: var(--blue); color: var(--yellow); }
.feature.feature-blue .ft-icon { background: var(--yellow); color: var(--blue); }
.feature h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; margin: 0 0 10px; line-height: 1.1;
}
.feature p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ===========================================
   HOW IT WORKS
   =========================================== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 28px 24px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.step .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}
.step h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.01em; margin: 0 0 8px; line-height: 1.2;
}
.step p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
  background: var(--cream-2);
}
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.t-card.featured { background: var(--blue); color: #fff; border-color: var(--blue); }
.t-card.featured .t-author small { color: rgba(255,255,255,0.7); }
.t-quote { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.4; letter-spacing: -0.01em; flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--blue-ink); font-size: 14px; flex-shrink: 0; }
.t-author strong { font-size: 14px; display: block; }
.t-author small { font-size: 12px; color: var(--ink-soft); }
.t-stars { display: flex; gap: 3px; color: var(--yellow); }

/* ===========================================
   FAQ
   =========================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em;
}
.faq-q .chev {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-q .chev { background: var(--yellow); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.faq-a-inner { padding: 0 0 22px; max-width: 70ch; }
.faq-item.active .faq-a { max-height: 400px; }

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
  background: var(--blue-ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.final-cta::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,221,15,0.18) 0%, transparent 60%);
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 0 0 24px; max-width: 18ch; margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.final-cta h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--yellow); letter-spacing: -0.015em; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 50ch; margin: 0 auto 36px; }
.final-cta .cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--cream);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h6 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; color: var(--ink); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink-soft); }
.footer ul a:hover { color: var(--ink); }
.footer-brand p { font-size: 14px; color: var(--ink-soft); max-width: 36ch; margin: 16px 0 24px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-soft);
}
.footer-bottom a { font-weight: 600; color: var(--ink); }
.footer-bottom a:hover { color: var(--blue); }

/* ===========================================
   STICKY MOBILE CTA
   =========================================== */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 40; display: none;
  box-shadow: 0 -8px 24px rgba(10,16,36,0.08);
}
.mobile-cta-bar .btn { width: 100%; }

/* Animated underline link */
.ulink { position: relative; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.ulink::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: currentColor; transform-origin: left; transition: transform .25s ease; }
.ulink:hover::after { transform: scaleX(1.05); }

/* Decorative shapes */
.decor { position: absolute; pointer-events: none; }
.decor-blob {
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.decor-dots {
  width: 110px; height: 110px;
  top: -30px; right: -20px;
  z-index: 2;
}
.decor-squiggle {
  width: 190px; height: 50px;
  bottom: -20px; left: -30px;
  z-index: 2;
  transform: rotate(-6deg);
}

.section-deco-circle {
  width: 220px; height: 220px;
  top: -60px; right: 5%;
  z-index: 0;
}
.section-deco-bubble {
  width: 110px; height: 100px;
  top: 40px; left: -30px;
  z-index: 0;
  transform: rotate(-10deg);
}
.section-deco-spark-1 { width: 36px; height: 36px; top: 14%; left: 8%; opacity: 0.7; }
.section-deco-spark-2 { width: 28px; height: 28px; bottom: 18%; right: 12%; opacity: 0.6; transform: rotate(20deg); }
.section-deco-underline {
  width: 200px; height: 18px;
  bottom: -2px; left: 50%; transform: translateX(-50%);
}

/* ===========================================
   PAGE HERO (subpages)
   =========================================== */
.page-hero {
  background: var(--cream-2);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero.dark { background: var(--blue-ink); color: #fff; }
.page-hero.dark .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero.dark .breadcrumb { color: rgba(255,255,255,0.4); }
.page-hero.dark .page-hero-lead { color: rgba(255,255,255,0.75); }
.page-hero.yellow { background: var(--yellow); color: var(--blue-ink); }
.page-hero.yellow .breadcrumb a { color: rgba(10,20,56,0.6); }
.page-hero.yellow .breadcrumb { color: rgba(10,20,56,0.45); }
.page-hero.yellow .page-hero-lead { color: rgba(10,20,56,0.78); }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-soft); transition: color .15s ease; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.4; }
.page-hero.dark .breadcrumb a:hover { color: #fff; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.8vw, 76px);
  letter-spacing: -0.028em;
  line-height: 1;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 18ch;
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.page-hero.dark h1 em { color: var(--yellow); }

.page-hero-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

.page-hero-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 14px;
}
.page-hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px;
  background: rgba(10,16,36,0.06);
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
}
.page-hero.dark .page-hero-meta-item { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

/* ===========================================
   LEGAL / LONG-FORM LAYOUT
   =========================================== */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(48px, 6vw, 80px) 0;
}
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  font-size: 14px;
  padding-right: 8px;
}
.toc h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.toc ol li {
  counter-increment: toc;
  margin-bottom: 4px;
}
.toc ol li a {
  display: block;
  padding: 6px 0 6px 32px;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.4;
  border-left: 1.5px solid transparent;
  margin-left: -1.5px;
  transition: color .15s ease, border-color .15s ease;
}
.toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 8px; top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--line-strong);
  letter-spacing: 0;
}
.toc ol li a:hover { color: var(--ink); }
.toc ol li a.active {
  color: var(--blue);
  border-left-color: var(--blue);
}
.toc ol li a.active::before { color: var(--blue); }

.legal-content {
  max-width: 70ch;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 56px 0 16px;
  scroll-margin-top: 96px;
  display: flex; align-items: baseline; gap: 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2 .h-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  background: rgba(0,63,184,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  position: relative;
  top: -3px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 28px 0 10px;
}
.legal-content p { margin: 0 0 14px; color: var(--ink); }
.legal-content p.muted { color: var(--ink-soft); }
.legal-content ul, .legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink);
}
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; line-height: 1.55; }
.legal-content strong { font-weight: 600; }
.legal-content a { color: var(--blue); border-bottom: 1px solid rgba(0,63,184,0.3); transition: border-color .15s ease; }
.legal-content a:hover { border-bottom-color: var(--blue); }

.legal-callout {
  background: var(--cream-2);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--ink-soft);
  border-left: 3px solid var(--blue);
}
.legal-callout strong { color: var(--ink); }

.legal-meta {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px;
  margin: 0 0 40px;
  background: var(--cream-2);
  border-radius: var(--radius-m);
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.legal-meta strong { color: var(--ink); font-weight: 600; }
.legal-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* ===========================================
   COOKIES TABLE
   =========================================== */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
}
.cookie-table th, .cookie-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cookie-table thead { background: var(--cream-2); }
.cookie-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.cookie-table tbody tr:last-child td { border-bottom: 0; }
.cookie-table tbody tr:hover { background: rgba(10,16,36,0.02); }
.cookie-table .cookie-name {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}
.cookie-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.cookie-tag.essential { background: rgba(0,63,184,0.1); color: var(--blue); }
.cookie-tag.analytics { background: rgba(255,221,15,0.25); color: #7a5b00; }
.cookie-tag.marketing { background: rgba(220, 80, 80, 0.12); color: #B22; }

/* ===========================================
   CTA STRIP (subpages)
   =========================================== */
.cta-strip {
  background: var(--blue-ink);
  color: #fff;
  padding: clamp(56px, 7vw, 80px) 0;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-strip h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-wrap: balance;
  max-width: 24ch;
}
.cta-strip h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.cta-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin: 0;
  max-width: 50ch;
}

/* ===========================================
   BLOG (stage 2)
   =========================================== */
.blog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.blog-toolbar .count { font-size: 14px; color: var(--ink-soft); }
.blog-toolbar .count strong { color: var(--ink); font-weight: 600; }
.tag-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-chip {
  display: inline-flex; align-items: center;
  height: 34px; padding: 0 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  transition: all .15s ease;
}
.tag-chip:hover { color: var(--ink); border-color: var(--ink); }
.tag-chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.blog-section { padding: 0 0 clamp(64px, 8vw, 96px); }

.blog-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: stretch;
}
.blog-featured .post-card { height: 100%; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }

.post-cover {
  aspect-ratio: 16 / 10;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.post-cover .cover-tag {
  position: absolute; left: 14px; top: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.post-cover.cover-yellow { background: var(--yellow); }
.post-cover.cover-blue { background: var(--blue); }
.post-cover.cover-ink { background: var(--blue-ink); }
.post-cover.cover-cream { background: var(--cream-2); }

.cover-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.cover-art svg { width: 78%; height: 78%; }

.post-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; color: var(--ink-soft);
  margin-bottom: 12px;
}
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }
.post-meta time { font-variant-numeric: tabular-nums; }
.post-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.blog-featured .post-card h3 { font-size: clamp(28px, 2.6vw, 36px); }
.post-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 16px;
}
.post-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.post-author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--blue-ink);
  font-size: 11px;
}
.post-author strong { font-weight: 600; }
.post-author .read { color: var(--ink-soft); margin-left: auto; }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 40px 0 0;
}
.pagination button, .pagination a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
}
.pagination button:hover, .pagination a:hover { background: var(--cream-2); }
.pagination .active { background: var(--ink); color: var(--cream); }
.pagination .active:hover { background: var(--ink); }
.pagination .nav-btn { width: auto; padding: 0 14px; gap: 6px; border-color: var(--line-strong); }
.pagination .nav-btn:hover { border-color: var(--ink); background: transparent; }
.pagination .nav-btn[disabled] { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.pagination .dots { color: var(--ink-soft); padding: 0 6px; }

/* ===========================================
   BLOG POST
   =========================================== */
.post-hero {
  padding: clamp(48px, 6vw, 72px) 0 0;
  background: var(--cream);
}
.post-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.post-hero .breadcrumb { margin-bottom: 20px; }
.post-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 12px 0 24px;
  text-wrap: balance;
}
.post-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue); }
.post-hero .post-meta { font-size: 14px; margin-bottom: 0; }
.post-hero .post-author-avatar { width: 36px; height: 36px; font-size: 12px; }
.post-hero .post-meta strong { color: var(--ink); }

.post-featured-image {
  max-width: 1100px;
  margin: clamp(36px, 5vw, 56px) auto clamp(48px, 6vw, 72px);
  padding: 0 var(--pad-x);
}
.post-featured-image .frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-l);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-pop);
}
.post-featured-image .frame.cover-yellow { background: var(--yellow); }
.post-featured-image .frame.cover-blue { background: var(--blue); }
.post-featured-image .frame.cover-ink { background: var(--blue-ink); }
.post-featured-image .frame.cover-cream { background: var(--cream-2); }
.post-featured-image .cover-art svg { width: 60%; height: 60%; }

.post-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  padding: 0 0 clamp(64px, 8vw, 96px);
  align-items: start;
}
.post-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  font-size: 13px;
}
.post-toc h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.post-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: posttoc;
  border-left: 1.5px solid var(--line);
}
.post-toc ol li { counter-increment: posttoc; }
.post-toc ol li a {
  display: block;
  padding: 6px 0 6px 16px;
  color: var(--ink-soft);
  border-left: 1.5px solid transparent;
  margin-left: -1.5px;
  line-height: 1.4;
  transition: color .15s ease, border-color .15s ease;
}
.post-toc ol li a:hover { color: var(--ink); }
.post-toc ol li a.active { color: var(--blue); border-left-color: var(--blue); }
.post-toc .progress {
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 18px;
}
.post-toc .progress .bar { height: 100%; background: var(--blue); width: 0%; transition: width .1s linear; }

.post-content {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 70ch;
}
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 56px 0 16px;
  scroll-margin-top: 96px;
  text-wrap: balance;
}
.post-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.post-content p { margin: 0 0 18px; }
.post-content p.lead-paragraph {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
}
.post-content ul, .post-content ol { padding-left: 24px; margin: 0 0 22px; }
.post-content ul li, .post-content ol li { margin-bottom: 10px; }
.post-content a {
  color: var(--blue);
  border-bottom: 1px solid rgba(0,63,184,0.3);
  transition: border-color .15s ease;
}
.post-content a:hover { border-bottom-color: var(--blue); }
.post-content strong { font-weight: 600; }
.post-content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--yellow);
  background: var(--cream-2);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.post-content blockquote p { margin: 0; }
.post-content blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.post-content .callout {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--blue-ink);
  color: #fff;
  border-radius: var(--radius-m);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.post-content .callout .callout-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--blue-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.post-content .callout h4 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.post-content .callout p { margin: 0; color: rgba(255,255,255,0.8); font-size: 15px; }

.post-content .post-image {
  margin: 36px 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.post-content .post-image figcaption {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.post-footer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 48px 0 0;
  flex-wrap: wrap; gap: 16px;
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-tag {
  font-size: 12px; font-weight: 500;
  padding: 6px 12px;
  background: var(--cream-2);
  border-radius: 999px;
  color: var(--ink-soft);
}
.share-row { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-soft); }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.share-btn:hover { background: var(--ink); color: var(--cream); }

.author-bio {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--cream-2);
  border-radius: var(--radius-l);
  margin: 32px 0 0;
}
.author-bio .post-author-avatar { width: 56px; height: 56px; font-size: 16px; }
.author-bio strong { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; }
.author-bio p { margin: 4px 0 0; font-size: 14px; color: var(--ink-soft); }

.related-section { padding: clamp(64px, 8vw, 96px) 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.related-section .related-head {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px;
}
.related-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.related-section .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===========================================
   CONTACT (stage 2)
   =========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 64px);
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 96px);
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  transition: border-color .15s ease, transform .15s ease;
}
.contact-channel:hover { border-color: var(--blue); transform: translateY(-1px); }
.contact-channel .ch-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-channel.primary .ch-icon { background: var(--yellow); color: var(--blue-ink); }
.contact-channel h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.contact-channel p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.contact-channel a { color: var(--blue); font-weight: 500; }
.contact-channel small { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-l);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.contact-form > p.sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 26px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form .btn { width: 100%; }

.field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s, background .15s;
  font-family: inherit;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.office-card {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--line);
}
.office-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.office-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 6px; }
.office-card .hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 13px;
}
.office-card .hours strong { color: var(--ink); font-weight: 600; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 920px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-inner { height: 64px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(250, 248, 241, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px var(--pad-x) 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(10,16,36,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 24px; padding-bottom: 60px; gap: 36px; }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); }
  .hero-visual { height: auto; min-height: auto; }
  .signup-card { max-width: 100%; padding: 24px; }
  .mode-row { grid-template-columns: 1fr; gap: 40px; }
  .mode-row.reverse .mode-text { order: 1; }
  .mode-row.reverse .mode-visual { order: 2; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .phone-frame { width: 280px; height: 580px; }
  .mobile-cta-bar { display: block; }
  body.has-mobile-cta { padding-bottom: 88px; }

  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .toc {
    position: static;
    max-height: none;
    background: var(--cream-2);
    border-radius: var(--radius-m);
    padding: 20px;
  }
  .legal-content h2 { flex-direction: column; gap: 6px; align-items: flex-start; }
  .legal-content h2 .h-num { top: 0; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .cookie-table { font-size: 13px; }
  .cookie-table th, .cookie-table td { padding: 10px 12px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
  .post-toc { position: static; max-height: none; background: var(--cream-2); border-radius: var(--radius-m); padding: 20px; }
  .related-section .related-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .post-content { font-size: 17px; }
  .post-content p.lead-paragraph { font-size: 19px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--blue-ink);
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  box-shadow: 0 -4px 24px rgba(10,16,36,0.18);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; flex: 1; min-width: 280px; }
.cookie-banner-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cookie-banner-link {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color .15s;
}
.cookie-banner-link:hover { color: #fff; }
@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner-actions { width: 100%; justify-content: space-between; }
}

/* CF7 form integration */
.contact-form .wpcf7 { margin: 0; }
.contact-form .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.contact-form .wpcf7-form label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.02em; }
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea {
  width: 100%; padding: 14px 16px;
  border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s, background .15s;
  font-family: inherit;
  margin-bottom: 18px;
}
.contact-form .wpcf7-form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus { border-color: var(--blue); background: #fff; }
.contact-form .wpcf7-form .cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .wpcf7-form .cf7-col { min-width: 0; }
.contact-form .wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 52px; padding: 0 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  margin-top: 6px;
}
.contact-form .wpcf7-form input[type="submit"]:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,63,184,0.28); }
.contact-form .wpcf7-form .wpcf7-response-output {
  border: none !important; padding: 14px 18px !important;
  border-radius: 12px; font-size: 14px; margin: 18px 0 0 !important;
}
.contact-form .wpcf7-form.sent .wpcf7-response-output { background: #e8f5e9; color: #2e7d32; }
.contact-form .wpcf7-form.invalid .wpcf7-response-output,
.contact-form .wpcf7-form.failed .wpcf7-response-output { background: #fdecea; color: #c62828; }
.contact-form .wpcf7-not-valid-tip { font-size: 12px; color: #c62828; margin-top: -14px; margin-bottom: 14px; display: block; }
.contact-form .wpcf7-form .wpcf7-spinner { display: none; }

@media (max-width: 760px) {
  .contact-form .wpcf7-form .cf7-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .trust-inner { gap: 20px; }
  .hero h1 .underline-stroke::after { display: none; }
}
