/* ============================================================
   Quote Busters — Custom Styles
   Built from Figma node 43-574 (2026-05-21 — v2 rebuild)

   Sections (in DOM order):
     Body · Typography · Buttons · Nav · Hero · Trust Strip ·
     Problem (6-card ✕/✓ grid) · How (3 steps + badges) ·
     Built to Last (4 dark cards) · Meet Kynan · FAQ ·
     Final CTA (2 choice cards + form) · Footer
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   BODY
   ──────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: var(--p--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Defensive global SVG sizing — prevents 300×150 default when a class rule
   misses or when the browser's <use> CSS inheritance is flaky (some Safari builds).
   Icons inherit the surrounding font-size by default; class rules override. */
svg { display: inline-block; vertical-align: middle; width: 1em; height: 1em; flex-shrink: 0; }


/* ────────────────────────────────────────────────────────────
   TYPOGRAPHY OVERRIDES
   ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6,
[class*="heading-"] {
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  text-wrap: balance;
  overflow-wrap: break-word;
}

[class*="paragraph-"] { margin-bottom: 0; }

/* Italic-accent — lime green italic word inside headings */
.h-accent {
  font-style: italic;
  color: var(--color-lime-soft);
  font-weight: 700;
}

[class*="sub-heading-"] {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}


/* ────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sh--font-family);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border-radius: 100vmax;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn_arrow { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn-primary {
  background: var(--color-lime-mid);
  color: var(--color-dark);
}
.btn-primary:hover { background: var(--color-lime-bright); }

.btn-outline-light {
  background: transparent;
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark-30);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-light);
}


/* ────────────────────────────────────────────────────────────
   HERO — full Figma 93-54 rebuild
   Layered: solar bg image → dark tint → CSS grid mesh → lime glow
   Nav lives INSIDE the hero as a centred white pill (per Figma)
   ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background-color: var(--color-forest-deep);
  color: var(--color-light);
  overflow: hidden;
  padding: 8.5rem 1.5rem 5.5rem;   /* top padding accommodates fixed nav (76px + 1.5rem) + content gap */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

/* ── Background layers (all z-index 0) ─────────────────────── */
.hero_bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg-solar-panels.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.hero_bg-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,58,44,0.45) 0%, rgba(28,58,44,0.85) 100%),
    linear-gradient(90deg, rgba(28,58,44,0.65) 0%, rgba(28,58,44,0.1) 65%, rgba(28,58,44,0.1) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero_bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 174px 148px;
  background-position: 50% 0;
  z-index: 0;
  pointer-events: none;
}
.hero_bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(205,243,116,0.15), transparent 65%),
    radial-gradient(ellipse 55% 55% at 5% 95%, rgba(70,99,64,0.45), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

/* ── White rounded-pill nav (FIXED — floats above all sections) ── */
.hero_nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1394px, calc(100vw - 3rem));
  height: 76.6px;
  background: var(--color-light-pure);
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem 0 2rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.18);
  transition: top 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
  will-change: top, height;
}
.hero_nav.is-scrolled {
  top: 0.75rem;
  height: 64px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.28);
}
.hero_nav.is-scrolled .hero_nav-logo img { height: 28px; }
.hero_nav.is-scrolled .hero_nav-cta { padding: 0.75rem 1.5rem; }

.hero_nav-logo { display: inline-flex; align-items: center; }
.hero_nav-logo img { height: 32px; width: auto; display: block; }

/* Right side of nav: links + Contact us together, pushed to right */
.hero_nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.hero_nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero_nav-link {
  color: #434343;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.hero_nav-link:hover { color: var(--color-forest-deep); }
.hero_nav-link--dropdown svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }

.hero_nav-cta {
  background: var(--color-forest-deep);
  color: var(--color-lime-bright);   /* matches Figma — lime text on dark pill */
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.75rem;
  border-radius: 100vmax;
  transition: background-color 0.2s, transform 0.15s;
}
.hero_nav-cta:hover { background: var(--color-forest-mid); transform: translateY(-1px); }

@media (max-width: 767px) {
  .hero_nav { padding: 0 0.625rem 0 1.25rem; height: 64px; }
  .hero_nav-links { display: none; }
  .hero_nav-cta { padding: 0.625rem 1.125rem; font-size: 0.75rem; }
  .hero_nav-logo img { height: 24px; }
}

/* ── Hero content (z-index 2) ─────────────────────────────── */
.hero_content {
  position: relative;
  z-index: 2;
  width: min(1394px, 100%);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero_grid-2 {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero_left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 42rem;
}

/* Dark green pill capsule eyebrow with chevron + lime text */
.hero_eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.875rem;
  background: var(--color-forest-deep);
  border: 1px solid rgba(205, 243, 116, 0.18);
  border-radius: 100vmax;
  color: var(--color-lime-bright);
  align-self: flex-start;
  margin-bottom: 0.25rem;
}
.hero_eyebrow-chev {
  width: 0.5rem;
  height: 0.8125rem;
  flex-shrink: 0;
  color: var(--color-lime-bright);
}
.hero_eyebrow-text {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-lime-bright);
}

.hero_headline {
  font-size: clamp(2.75rem, 5.5vw, 4.375rem);   /* up to 70px per Figma */
  line-height: 1.02;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-light);
}

.hero_subline {
  color: rgba(247, 247, 247, 0.78);
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0;
}

.hero_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ── Pill buttons (used in hero left column) ──────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 100vmax;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-pill:hover { transform: translateY(-1px); }

.btn-pill--lime {
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
}
.btn-pill--lime:hover { background: var(--color-lime-mid); }

.btn-pill--outline-light {
  background: transparent;
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-pill--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-pill_arrow {
  width: 1.125rem;
  height: 0.9375rem;
  display: inline-block;
  flex-shrink: 0;
}

/* Dark-green circle wrapper around arrow inside lime "Compare my quote" button */
.btn-pill_arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 100vmax;
  background: var(--color-forest-deep);
  flex-shrink: 0;
}
.btn-pill_arrow-circle svg { width: 0.875rem; height: 0.75rem; display: block; }
.btn-pill--lime { padding: 0.5rem 0.5rem 0.5rem 1.5rem; }  /* tighter right side so circle hugs the edge */

/* ── Right CTA card ───────────────────────────────────────── */
.hero_card {
  background: var(--color-forest-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: 0 1.75rem 5rem rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.hero_card-header { display: flex; flex-direction: column; gap: 0.25rem; }

.hero_card-eyebrow {
  color: var(--color-lime-bright);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.hero_card-title {
  color: var(--color-light);
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero_card-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero_card-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.125rem;
  padding: 1.375rem 1.5rem;
  background: var(--color-light-pure);
  color: var(--color-forest-deep);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
}
.hero_card-option:hover {
  transform: translateY(-2px);
  border-color: var(--color-lime-mid);
  box-shadow: 0 0.875rem 2rem rgba(0, 0, 0, 0.25);
}

.hero_card-option--filled {
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  border-color: transparent;
  box-shadow: 0 0.5rem 1.25rem rgba(205, 243, 116, 0.18);
}
.hero_card-option--filled:hover {
  background: var(--color-lime-mid);
  box-shadow: 0 0.875rem 2rem rgba(205, 243, 116, 0.28);
}

.hero_card-option-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(28, 58, 44, 0.08);
  color: var(--color-forest-deep);
  flex-shrink: 0;
}
.hero_card-option-icon svg { width: 1.625rem; height: 1.625rem; }
.hero_card-option--filled .hero_card-option-icon { background: rgba(28, 58, 44, 0.18); }

.hero_card-option-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.hero_card-option-title { font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.005em; }
.hero_card-option-sub { font-size: 0.8125rem; color: rgba(28, 58, 44, 0.7); line-height: 1.35; }

.hero_card-option-arrow {
  width: 1.375rem;
  height: 1.125rem;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .hero_grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-top: 7rem; padding-bottom: 4rem; min-height: auto; }
}
@media (max-width: 767px) {
  .hero { padding: 7rem 1.25rem 3.5rem; }
  .hero_headline {
    font-size: clamp(2rem, 9vw, 2.75rem);  /* 32-44px on phones */
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero_headline,
  .hero_subline { text-wrap: pretty; }
  .hero_subline { font-size: 1rem; }
  .hero_buttons .btn-pill { font-size: 0.875rem; padding: 0.875rem 1.25rem; }
  .hero_card { padding: 1.25rem; }
  .hero_card-option { padding: 0.875rem; gap: 0.625rem; }
  .hero_card-option-icon { width: 2.25rem; height: 2.25rem; }
  .hero_card-option-icon svg { width: 1.125rem; height: 1.125rem; }
  .hero_card-option-title { font-size: 0.875rem; }
  .hero_card-option-sub { font-size: 0.6875rem; }
}


/* ────────────────────────────────────────────────────────────
   TRUST STRIP — 4 pills with sub-label + main label stacked
   ──────────────────────────────────────────────────────────── */

.trust-strip {
  background: var(--color-light);
  padding: 3.5rem 0;
}

.trust-strip_container {
  width: min(1394px, 100% - 3rem);
  margin: 0 auto;
}

.trust-strip_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-strip_pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-dark-10);
  border-radius: 1.25rem;
  background: var(--color-light-pure);
  min-height: 9rem;
}

.trust-strip_sub {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage);
}

.trust-strip_label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

@media (max-width: 991px) { .trust-strip_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .trust-strip_grid { grid-template-columns: 1fr; } }


/* ────────────────────────────────────────────────────────────
   SECTION HEADER (shared across most sections)
   ──────────────────────────────────────────────────────────── */

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  margin: 0 auto 3rem;
  max-width: 56rem;
}

.section-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);   /* up to 60px per Figma */
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  color: var(--color-lime-bright);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin: 0;
}

.section-eyebrow--dark {
  color: var(--color-sage);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin: 0;
}

.section-sub {
  color: var(--color-dark-70);
  max-width: 44rem;
  font-size: 1.125rem;   /* 18px per Figma */
  line-height: 1.6;
  margin: 0;
}

.section-sub--light { color: rgba(247, 247, 247, 0.7); }


/* ────────────────────────────────────────────────────────────
   THE PROBLEM — 6-card grid, each with ✕ / ✓ split
   ──────────────────────────────────────────────────────────── */

.problem {
  background: var(--color-light);
  padding: 5rem 0;
}

.problem_container {
  width: min(1394px, 100% - 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.problem_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-forest-deep);
  color: var(--color-light);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle lime accent line on the left edge */
.problem_card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-lime-soft);
  opacity: 0.6;
}

.problem_card-number {
  color: var(--color-light);
  font-size: 1.125rem;
  font-weight: 700;
  opacity: 0.8;
}

.problem_card-title {
  color: var(--color-light);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}

.problem_card-row { display: flex; flex-direction: column; gap: 0.5rem; }

.problem_card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}
.problem_card-label svg { width: 0.875rem; height: 0.875rem; }
.problem_card-label--bad  { color: var(--color-light); }
.problem_card-label--bad  svg { color: var(--color-error); }
.problem_card-label--good { color: var(--color-light); }
.problem_card-label--good svg { color: var(--color-lime-bright); }

.problem_card-body {
  color: rgba(247, 247, 247, 0.72);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

.problem_card-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0;
}

@media (max-width: 991px) { .problem_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .problem_grid { grid-template-columns: 1fr; } }


/* ────────────────────────────────────────────────────────────
   HOW IT WORKS — 3 step cards with badge
   ──────────────────────────────────────────────────────────── */

.how {
  background: var(--color-light);
  padding: 5rem 0;
  border-top: 1px solid var(--color-dark-10);
}

.how_container {
  width: min(1394px, 100% - 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.how_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.how_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-light-pure);
  border: 1px solid var(--color-dark-10);
  border-radius: 1.25rem;
  position: relative;
}

.how_card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 100vmax;
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.how_card-title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}

.how_card-body {
  color: var(--color-dark-70);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.how_card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.5rem 0.875rem;
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  border-radius: 100vmax;
  font-size: 0.8125rem;
  font-weight: 600;
}

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


/* ────────────────────────────────────────────────────────────
   BUILT TO LAST — 4-card grid on dark bg
   ──────────────────────────────────────────────────────────── */

.built {
  background: var(--color-forest-deep);
  color: var(--color-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.built::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(205, 243, 116, 0.06), transparent 60%);
  pointer-events: none;
}

.built_container {
  position: relative;
  z-index: 1;
  width: min(1394px, 100% - 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.built_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.built_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-forest-mid);
  border: 1px solid rgba(205, 243, 116, 0.12);
  border-radius: 1.25rem;
}

.built_card-icon {
  width: 3rem; height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem;
  border-radius: 0.625rem;
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  margin-bottom: 0.5rem;
}
.built_card-icon svg,
.built_card-icon img { width: 100%; height: 100%; display: block; color: var(--color-forest-deep); }

.built_card-title {
  color: var(--color-light);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.25;
  margin: 0;
}

.built_card-body {
  color: rgba(247, 247, 247, 0.72);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

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


/* ────────────────────────────────────────────────────────────
   MEET KYNAN — split photo + bio
   ──────────────────────────────────────────────────────────── */

.kynan {
  background: var(--color-light);
  padding: 5rem 0;
}

.kynan_container {
  width: min(1394px, 100% - 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.kynan_grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.kynan_photo {
  width: 100%;
  min-height: 20rem;
  aspect-ratio: 4 / 5;
  background: var(--color-grey);
  border-radius: 1.25rem;
  border: 1px solid var(--color-dark-10);
  overflow: hidden;
  position: relative;
}

.kynan_photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey-text);
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
}

.kynan_bio { display: flex; flex-direction: column; gap: 1.25rem; }

.kynan_bio h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.1; }

.kynan_bio-line {
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.kynan_cta { margin-top: 0.5rem; }

@media (max-width: 991px) {
  .kynan_grid { grid-template-columns: 1fr; gap: 2rem; }
  .kynan_photo { max-width: 22rem; margin: 0 auto; }
}


/* ────────────────────────────────────────────────────────────
   FAQ — accordion
   ──────────────────────────────────────────────────────────── */

.faq {
  background: var(--color-light);
  padding: 5rem 0;
  border-top: 1px solid var(--color-dark-10);
}

.faq_container {
  width: min(56rem, 100% - 2rem);
  margin: 0 auto;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq_item {
  background: var(--color-light-pure);
  border: 1px solid var(--color-dark-10);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq_item.is-open { border-color: var(--color-dark); }

.faq_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  color: var(--color-dark);
  font-family: var(--p--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Green-ringed +/- indicator (uses real Figma group29 SVG visual treatment) */
.faq_icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-sage);
  border-radius: 100vmax;
  background: transparent;
  color: var(--color-forest-deep);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.faq_icon-svg { width: 0.875rem; height: 0.875rem; display: block; }
.faq_icon-v   { transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.faq_item.is-open .faq_icon-v { transform: scaleY(0); opacity: 0; }
.faq_item.is-open .faq_icon {
  background: var(--color-lime-bright);
  border-color: var(--color-lime-bright);
  color: var(--color-forest-deep);
}

.faq_body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq_item.is-open .faq_body { max-height: 24rem; }

.faq_body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-dark-70);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq_footer {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--color-dark-70);
  font-size: 0.9375rem;
}
.faq_footer a { color: var(--color-sage); font-weight: 600; }
.faq_footer a:hover { text-decoration: underline; }


/* ────────────────────────────────────────────────────────────
   FINAL CTA — dark card with 2 choice cards + form below
   ──────────────────────────────────────────────────────────── */

.final-cta {
  background: var(--color-light);
  padding: 5rem 0;
}

.final-cta_container {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
}

.final-cta_card {
  background: var(--color-forest-deep);
  color: var(--color-light);
  border-radius: 1.75rem;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.final-cta_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(205, 243, 116, 0.15), transparent 60%);
  pointer-events: none;
}

.final-cta_inner { position: relative; z-index: 1; }

.final-cta_header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta_header h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.25rem); }

.final-cta_choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.final-cta_choice {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: var(--color-forest-mid);
  border: 1px solid rgba(205, 243, 116, 0.18);
  border-radius: 1rem;
  color: var(--color-light);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
  text-align: left;
  font-family: var(--p--font-family);
}
.final-cta_choice:hover { transform: translateY(-1px); border-color: var(--color-lime-bright); }
.final-cta_choice.is-active { border-color: var(--color-lime-bright); background: rgba(205, 243, 116, 0.08); }

.final-cta_choice-icon {
  width: 3.5rem; height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  margin-bottom: 0.5rem;
}
.final-cta_choice-icon svg,
.final-cta_choice-icon img { width: 100%; height: 100%; display: block; }

.final-cta_choice-title {
  color: var(--color-light);
  font-weight: 700;
  font-size: 1.1875rem;
}

.final-cta_choice-body {
  color: rgba(247, 247, 247, 0.72);
  font-size: 0.9375rem;
  line-height: 1.5;
  flex-grow: 1;
}

.final-cta_choice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-lime-bright);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}
.final-cta_choice-link svg { width: 1rem; height: 1rem; }

.final-cta_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(205, 243, 116, 0.15);
}

.qb-form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.qb-form_field { display: flex; flex-direction: column; gap: 0.375rem; }

.qb-form_label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 247, 247, 0.7);
}

.qb-form_input, .qb-form_select, .qb-form_textarea, .qb-form_file {
  width: 100%;
  font-family: var(--p--font-family);
  font-size: 0.9375rem;
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  transition: border-color 0.2s, background-color 0.2s;
  -webkit-appearance: none;
}
.qb-form_input::placeholder, .qb-form_textarea::placeholder { color: rgba(247, 247, 247, 0.45); }
.qb-form_input:focus, .qb-form_select:focus, .qb-form_textarea:focus, .qb-form_file:focus {
  outline: none;
  border-color: var(--color-lime-bright);
  background: rgba(255, 255, 255, 0.08);
}
.qb-form_textarea { min-height: 5rem; resize: vertical; }
.qb-form_file { padding: 0.5rem; cursor: pointer; }
.qb-form_file::file-selector-button {
  border: none;
  background: var(--color-lime-bright);
  color: var(--color-dark);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  margin-right: 0.625rem;
  cursor: pointer;
}

/* Attach field — only visible when intent == "have_quote", required only then */
.qb-form_field--attach {
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
  overflow: hidden;
  max-height: 12rem;
  opacity: 1;
}
.qb-form_field--attach.is-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.qb-form_label { display: inline-flex; align-items: center; gap: 0.5rem; }
.qb-form_label-req {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  background: var(--color-lime-bright);
  color: var(--color-forest-deep);
  border-radius: 100vmax;
  letter-spacing: 0.06em;
}
.qb-form_help {
  font-size: 0.75rem;
  color: rgba(247, 247, 247, 0.55);
  margin: 0;
  line-height: 1.4;
}

.qb-form_honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.qb-form_submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }

.qb-form_legal {
  font-size: 0.75rem;
  color: rgba(247, 247, 247, 0.5);
  line-height: 1.5;
  margin: 0;
}

.qb-form_status { padding: 0.875rem 1rem; border-radius: 0.625rem; font-size: 0.875rem; display: none; }
.qb-form_status.is-success { display: block; background: rgba(115, 217, 153, 0.12); color: var(--color-success); border: 1px solid var(--color-success); }
.qb-form_status.is-error   { display: block; background: rgba(242, 115, 115, 0.12); color: var(--color-error); border: 1px solid var(--color-error); }

@media (max-width: 767px) {
  .final-cta_card { padding: 2rem 1.5rem; }
  .final-cta_choices { grid-template-columns: 1fr; }
  .qb-form_row { grid-template-columns: 1fr; }
}


/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */

.footer {
  background: var(--color-forest-deep);
  color: rgba(247, 247, 247, 0.7);
  padding: 4rem 0 1.5rem;
  font-size: 0.875rem;
}

.footer_container {
  width: min(1394px, 100% - 3rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer_brand { display: flex; flex-direction: column; gap: 1rem; max-width: 26rem; }

.footer_logo {
  display: inline-flex;
  align-items: center;
}
.footer_logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer_tagline {
  color: rgba(247, 247, 247, 0.7);
  line-height: 1.55;
  margin: 0;
}

.footer_contact { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.5rem; }
.footer_contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 247, 247, 0.85);
  transition: color 0.2s;
}
.footer_contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
}
.footer_contact-item:hover { color: var(--color-lime-bright); }

.footer_columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer_col { display: flex; flex-direction: column; gap: 0.625rem; }
.footer_col-title {
  color: var(--color-light);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 0.25rem 0;
}
.footer_link { color: rgba(247, 247, 247, 0.7); transition: color 0.2s; }
.footer_link:hover { color: var(--color-lime-bright); }

.footer_bottom {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: var(--container-xl);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 247, 247, 0.5);
  font-size: 0.8125rem;
}
.footer_links { display: flex; gap: 1rem; }

@media (max-width: 767px) {
  .footer_container { grid-template-columns: 1fr; }
  .footer_columns { grid-template-columns: 1fr 1fr; }
}


/* ────────────────────────────────────────────────────────────
   ACCESSIBILITY HELPERS
   ──────────────────────────────────────────────────────────── */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-lime-bright);
  outline-offset: 2px;
}
