/* ==========================================================================
   The Trade Pack - shared design system
   Brand colours preserved: navy, orange, cream, charcoal.
   Mobile-first. Built for Core Web Vitals.
   ========================================================================== */

:root {
  /* Brand palette (unchanged) */
  --cream: #F9F5EF;
  --cream-2: #F3ECE0;
  --charcoal: #0F1E30;
  --navy: #1C3353;
  --navy-deep: #122236;
  --orange: #E8640A;
  --orange-dark: #C8560A;
  --orange-soft: #FBEADC;
  --white: #FFFFFF;
  --border: #E5DFD3;
  --border-strong: #D8CFBE;
  --muted: #5A6B7D;

  /* Tints */
  --navy-tint: rgba(28, 51, 83, 0.04);
  --tick: #2D7A4A;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 30, 48, 0.05);
  --shadow-md: 0 12px 30px -16px rgba(15, 30, 48, 0.28);
  --shadow-lg: 0 30px 60px -24px rgba(15, 30, 48, 0.40);
  --shadow-glow: 0 10px 28px -10px rgba(232, 100, 10, 0.40);

  /* Layout */
  --max: 1160px;
  --max-narrow: 760px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.12;
}
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(29px, 4.2vw, 46px); margin-bottom: 16px; }
h3 { font-size: 21px; font-weight: 600; margin-bottom: 8px; color: var(--charcoal);
     font-family: 'Inter', sans-serif; letter-spacing: -0.01em; line-height: 1.3; }
p { margin-bottom: 16px; color: var(--charcoal); }
a { color: var(--navy); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 112px) 0; }
section.tight { padding: clamp(48px, 6vw, 72px) 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12.5px; font-weight: 700; color: var(--orange);
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--orange);
  display: inline-block; border-radius: 2px;
}
.lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); line-height: 1.55; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal[data-d="1"].in { transition-delay: 0.08s; }
.reveal[data-d="2"].in { transition-delay: 0.16s; }
.reveal[data-d="3"].in { transition-delay: 0.24s; }
@media (max-width: 720px) {
  .reveal { transform: translateY(12px); }
  .reveal.in { transition-duration: 0.5s; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; }
}

/* ===== Header ===== */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(249, 245, 239, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
header.site.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(15, 30, 48, 0.4);
  background: rgba(249, 245, 239, 0.92);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--max); margin: 0 auto;
  transition: padding 0.25s ease;
}
header.site.scrolled .nav { padding: 11px 24px; }
.logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px;
  color: var(--navy); letter-spacing: -0.01em; transition: font-size 0.25s ease;
}
header.site.scrolled .logo { font-size: 20px; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; color: var(--charcoal); font-weight: 500; }
.nav-links a:hover { color: var(--orange); }
.mobile-hidden { display: flex; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--navy); }
.mobile-menu { display: none; }
@media (max-width: 760px) {
  .mobile-hidden { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    flex-direction: column; gap: 4px;
    padding: 8px 16px 20px; border-top: 1px solid var(--border);
    background: var(--cream);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .btn { margin-top: 10px; justify-content: center; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 12px;
  font-weight: 600; font-size: 16px; line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s ease, color 0.18s ease;
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
  text-decoration: none; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(28,51,83,0.5); outline-offset: 2px; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(232,100,10,0.5); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-ghost { background: var(--white); color: var(--navy); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

/* ===== Hero (home) ===== */
.hero {
  position: relative; padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(232,100,10,0.10), rgba(232,100,10,0) 70%);
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(18px, 2.1vw, 21px); color: var(--muted); max-width: 540px; margin-bottom: 30px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--tick); flex-shrink: 0; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-rating .stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }
.hero-rating .rating-text { font-size: 14px; color: var(--muted); font-weight: 500; }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,30,48,0.05);
  aspect-ratio: 4 / 5; background: var(--navy);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: rgba(255,255,255,0.96);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--orange-soft); color: var(--orange); }
.hero-float .ic.green { background: #E2F1E8; color: var(--tick); }
.hero-float .ft { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hero-float .fs { font-size: 12px; color: var(--muted); }
.hero-float.tl { top: 22px; left: -18px; }
.hero-float.br { bottom: 22px; right: -18px; }
@media (max-width: 1040px) { .hero-float.tl { left: 14px; } .hero-float.br { right: 14px; } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { aspect-ratio: 16 / 12; max-height: 460px; }
}
@media (max-width: 520px) { .hero-float { display: none; } }

/* ===== Trust bar ===== */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust-bar-label { text-align: center; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; margin-bottom: 22px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 52px); flex-wrap: wrap; }
.trust-logos img { height: 52px; width: auto; opacity: 0.9; filter: saturate(0.95); transition: opacity 0.2s ease, transform 0.2s ease; }
.trust-logos img:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 720px) { .trust-logos { gap: 26px; } .trust-logos img { height: 40px; } }

/* ===== Section heading helper ===== */
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); margin-bottom: 0; font-size: 18px; }

/* ===== Problems ===== */
.problems { background: var(--cream); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.problem-card .icon { width: 46px; height: 46px; color: var(--orange); margin-bottom: 20px;
  background: var(--orange-soft); border-radius: 12px; padding: 10px; }
.problem-card h3 { margin-bottom: 10px; font-size: 20px; }
.problem-card p { color: var(--muted); margin-bottom: 0; font-size: 15.5px; }

/* ===== Inside the pack ===== */
.inside { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .inside-grid { grid-template-columns: 1fr; gap: 40px; } }
.inside ul { list-style: none; padding: 0; }
.inside li { padding: 15px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 14px; font-size: 16px; }
.inside li:last-child { border-bottom: none; }
.inside li svg { flex-shrink: 0; color: var(--orange); margin-top: 3px; }
.inside li strong { color: var(--navy); }
.inside-visual { position: relative; }

/* Custom SVG product mockup card */
.mockup-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--white); }
.mockup-card svg { display: block; width: 100%; height: auto; }
.mockup-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
}

/* ===== Trades (tabs) ===== */
.trades { background: var(--cream); }
.trade-tabs { display: flex; gap: 10px; margin-bottom: 38px; flex-wrap: wrap; }
.trade-tab {
  padding: 11px 22px; background: var(--white); border: 1px solid var(--border); cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--muted); border-radius: 999px;
  font-family: 'Inter', sans-serif; transition: all 0.18s var(--ease);
}
.trade-tab:hover { color: var(--navy); border-color: var(--border-strong); }
.trade-tab.active { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-md); }
.trade-panel { display: none; }
.trade-panel.active { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 4vw, 56px); align-items: center; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) { .trade-panel.active { grid-template-columns: 1fr; gap: 28px; } }
.trade-panel h3 { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 500; color: var(--navy); margin-bottom: 14px; }
.trade-panel ul { list-style: none; padding: 0; margin: 20px 0 28px; }
.trade-panel li { padding: 10px 0; display: flex; align-items: flex-start; gap: 12px; color: var(--charcoal); font-size: 15.5px; }
.trade-panel li svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.trade-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; max-height: 440px; }
.trade-photo img { width: 100%; height: 100%; object-fit: cover; }
.trade-photo .tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.95); color: var(--navy); font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== How it works (numbered steps + connectors) ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; position: relative; }
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; gap: 32px; } }
.how-step { padding: 36px 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); position: relative; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-num { font-family: 'Fraunces', serif; font-size: 30px; color: #fff; font-weight: 600; line-height: 1;
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; box-shadow: var(--shadow-glow); }
.how-step h3 { margin-bottom: 8px; font-size: 20px; }
.how-step p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }
.how-connector { position: absolute; top: 66px; left: calc(100% - 6px); width: 24px; color: var(--border-strong); z-index: 2; }
@media (max-width: 820px) { .how-connector { display: none; } }

/* ===== Testimonials (carousel) ===== */
.testimonials { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.carousel { position: relative; }
.carousel-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 18px; -ms-overflow-style: none; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.test-card { scroll-snap-align: start; flex: 0 0 calc(33.333% - 15px); min-width: 300px;
  padding: 32px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; }
@media (max-width: 900px) { .test-card { flex-basis: calc(80%); } }
@media (max-width: 560px) { .test-card { flex-basis: 88%; min-width: 0; } }
.test-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.test-quote { font-size: 18px; font-family: 'Fraunces', serif; font-weight: 400; color: var(--charcoal); line-height: 1.45; margin-bottom: 24px; flex: 1; }
.test-person { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; color: var(--white); flex-shrink: 0; }
.test-avatar.plumber { background: linear-gradient(135deg, #E8640A, #C8560A); }
.test-avatar.electrician { background: linear-gradient(135deg, #1A3A8A, #0F2666); }
.test-avatar.builder { background: linear-gradient(135deg, #2D5A27, #1F4019); }
.test-avatar.painter { background: linear-gradient(135deg, #8B1E2C, #5E1320); }
.test-meta-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.test-meta-trade { font-size: 13px; color: var(--muted); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 16px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border-strong); cursor: pointer; padding: 0; transition: all 0.2s ease; }
.carousel-dots button.active { background: var(--orange); width: 22px; border-radius: 5px; }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrows button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--white); color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.18s ease; }
.carousel-arrows button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-arrows button:disabled { opacity: 0.35; cursor: default; }
.test-disclaimer { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ===== Pricing compare ===== */
.pricing .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.pricing .section-head .eyebrow { justify-content: center; }
.compare { max-width: 940px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-head { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.compare-head > div { padding: 30px 24px; }
.compare-head .col-self { background: var(--cream); border-left: 1px solid var(--border); }
.compare-head .col-dwy { background: var(--navy); color: var(--white); position: relative; }
.compare-head .col-dwy .featured-tag-inline { position: absolute; top: 12px; right: 14px; background: var(--orange); color: var(--white); padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-tier-name { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 6px; }
.col-feature .compare-tier-name { color: var(--orange); }
.col-self .compare-tier-name { color: var(--navy); }
.col-dwy .compare-tier-name { color: rgba(255,255,255,0.7); }
.compare-head h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.col-self h3 { color: var(--navy); }
.col-dwy h3 { color: var(--white); }
.compare-price { font-family: 'Fraunces', serif; font-size: 38px; font-weight: 500; line-height: 1; margin-top: 8px; }
.compare-price span { font-size: 13px; font-weight: 400; opacity: 0.7; }
.col-self .compare-price { color: var(--navy); }
.col-dwy .compare-price { color: var(--white); }
.compare-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.compare-row:last-of-type { border-bottom: none; }
.compare-row > div { padding: 16px 24px; font-size: 15px; display: flex; align-items: center; }
.compare-row .col-feature { color: var(--charcoal); font-weight: 500; }
.compare-row .col-self { background: rgba(249, 245, 239, 0.5); justify-content: center; border-left: 1px solid var(--border); text-align: center; }
.compare-row .col-dwy { background: var(--navy-tint); justify-content: center; border-left: 1px solid var(--border); text-align: center; }
.compare-row strong { color: var(--navy); font-weight: 700; }
.tick { color: var(--tick); font-weight: 700; }
.dash { color: var(--muted); }
.compare-row.section-row > div { background: var(--cream); }
.compare-row.section-row { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--muted); }
.compare-row.section-row > div { padding: 12px 24px; }
.compare-foot { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-top: 1px solid var(--border); }
.compare-foot > div { padding: 24px; display: flex; align-items: center; justify-content: center; }
.compare-foot .col-feature { background: var(--cream); }
.compare-foot .col-self { background: var(--cream); border-left: 1px solid var(--border); }
.compare-foot .col-dwy { background: var(--cream); border-left: 1px solid var(--border); }
.compare-foot .btn { width: 100%; }
.price-reassure { text-align: center; margin-top: 26px; font-size: 14.5px; color: var(--muted); }
@media (max-width: 720px) {
  .compare-head, .compare-row, .compare-foot { grid-template-columns: 1fr; }
  .compare-head .col-self, .compare-head .col-dwy,
  .compare-row .col-self, .compare-row .col-dwy,
  .compare-foot .col-self, .compare-foot .col-dwy { border-left: none; border-top: 1px solid var(--border); }
  .compare-row > div { padding: 14px 20px; }
  .compare-row .col-feature { font-weight: 700; background: var(--cream); }
  .compare-row .col-self, .compare-row .col-dwy { justify-content: flex-start; text-align: left; }
  .compare-row .col-self::before { content: 'Self-serve: '; color: var(--muted); margin-right: 8px; font-weight: 500; }
  .compare-row .col-dwy::before { content: 'Done with you: '; color: var(--muted); margin-right: 8px; font-weight: 500; }
}

/* ===== Founder band ===== */
.founder { background: var(--cream); }
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; gap: 36px; } }
.founder-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.founder p { color: var(--charcoal); font-size: 17px; }
.founder-stats { display: flex; gap: 28px; margin: 26px 0; flex-wrap: wrap; }
.founder-stat .n { font-family: 'Fraunces', serif; font-size: 32px; color: var(--orange); font-weight: 600; line-height: 1; }
.founder-stat .l { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list { max-width: var(--max-narrow); margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 8px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 18px; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; font-family: 'Inter', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; color: var(--orange); font-weight: 300; transition: transform 0.25s ease; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin: 0 0 18px; color: var(--muted); }

/* ===== Final CTA ===== */
.final-cta { background: var(--navy); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 380px; background: radial-gradient(circle, rgba(232,100,10,0.22), rgba(232,100,10,0) 68%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.final-cta .hero-note { justify-content: center; color: rgba(255,255,255,0.7); }
.final-cta .hero-note svg { color: #5BC68B; }

/* ===== Footer ===== */
footer.site { background: var(--cream); border-top: 1px solid var(--border); padding: 60px 0 32px; color: var(--muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-grid h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { padding: 5px 0; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   INNER PAGE COMPONENTS
   ========================================================================== */

/* Hero split (calculator / generic) */
.hero-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 40px; } }
.benefit-list { list-style: none; padding: 0; margin: 28px 0 0; }
.benefit-list li { padding: 12px 0; display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--charcoal); }
.benefit-list svg { color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-card h2 { font-family: 'Fraunces', serif; font-size: 25px; font-weight: 500; margin-bottom: 12px; }
.form-card p.lede { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.trust { font-size: 13px; color: var(--muted); margin-top: 20px; text-align: center; }

/* MailerLite overrides */
.ml-embedded, #mlb2-30797867 { background: transparent !important; }
.ml-form-embedContainer { background: transparent !important; border: none !important; max-width: 100% !important; }
.ml-form-embedWrapper { background: transparent !important; box-shadow: none !important; border: none !important; }
.ml-form-embedBody, .ml-form-embedContent { padding: 0 !important; background: transparent !important; }
.ml-form-embedContent h4, .ml-form-embedContent p { display: none; }
.ml-form-fieldRow input { font-family: 'Inter', sans-serif !important; font-size: 16px !important; padding: 14px 16px !important; border: 1px solid var(--border) !important; border-radius: 10px !important; background: var(--cream) !important; color: var(--charcoal) !important; }
.ml-form-fieldRow input:focus { border-color: var(--navy) !important; outline: none !important; background: var(--white) !important; }
.ml-form-embedSubmit button { background: var(--orange) !important; color: var(--white) !important; font-family: 'Inter', sans-serif !important; font-weight: 600 !important; font-size: 16px !important; padding: 14px 24px !important; border-radius: 10px !important; border: none !important; cursor: pointer !important; transition: background 0.15s ease !important; }
.ml-form-embedSubmit button:hover { background: var(--orange-dark) !important; }

/* Included cards (calculator) */
.included { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 820px) { .included-grid { grid-template-columns: 1fr; } }
.included-card { padding: 30px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.included-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.included-card svg { color: var(--orange); margin-bottom: 16px; }
.included-card h3 { color: var(--navy); font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; margin-bottom: 10px; }
.included-card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

/* Upsell / offer bands */
.upsell, .offer { background: var(--navy); color: var(--white); }
.upsell h2, .offer h2 { color: var(--white); }
.upsell p, .offer p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; }
.offer { text-align: center; }
.offer h2 { max-width: 680px; margin: 0 auto 16px; }
.offer p { max-width: 560px; margin: 0 auto 28px; }
.upsell .btn-primary, .offer .btn-primary, .offer .btn { background: var(--orange); margin-top: 16px; }
.upsell .btn-primary:hover, .offer .btn:hover { background: var(--orange-dark); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; background: var(--cream); color: var(--charcoal); font-family: 'Inter', sans-serif; font-size: 16px; margin-bottom: 20px; transition: all 0.15s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { width: 100%; }
.info-block { margin-bottom: 32px; }
.info-block h3 { font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy); font-weight: 500; margin-bottom: 6px; }
.info-block p { color: var(--muted); margin-bottom: 4px; }
.info-block a { color: var(--navy); font-weight: 500; }
.response-note { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 24px; }
.response-note p { font-size: 14px; color: var(--muted); margin-bottom: 0; }
.response-note strong { color: var(--navy); }

/* Thank-you page */
.hero-thanks { padding: clamp(72px, 9vw, 104px) 0 64px; text-align: center; }
.thanks-icon { width: 76px; height: 76px; margin: 0 auto 24px; background: var(--white); border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); }
.thanks-icon svg { color: var(--orange); }
.hero-thanks h1 { max-width: 720px; margin: 0 auto 20px; }
.hero-thanks p.lede { max-width: 560px; margin: 0 auto 32px; }
.next-steps { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }
.step { padding: 30px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { font-family: 'Fraunces', serif; font-size: 36px; color: var(--orange); font-weight: 500; line-height: 1; margin-bottom: 12px; }
.step h3 { font-family: 'Fraunces', serif; color: var(--navy); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; margin-bottom: 0; }
.inbox-help { text-align: center; }
.inbox-help h3 { font-family: 'Fraunces', serif; color: var(--navy); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.inbox-help p { color: var(--muted); max-width: 560px; margin: 0 auto 8px; font-size: 15px; }

/* Guides index */
.hero-guides { padding: clamp(56px, 7vw, 88px) 0 12px; }
.hero-guides .lede { max-width: 600px; }
.guides-list { display: block; }
.guides-list .container { display: grid; gap: 18px; }
.guide-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 32px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.guide-card .cat { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 10px; }
.guide-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.guide-card p { color: var(--muted); margin-bottom: 0; font-size: 15.5px; }
.guide-card .arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: all 0.2s ease; }
.guide-card:hover .arrow { background: var(--orange); color: #fff; border-color: var(--orange); }
.cta-strip { background: var(--navy); color: #fff; text-align: center; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 24px; }
.cta-strip .btn-primary { background: var(--orange); }
.cta-strip .btn-primary:hover { background: var(--orange-dark); }

/* Article (guides + legal) */
.breadcrumb { font-size: 14px; color: var(--muted); padding-top: 40px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.article-head { padding: 20px 0 8px; }
.article-head h1 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 16px; }
.article-head .meta { color: var(--muted); font-size: 14px; }
.article-head .cat { display: inline-block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 14px; }
.article-body { padding: 24px 0 40px; font-size: 18px; line-height: 1.7; }
.article-body h2 { font-size: clamp(24px, 3vw, 32px); margin: 44px 0 14px; }
.article-body h3 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--navy); font-size: 22px; margin: 30px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 9px; }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--orange); }
.toc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; margin: 8px 0 32px; }
.toc h3 { font-family: 'Inter', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 14px; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 9px; }
.toc a { color: var(--navy); text-decoration: none; font-weight: 500; font-size: 15.5px; }
.toc a:hover { color: var(--orange); }
.callout { background: var(--orange-soft); border: 1px solid #F1CBA6; border-left: 4px solid var(--orange); border-radius: 12px; padding: 22px 26px; margin: 26px 0; }
.callout p { margin-bottom: 0; color: var(--charcoal); font-size: 16px; }
.callout strong { color: var(--navy); }
.template-block { background: var(--navy-deep); color: #E8EEF5; border-radius: var(--radius); padding: 30px 32px; margin: 26px 0; font-size: 15.5px; line-height: 1.6; }
.template-block h3 { color: #fff; font-family: 'Fraunces', serif; margin-bottom: 14px; }
.template-block p { color: #C7D3E0; margin-bottom: 12px; }
.cta-inline { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 32px; margin: 36px 0 8px; box-shadow: var(--shadow-sm); }
.cta-inline h3 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--navy); font-size: 22px; margin-bottom: 8px; }
.cta-inline p { color: var(--muted); margin-bottom: 18px; }

/* 404 */
.notfound-main { min-height: 64vh; display: flex; align-items: center; padding: 80px 24px; }
.notfound-wrap { max-width: 760px; margin: 0 auto; }
.notfound-wrap h1 { font-size: clamp(44px, 7vw, 84px); line-height: 1; margin-bottom: 16px; }
.notfound-wrap h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 12px; }
.notfound-wrap p { max-width: 520px; margin-bottom: 24px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-list { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.link-list h3 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.link-list ul { list-style: none; }
.link-list li { padding: 6px 0; }
.link-list a { color: var(--navy); font-weight: 500; }
.link-list a:hover { color: 