/* ============================================================
   BUILDING BRAIN DIGITAL — main.css
   All shared styles. Page-specific styles go in their own
   <style> block or separate file.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --cream:    #F4EFE6;
  --linen:    #EDE6D6;
  --sage:     #6B8F5E;
  --forest:   #3A5C3C;
  --deep:     #243D26;
  --charcoal: #1E1E1E;
  --warm:     #5C4D42;
  --muted:    #9A8C7E;
  --border:   rgba(107, 143, 94, 0.18);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:   2px;
  --radius-md: 4px;

  --pad-x:    56px;
  --pad-x-sm: 24px;
  --max-w:    1060px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.15rem; }

/* Italic accent — the "Brain" green style */
em {
  font-style: italic;
  color: var(--sage);
  font-weight: 400;
}

p {
  color: var(--warm);
  font-weight: 300;
  line-height: 1.8;
}

/* ── SECTION TAG ── */
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* Centred variant */
.section-tag.centered {
  justify-content: center;
}

.section-tag.centered::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── SECTION HEADING + SUB ── */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 0.975rem;
  color: var(--warm);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 14px 34px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--deep); }

.btn-ghost {
  color: var(--forest);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { color: var(--deep); }

.btn-light {
  background: var(--cream);
  color: var(--deep);
  padding: 16px 44px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-light:hover { background: var(--linen); }

/* ── NAV ── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad-x);
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--deep);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--warm);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover  { color: var(--forest); }
.nav-links a.active { color: var(--forest); font-weight: 500; }

.nav-links .nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 26px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover { background: var(--deep); color: var(--cream); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  transition: all 0.2s;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px var(--pad-x) 72px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-header h1 { margin-bottom: 16px; }
.page-header p  { font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px var(--pad-x);
  background: var(--deep);
}

.cta-banner.centered {
  text-align: center;
}

.cta-banner h2  { color: var(--cream); margin-bottom: 16px; }
.cta-banner p   { color: rgba(244, 239, 230, 0.5); margin-bottom: 36px; font-weight: 300; }

.cta-split {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-split h2  { color: var(--cream); }
.cta-split p   { color: rgba(244, 239, 230, 0.5); margin-top: 12px; font-size: 0.9rem; font-weight: 300; }

/* ── FOOTER ── */
footer.main-footer {
  background: var(--charcoal);
  padding: 48px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(244, 239, 230, 0.25);
}

/* ── CARDS & SURFACES ── */
.card {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.card.dark   { background: var(--forest); border-color: var(--forest); }
.card.darker { background: var(--deep);   border-color: var(--deep); }

/* ── TRUST BAR ── */
.trust-bar {
  padding: 60px var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item .trust-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px;
  line-height: 1.1;
}

.trust-item .trust-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--forest); }

.faq-icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 0.9rem;
  color: var(--sage);
  font-family: var(--font-sans);
  font-weight: 300;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--warm);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--linen);
  border: 1px solid rgba(107, 143, 94, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad-x) 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,143,94,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage);
}

.hero h1 { margin-bottom: 24px; }

.hero-body {
  font-size: 1rem;
  color: var(--warm);
  font-weight: 300;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 16px;
}

.hero-sub-note {
  font-size: 0.85rem;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-sub-note a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-panel {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 60px;
  background: var(--sage);
  border-radius: 0 0 2px 0;
}

.panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.panel-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.55;
  margin-bottom: 28px;
}

.panel-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel-stat .value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 4px;
}

.panel-stat .label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── WHAT WE DO ── */
.what {
  padding: 100px var(--pad-x);
  background: var(--linen);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service {
  background: var(--cream);
  padding: 40px 32px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--sage);
}

.service-icon svg {
  width: 18px;
  height: 18px;
}

.service h3 { margin-bottom: 12px; }
.service p  { font-size: 0.875rem; }

/* ── ABOUT ── */
.about { padding: 100px var(--pad-x); }

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  background: var(--forest);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
}

.about-message {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-message p      { font-size: 0.975rem; }
.about-message p.lead { font-size: 1.05rem; color: var(--charcoal); font-weight: 400; }

.about-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.sig-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 4px;
}

.sig-title {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px var(--pad-x);
  background: var(--linen);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  position: relative;
  padding-top: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--sage);
}

.step-num {
  font-size: 0.72rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 16px;
  font-weight: 500;
}

.step h3 { margin-bottom: 12px; font-size: 1.05rem; }
.step p  { font-size: 0.875rem; }

/* ── PRICING PAGE ── */
.pricing-section { padding: 0 var(--pad-x) 100px; }

.packages-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}

.package.featured { background: var(--forest); border-color: var(--forest); }
.package.custom   { background: var(--deep);   border-color: var(--deep); }

.pkg-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 24px;
}

.package.featured .pkg-tag { color: rgba(244,239,230,0.5); }
.package.custom   .pkg-tag { color: rgba(107,143,94,0.7); }

.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 8px;
}

.package.featured .pkg-name,
.package.custom   .pkg-name { color: var(--cream); }

.pkg-price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 4px;
}

.package.featured .pkg-price,
.package.custom   .pkg-price { color: var(--cream); }

.pkg-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.package.featured .pkg-price-note,
.package.custom   .pkg-price-note { color: rgba(244,239,230,0.45); }

.pkg-retainer-hint {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--sage);
  background: rgba(107,143,94,0.1);
  border: 1px solid rgba(107,143,94,0.2);
  border-radius: var(--radius);
  padding: 5px 10px;
  margin-bottom: 28px;
}

.package.featured .pkg-retainer-hint {
  background: rgba(244,239,230,0.1);
  border-color: rgba(244,239,230,0.15);
  color: rgba(244,239,230,0.7);
}

.package.custom .pkg-retainer-hint {
  background: rgba(107,143,94,0.1);
  border-color: rgba(107,143,94,0.2);
  color: rgba(107,143,94,0.8);
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.package.featured .pkg-divider { background: rgba(244,239,230,0.12); }
.package.custom   .pkg-divider { background: rgba(244,239,230,0.08); }

.pkg-features {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(107,143,94,0.1);
  font-size: 0.875rem;
  color: var(--warm);
  font-weight: 300;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '✓';
  color: var(--sage);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.package.featured .pkg-features li { color: rgba(244,239,230,0.8); border-color: rgba(244,239,230,0.08); }
.package.featured .pkg-features li::before { color: rgba(244,239,230,0.6); }
.package.custom   .pkg-features li { color: rgba(244,239,230,0.7); border-color: rgba(244,239,230,0.06); }
.package.custom   .pkg-features li::before { color: var(--sage); }

.pkg-features li.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: none;
  padding-top: 16px;
  font-weight: 500;
}

.pkg-features li.section-label::before { content: ''; }
.package.featured .pkg-features li.section-label { color: rgba(244,239,230,0.35); }
.package.custom   .pkg-features li.section-label { color: rgba(107,143,94,0.6); }

.package .btn-primary { display: block; text-align: center; }

.package.featured .btn-primary { background: var(--cream); color: var(--forest); }
.package.featured .btn-primary:hover { background: var(--linen); color: var(--deep); }
.package.custom   .btn-primary { background: var(--sage); }
.package.custom   .btn-primary:hover { background: var(--forest); }

/* Monthly section */
.monthly-section { padding: 100px var(--pad-x); background: var(--linen); }

.monthly-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.monthly-price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.monthly-price .amount { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700; color: var(--deep); line-height: 1; }
.monthly-price .per    { font-size: 0.9rem; color: var(--muted); font-weight: 300; }
.monthly-note          { font-size: 0.82rem; color: var(--sage); margin-bottom: 24px; }

.monthly-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.monthly-feature { background: var(--cream); padding: 24px 20px; }
.mf-icon  { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; font-weight: 500; }
.mf-title { font-size: 0.875rem; font-weight: 500; color: var(--deep); margin-bottom: 6px; }
.mf-desc  { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* Honest note */
.honest-section { padding: 80px var(--pad-x); border-top: 1px solid var(--border); }
.honest-inner   { max-width: 720px; margin: 0 auto; text-align: center; }
.honest-inner h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--deep); margin-bottom: 16px; }
.honest-inner p  { margin-bottom: 12px; font-size: 0.95rem; }

@media (max-width: 900px) {
  .pricing-section { padding: 0 var(--pad-x-sm) 80px; }
  .packages-grid   { grid-template-columns: 1fr; }
  .monthly-section { padding: 80px var(--pad-x-sm); }
  .monthly-grid    { grid-template-columns: 1fr; gap: 40px; }
  .honest-section  { padding: 60px var(--pad-x-sm); }
}

/* ── RESPONSIVE — HOMEPAGE ── */
@media (max-width: 900px) {
  .hero { padding: 120px var(--pad-x-sm) 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services { grid-template-columns: 1fr; }
  .about { padding: 80px var(--pad-x-sm); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 3/2; }
  .what { padding: 80px var(--pad-x-sm); }
  .how  { padding: 80px var(--pad-x-sm); }
  .steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 80px var(--pad-x-sm); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root {
    --pad-x: var(--pad-x-sm);
  }

  nav.main-nav {
    padding: 16px var(--pad-x-sm);
  }

  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px var(--pad-x-sm) 32px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    align-items: flex-start;
  }

  .nav-links.open .nav-cta {
    width: 100%;
    text-align: center;
  }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .cta-split  {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  footer.main-footer {
    flex-direction: column;
    text-align: center;
    padding: 40px var(--pad-x-sm);
  }

  .page-header {
    padding: 120px var(--pad-x-sm) 56px;
  }
}

@media (max-width: 500px) {
  .trust-grid { grid-template-columns: 1fr; }
}
