:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-deep: #052e16;
  --green-soft: #f0fdf4;
  --green-mid: #22c55e;
  --lime: #86efac;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --wash: #f8fafc;
  --topbar: #16a34a;
  --danger: #dc2626;
  --a: #16a34a;
  --b: #2563eb;
  --c: #ca8a04;
  --d: #dc2626;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Top contact bar — Sunex style */
.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { opacity: 0.95; }

/* White header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-lockup img,
.brand-lockup .brand-mark {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  display: block;
}
.brand-lockup .brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 2px;
}
.brand-lockup .brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-lockup .brand-name sup {
  font-size: 0.45em;
  font-weight: 700;
  line-height: 0;
  margin-left: -0.28em;
  vertical-align: super;
  position: relative;
  top: -0.12em;
  letter-spacing: 0;
}
.brand-lockup .brand-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.brand-lockup.is-on-dark .brand-name { color: #fff; }
.brand-lockup.is-on-dark .brand-sub { color: #86efac; }
.site-footer .brand-lockup .brand-mark { height: 44px; width: 44px; }
.site-footer .brand-lockup .brand-name { font-size: 20px; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.nav a:hover { color: var(--green); }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--green) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.28);
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
}
.nav-cta::after { content: "↗"; font-size: 14px; }

/* Desktop/PC: text links only. Menu icon + drawer only in mobile block below. */
.nav-site .nav-menu-btn,
.nav-check .nav-menu-btn,
.nav-backdrop,
.nav-drawer {
  display: none !important;
}
.nav-site .nav-desktop,
.nav-check .nav-desktop { display: inline; }

@media (max-width: 900px) {
  .nav-site .nav-desktop,
  .nav-check .nav-desktop { display: none !important; }
  .nav-site .nav-menu-btn,
  .nav-check .nav-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-menu-icon { display: block; pointer-events: none; }
  .nav-menu-btn.is-open { border-color: var(--green); color: var(--green); }
  .nav-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s var(--ease), visibility 0.28s;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: 60vw;
    min-width: 240px;
    height: 100%;
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s var(--ease);
    visibility: hidden;
    pointer-events: none;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
  }
  .nav-drawer-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-drawer-inner {
    display: flex;
    flex-direction: column;
    padding: 12px 8px 28px;
    overflow-y: auto;
    height: calc(100% - 74px);
    -webkit-overflow-scrolling: touch;
  }
  .nav-drawer-inner a {
    display: block;
    padding: 18px 14px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    border-radius: 12px;
  }
  .nav-drawer-inner a:active,
  .nav-drawer-inner a:hover {
    color: var(--green);
    background: var(--wash);
  }
  body.nav-open { overflow: hidden; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0f172a;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 48%, rgba(15, 23, 42, 0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 72px;
  max-width: 640px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
  animation: rise 0.9s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff;
}
.hero-lede {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
  margin: 0 0 28px;
  font-weight: 500;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.3);
}
.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn::after { content: "↗"; font-size: 14px; }
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: #f1f5f9; color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn-ghost::after, .btn-outline::after { content: none; }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  box-shadow: none;
}
.btn-outline:hover { background: var(--green-soft); color: var(--green-dark); }
.btn-block { width: 100%; }
.btn-block::after { content: "↗"; }

.hero-quote {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
}

/* Sections */
.section { padding: 96px 0; background: var(--paper); }
.section-wash { background: var(--wash); }
.section-green {
  background: var(--green);
  color: #fff;
  padding: 72px 0;
}
.section-dark {
  background: var(--green-deep);
  color: #fff;
  padding: 80px 0;
}
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.section-green .eyebrow,
.section-dark .eyebrow {
  color: var(--lime);
}
.section-green .eyebrow::before,
.section-dark .eyebrow::before { background: var(--lime); }

h1, h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
h2 { font-size: clamp(30px, 3.6vw, 44px); max-width: 18ch; }
h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 32px;
  font-weight: 500;
}
.section-green .lede,
.section-dark .lede { color: rgba(255, 255, 255, 0.8); }
.section-green h2,
.section-dark h2,
.section-green h3,
.section-dark h3 { color: #fff; }

.prose { max-width: 720px; color: var(--muted); font-weight: 500; }
.prose p { margin: 0 0 14px; }
.prose h2, .prose h3 { color: var(--ink); max-width: none; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 18px; margin: 0 0 16px; }
.prose li { margin: 0 0 8px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 35%;
}
.split-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
}
.split-badge b {
  display: block;
  font-size: 28px;
  color: var(--green);
  letter-spacing: -0.03em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
}
.metric b {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.metric span {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #bbf7d0;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 15px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.info-table th, .info-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  background: var(--green-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 700;
}
.info-table td:first-child { font-weight: 700; color: var(--ink); }

.links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.2s;
}
.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}
.link-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.link-card strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.link-card p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 500; }

.page-hero {
  padding: 64px 0 56px;
  background:
    linear-gradient(135deg, rgba(5, 46, 22, 0.88), rgba(15, 23, 42, 0.75)),
    url("assets/photos/hero-rooftop.jpg") center 40%/cover;
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  max-width: 22ch;
}
.page-hero-check h1 { max-width: 28ch; }
.page-hero .lede { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero .eyebrow::before { background: var(--lime); }

/* Assessment */
.assess {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.live-item {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 16px;
}
.live-item b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.live-item span { font-size: 12px; color: var(--muted); font-weight: 600; }
.verdict {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
}
.verdict.yes { background: #ecfdf5; border-color: #86efac; }
.verdict.maybe { background: #fffbeb; border-color: #fde68a; }
.verdict.no { background: #fef2f2; border-color: #fecaca; }
.verdict.neutral {
  background: var(--wash);
  border-color: var(--line);
}
.verdict strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.verdict p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 500; }

.assess-ads {
  grid-template-columns: 0.95fr 1.05fr;
}
.assess-ads .form-shell { order: 2; }
.assess-ads .preview-panel { order: 1; }
.help-strip-after { margin-top: 28px; }
.sample-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sample-strip b {
  color: var(--ink);
  font-weight: 800;
}
.sample-strip span { white-space: nowrap; }
.next-step {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.next-step strong { display: block; margin-bottom: 6px; font-size: 16px; }
.next-step p { margin: 0; font-size: 14px; color: var(--muted); font-weight: 500; }
.next-step .cta-row { margin-top: 14px; }
.page-hero-check { padding: 36px 0 24px; }
.page-hero-check .lede { max-width: 52ch; }
.hero-jump { margin: 14px 0 0; }
.hero-jump a {
  color: var(--lime);
  font-weight: 800;
  font-size: 14px;
}
.section-check { padding-top: 28px; }
.lang-toggle {
  margin-left: auto;
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
}
.lang-toggle button {
  border: 0;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--muted);
}
.lang-toggle button.is-on {
  background: var(--green);
  color: #fff;
}
body.ads-focus .nav-desktop,
body.ads-focus .nav-menu-btn {
  display: none !important;
}
body.ads-focus .nav-drawer,
body.ads-focus .nav-backdrop {
  display: none !important;
}
.step-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.step-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  border: 1px solid var(--line);
}
.step-pill.is-active {
  background: var(--green-soft);
  color: var(--green);
  border-color: #bbf7d0;
}
.step-pill.is-done {
  background: #ecfdf5;
  color: var(--ink);
  border-color: #86efac;
}
.opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--muted);
}
.bill-chip {
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.trust-strip {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}
.trust-strip a { font-weight: 700; }
.disclaimer {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}
.disclaimer a { font-weight: 700; }
.btn-text {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.preview-panel .lede { margin-bottom: 0; }
.lock-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.lock-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: var(--wash);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.lock-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 4px;
  background: #cbd5e1;
  box-shadow: inset 0 0 0 2px #94a3b8;
}
.preview-locked .verdict { margin-top: 16px; }

.opt-units {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.opt-units summary {
  cursor: pointer;
  font-weight: 700;
}
.returning-user {
  margin: 14px 0 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--green-soft);
  border: 1px solid rgba(22, 163, 74, 0.18);
}
.returning-user p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}
.returning-change {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-sticky {
  position: sticky;
  top: 18px;
}
.preview-panel {
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  border-radius: 24px;
  padding: 28px 32px;
}
.help-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px;
}
.help-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.help-card .n {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 8px;
}
.help-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.help-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.lock-list li::before {
  background: var(--green);
  box-shadow: none;
}
@media (max-width: 900px) {
  .help-strip { grid-template-columns: 1fr; }
  .form-sticky { position: static; }
  .assess-ads .form-shell { order: -1; }
}
.form-shell h2 {
  font-size: 28px;
  max-width: none;
  margin-bottom: 6px;
}
.form-shell .hint { margin: 0 0 10px; color: var(--muted); font-size: 13px; font-weight: 500; }
label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 8px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--wash);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
  background: #fff;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.alert {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  margin-bottom: 8px;
}
.hint { color: var(--muted); font-size: 13px; margin-top: 14px; font-weight: 500; }
.hint a { font-weight: 700; }

.faq { max-width: 780px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  padding: 14px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin: 0 0 16px; font-weight: 500; }

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 28px;
  padding: 40px 44px;
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.25);
}
.cta-band h2 { color: #fff; max-width: 16ch; margin: 0 0 8px; font-size: clamp(26px, 3vw, 34px); }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.85); max-width: 40ch; font-weight: 500; }

/* Footer */
.site-footer {
  background: #022c16;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
  font-size: 14px;
  font-weight: 500;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer .brand-lockup .brand-mark { height: 44px; width: 44px; }
.site-footer h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; }
.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer a:hover { color: #fff; }
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ops */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th, .table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 12px 8px;
  vertical-align: top;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.stat b { display: block; font-size: 26px; font-weight: 800; }
.stat span { color: var(--muted); font-size: 12px; font-weight: 600; }
.grade { font-weight: 800; }
.grade.A { color: var(--a); }
.grade.B { color: var(--b); }
.grade.C { color: var(--c); }
.grade.D, .grade.F { color: var(--d); }
.toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.toolbar input, .toolbar select { width: auto; min-width: 140px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.between { justify-content: space-between; }
.kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.flyer {
  width: 148mm;
  min-height: 210mm;
  margin: 12px auto;
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  padding: 14mm;
  border-radius: 12px;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  width: auto;
  margin: 0;
  padding: 10px 14px;
  box-shadow: none;
}
.btn.ghost::after { content: none; }
.btn.ghost:hover { background: var(--wash); color: var(--ink); border-color: var(--green); }

/* Trust bar */
.trust-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.trust-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-bar-inner span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}
.testimonial-stars {
  color: var(--sun);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(22, 163, 74, 0.2);
  flex-shrink: 0;
}
.testimonial-head strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.testimonial-head span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial q {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.topbar-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.topbar-right a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .nav .hide-sm { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .help-strip { grid-template-columns: 1fr; }
  .split, .assess, .process, .metrics, .feature-grid, .foot-grid, .grid-2, .links-row, .stats, .live {
    grid-template-columns: 1fr;
  }
  .help-strip { grid-template-columns: 1fr; }
  .split-media, .split-media img { min-height: 280px; }
  .hero { min-height: 78vh; }
  .hero-content { margin-left: auto; padding: 56px 0; }
  .brand-lockup .brand-mark { height: 42px; width: 42px; }
  .section { padding: 64px 0; }
  .section.section-check { padding: 20px 0 48px; }
  .assess-ads .form-shell { order: -1; }
  .cta-band { padding: 28px; }
}
