/* ==========================================================================
   SIPGrow — base stylesheet
   Rebrand by editing the CSS variables below + js/config.js
   ========================================================================== */

:root {
  --green-900: #1b4d20;
  --green-700: #256b2c;
  --green-600: #2e8b36;
  --green-500: #3fa845;
  --green-400: #5fb965;
  --green-300: #8fd19a;
  --green-200: #bfe6c6;
  --green-100: #e9f7ea;
  --green-050: #f3fbf3;

  --ink: #17201a;
  --ink-soft: #45524b;
  --muted: #6b7a72;
  --line: #e2ece2;
  --white: #ffffff;
  --red: #d64545;
  --red-bg: #fdecec;
  --amber: #b8860b;

  /* text-on-tint pairs: used together so text always contrasts its own tag/badge background */
  --tint-bg: var(--green-100);
  --tint-ink: var(--green-700);
  /* accent text sitting directly on a page/card surface (not a tinted badge) */
  --accent-ink: var(--green-600);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(23, 32, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(23, 32, 26, 0.10);
  --shadow-lg: 0 16px 48px rgba(23, 32, 26, 0.14);

  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Dark mode ----------
   Redefines surface/text tokens only; the green accent scale (--green-500
   etc.) stays put since it already reads fine on a dark ground. System
   preference is honored unless explicitly overridden via [data-theme]. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --white: #16261c;
    --ink: #eaf3ea;
    --ink-soft: #bcd0c2;
    --muted: #86a08e;
    --line: #2a4534;
    --green-050: #101f17;
    --green-100: #17301f;
    --red-bg: #3a2020;
    --tint-bg: #1d3a26;
    --tint-ink: #8fe39c;
    --accent-ink: #6fce7d;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --white: #16261c;
  --ink: #eaf3ea;
  --ink-soft: #bcd0c2;
  --muted: #86a08e;
  --line: #2a4534;
  --green-050: #101f17;
  --green-100: #17301f;
  --red-bg: #3a2020;
  --tint-bg: #1d3a26;
  --tint-ink: #8fe39c;
  --accent-ink: #6fce7d;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-300);
  color: var(--green-900);
}
.btn-primary:hover { background: var(--green-400); color: var(--white); transform: translateY(-1px); }
.btn-solid {
  background: var(--green-600);
  color: var(--white);
}
.btn-solid:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-500);
  color: var(--accent-ink);
}
.btn-outline:hover { background: var(--green-100); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--green-500);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { width: 34px; height: 34px; flex-shrink: 0; }
.brand-word {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1;
}
.brand-word span { color: var(--green-500); }
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.6px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-500); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  margin-top: 80px;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p { color: var(--green-200); font-size: 14px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-brand .brand-word { color: var(--white); }
.footer-brand p { margin-top: 14px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--green-300);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--green-300);
  margin-top: 24px;
  line-height: 1.7;
  max-width: 900px;
}

/* ---------- Hero / Carousel ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-050), var(--green-100));
}
.hero-slides { position: relative; min-height: 480px; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero-slide .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--tint-bg);
  color: var(--tint-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.hero-slide h1 { font-size: 40px; max-width: 560px; }
.hero-slide h1 em { color: var(--accent-ink); font-style: normal; }
.hero-slide p.lead { font-size: 17px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 24px; }
.hero-art {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-stat-row { display: flex; justify-content: space-between; gap: 16px; }
.hero-stat { flex: 1; text-align: center; padding: 14px 8px; background: var(--green-050); border-radius: var(--radius-md); }
.hero-stat strong { display: block; font-size: 22px; color: var(--accent-ink); }
.hero-stat span { font-size: 12px; color: var(--muted); }
.hero-dots { display: flex; justify-content: center; gap: 8px; padding: 18px 0; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--green-200);
  padding: 0;
}
.hero-dots button.is-active { background: var(--green-500); width: 24px; border-radius: var(--radius-pill); }

/* ---------- Generic page hero (inner pages) ---------- */
.page-hero {
  background: var(--green-050);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: 32px; margin-bottom: 8px; }
.page-hero p { max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--accent-ink); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--green-050); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 30px; }
.eyebrow {
  display: block;
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--tint-bg);
  color: var(--tint-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

.stat-card { text-align: center; padding: 24px; }
.stat-card strong { display: block; font-size: 30px; color: var(--accent-ink); }
.stat-card span { font-size: 13px; color: var(--muted); }

/* Risk profile cards (Why Us) */
.risk-card { border-top: 5px solid var(--green-300); }
.risk-card.moderate { border-top-color: var(--green-500); }
.risk-card.aggressive { border-top-color: var(--green-700); }
.risk-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--tint-bg);
  color: var(--tint-ink);
  margin-bottom: 14px;
}
.risk-bar { display: flex; height: 8px; border-radius: var(--radius-pill); overflow: hidden; margin: 14px 0; background: var(--green-050); }
.risk-bar span { display: block; height: 100%; }

/* Quote / behavior gap callout */
.callout {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.callout strong { color: var(--green-300); }
.callout .big-num { font-size: 46px; font-weight: 800; color: var(--green-300); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--green-600), var(--green-700));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 52px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--green-100); max-width: 520px; margin: 0 auto 24px; }

/* ---------- Timeline (What We Do) ---------- */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: "";
  position: absolute; left: 10px; top: 6px; bottom: 6px;
  width: 2px; background: var(--green-200);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -31px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green-500);
}
.timeline-item h3 { font-size: 17px; margin-bottom: 4px; }

/* ---------- Blog ---------- */
.blog-card img, .blog-card .blog-thumb { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
}
.blog-card { padding: 0; overflow: hidden; }
.blog-card .blog-body { padding: 22px; }
.blog-meta { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.blog-article { max-width: 720px; margin: 0 auto; }
.blog-article h1 { font-size: 30px; }
.blog-article .blog-meta { margin-bottom: 24px; }
.blog-article p { font-size: 16px; }
.blog-article h2 { font-size: 22px; margin-top: 32px; }

/* ---------- Forms (general) ---------- */
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a72' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
}
textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field-error {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  display: none;
}
.form-row.has-error input,
.form-row.has-error select { border-color: var(--red); background: var(--red-bg); }
.form-row.has-error .field-error { display: block; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 16px; height: 16px; margin-top: 3px; }
.checkbox-row label { font-weight: 400; font-size: 14px; margin: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ---------- Accordion (Registration) ---------- */
.accordion { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.accordion-step { border-bottom: 1px solid var(--green-700); }
.accordion-step:last-child { border-bottom: none; }
.accordion-head {
  width: 100%;
  background: var(--green-600);
  color: var(--white);
  border: none;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left;
}
.accordion-step.is-done .accordion-head { background: var(--green-700); }
.accordion-step.is-active .accordion-head { background: var(--green-700); }
.accordion-head .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  margin-right: 12px;
}
.accordion-step.is-done .step-num { background: var(--white); color: var(--accent-ink); }
.accordion-chevron { transition: transform 0.2s ease; font-size: 13px; }
.accordion-step.is-active .accordion-chevron { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height 0.3s ease;
}
.accordion-step.is-active .accordion-panel { max-height: 2200px; }
.accordion-panel-inner { padding: 32px 28px; }
.accordion-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
.progress-track {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.progress-track span {
  flex: 1;
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--green-200);
}
.progress-track span.is-complete { background: var(--green-500); }

.review-block { margin-bottom: 20px; }
.review-block h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--accent-ink); margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.review-block dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 0; }
.review-block dt { font-size: 12.5px; color: var(--muted); }
.review-block dd { margin: 2px 0 0; font-size: 14px; font-weight: 600; }
.edit-link { font-size: 12px; font-weight: 600; color: var(--accent-ink); }

/* ---------- Auth pages ---------- */
.auth-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: var(--green-050);
}
.auth-card { width: 100%; max-width: 420px; }
.auth-card h1 { font-size: 24px; text-align: center; }
.auth-card > p.lead { text-align: center; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-foot { text-align: center; font-size: 14px; margin-top: 18px; color: var(--ink-soft); }
.auth-foot a { color: var(--accent-ink); font-weight: 600; }

/* ---------- Dashboard ---------- */
.dash-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 70vh; }
.dash-sidebar {
  background: var(--green-900);
  color: var(--green-100);
  padding: 28px 18px;
}
.dash-sidebar a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 600; margin-bottom: 4px;
  color: var(--green-200);
}
.dash-sidebar a.active, .dash-sidebar a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.dash-main { padding: 32px; background: var(--green-050); }
.dash-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px;}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.badge-warn { background: #fff3cd; color: var(--amber); }
.badge-ok { background: var(--tint-bg); color: var(--tint-ink); }
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.summary-card { background: var(--white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.summary-card span.label { font-size: 12.5px; color: var(--muted); }
.summary-card strong { display: block; font-size: 24px; margin: 6px 0 4px; }
.summary-card .delta { font-size: 12.5px; color: var(--accent-ink); font-weight: 600; }
.dash-panel {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 26px; margin-bottom: 22px;
}
.dash-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-panel-head h3 { font-size: 16px; margin: 0; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; font-size: 12px; text-transform: uppercase; color: var(--muted); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.data-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); }
.data-table tr:last-child td { border-bottom: none; }
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-action {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; text-align: center; font-weight: 700; font-size: 13.5px;
}
.quick-action .qi { font-size: 22px; display:block; margin-bottom: 8px; }
.notice-banner {
  background: #fff8e6; border: 1px solid #f2d98a; color: #7a5c00;
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13.5px; margin-bottom: 22px;
  display: flex; gap: 10px; align-items: flex-start;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: 2px; font-size: 15px; }
.contact-info-item p { margin: 0; font-size: 14px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 13px; color: var(--muted); }
.tag { display: inline-block; background: var(--tint-bg); color: var(--tint-ink); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-sidebar { display: flex; overflow-x: auto; gap: 4px; padding: 14px; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 24px; gap: 6px;
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .header-actions .btn-outline { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-slide h1 { font-size: 30px; }
  .callout { grid-template-columns: 1fr; text-align: center; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .review-block dl { grid-template-columns: 1fr; }
  .accordion-panel-inner { padding: 24px 18px; }
  .section { padding: 48px 0; }
}
