/* ==========================================================================
   Indian Nex Energy — Design System
   Aesthetic direction: Nature-distilled / earthy — deep forest green + warm
   amber accent on a cream base. Chosen because the business is biofuel /
   green-energy dealership support; avoids the generic blue-purple SaaS look.
   ========================================================================== */

:root {
  /* ---- Color: earthy, sustainability-forward ---- */
  --color-bg:            #FBF7EE;   /* warm cream, not stark white */
  --color-bg-alt:        #F3ECDC;   /* slightly deeper cream for section banding */
  --color-surface:       #FFFFFF;
  --color-forest-900:    #0E2A1B;   /* deepest green — headings on light */
  --color-forest-700:    #163D26;   /* primary brand green */
  --color-forest-500:    #2C6B45;   /* mid green — links, secondary buttons */
  --color-moss-300:      #8FAE8B;   /* muted moss — borders, dividers */
  --color-amber-500:     #D97B29;   /* warm amber accent — primary CTA */
  --color-amber-600:     #B8631D;   /* amber hover */
  --color-sand-200:      #E8DFC8;   /* card backgrounds */
  --color-neutral-200:   #E8EBE6;   /* cool-neutral grey (slight green bias) for card-on-grey sections */
  --color-ink:           #1B2119;   /* body text */
  --color-ink-soft:      #4A5245;   /* secondary text */
  --color-line:          #DCD3BC;   /* hairline borders */

  /* ---- Type scale (modular, 1.25 ratio) ---- */
  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.16vw, 0.94rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.13rem);
  --step-1:  clamp(1.25rem, 1.18rem + 0.35vw, 1.5rem);
  --step-2:  clamp(1.56rem, 1.42rem + 0.7vw, 2rem);
  --step-3:  clamp(1.95rem, 1.7rem + 1.25vw, 2.75rem);
  --step-4:  clamp(2.44rem, 2rem + 2.2vw, 3.75rem);
  --step-5:  clamp(3.05rem, 2.3rem + 3.7vw, 5rem);

  /* ---- 8pt spacing scale ---- */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 4px 24px rgba(14, 42, 27, 0.08);
  --shadow-lift: 0 16px 48px rgba(14, 42, 27, 0.16);

  --content-max: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* overflow-x: clip (not hidden) contains horizontal overflow WITHOUT turning
   the page into a scroll container — hidden would force overflow-y:auto and
   break position:sticky (used by the header and the stacking product cards). */
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-forest-900);
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  font-weight: 700;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 var(--space-3); color: var(--color-ink-soft); max-width: 62ch; }
a { color: inherit; }

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

section { position: relative; padding-block: var(--space-8); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest-500);
  background: rgba(44, 107, 69, 0.09);
  border: 1px solid rgba(44, 107, 69, 0.18);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}
.btn:focus-visible {
  outline: 3px solid var(--color-amber-500);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--color-amber-500);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--color-amber-600); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  border-color: rgba(251, 247, 238, 0.5);
  color: inherit;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--color-forest-700);
  color: var(--color-forest-700);
}
.btn-outline:hover { background: var(--color-forest-700); color: #fff; transform: translateY(-2px); }

/* ---- Scroll reveal (progressive enhancement) ---- */
.reveal { opacity: 1; transform: none; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 35%;
    }
  }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(2.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-forest-900);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
:root {
  --font-hero: "Montserrat", var(--font-display);
  --nav-green-a: #0f5c2c;
  --nav-green-b: #2f9e4e;
}

.site-header { position: sticky; top: 0; z-index: 100; }

.topbar { background: var(--color-surface); border-bottom: 1px solid var(--color-line); }
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem var(--space-4);
  font-size: 0.78rem;
  padding-block: 0.5rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--color-forest-700);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar-item:hover { color: var(--color-amber-500); }
.topbar-icon { font-size: 0.9em; }

.nav-bar {
  background: linear-gradient(100deg, var(--nav-green-a) 0%, var(--nav-green-b) 55%, var(--nav-green-a) 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
}

.brand { display: flex; align-items: center; gap: var(--space-2); text-decoration: none; }
.brand-logo { border-radius: var(--radius-sm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar { width: 20px; height: 2px; background: #fff; margin-inline: auto; transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out); }
.nav-toggle:focus-visible { outline: 3px solid var(--color-amber-500); outline-offset: 2px; }

.primary-nav { display: flex; align-items: center; gap: var(--space-5); }
.primary-nav > ul { list-style: none; display: flex; gap: var(--space-4); margin: 0; padding: 0; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 0.1rem;
  position: relative;
}
.primary-nav a.is-active { color: var(--color-amber-500); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--color-amber-500);
  transition: right 0.25s var(--ease-out);
}
.primary-nav a.is-active::after,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.chevron { font-size: 0.7em; transition: transform 0.2s var(--ease-out); }

/* dropdown */
.has-dropdown { position: relative; }
/* Invisible bridge over the visual gap between the trigger link and the
   dropdown panel below it (top: calc(100% + 0.6rem)) — without this, the
   cursor passes over a dead zone that belongs to neither element while
   moving down into the dropdown, :hover drops, and the menu closes before
   you can reach it. */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 190px; /* matches .dropdown's min-width, so the bridge covers it
                   fully even when the trigger link itself is narrower */
  height: 0.6rem;
}
.dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 190px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 10;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron { transform: rotate(180deg); }
.dropdown a {
  color: var(--color-ink) !important;
  text-transform: none !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--color-bg-alt); color: var(--color-forest-700) !important; }

.btn-pill {
  background: #fff;
  color: var(--color-forest-700);
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
}
.btn-pill:hover { background: var(--color-sand-200); transform: translateY(-2px); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nav-green-a);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    padding: var(--space-4);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
    max-height: 80vh;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav > ul { flex-direction: column; gap: var(--space-2); }
  .primary-nav ul a { padding-block: 0.85rem; min-height: 44px; }
  .nav-cta { text-align: center; justify-content: center; }
  .dropdown {
    position: static;
    opacity: 1; transform: none; pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.06);
    margin-top: 0.4rem;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown a { color: #fff !important; }
  .dropdown a:hover { background: rgba(255,255,255,0.12); color: #fff !important; }
}
@media (max-width: 640px) {
  .topbar-hide-sm { display: none; }
}
@media (max-width: 480px) {
  .topbar-hide-md { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
}

/* ==========================================================================
   HERO — full-bleed slider
   ========================================================================== */
.hero { padding: 0; overflow: hidden; }

.hero-slider { position: relative; min-height: 640px; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-out);
}
.hero-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,26,18,0.82) 0%, rgba(14,26,18,0.55) 48%, rgba(14,26,18,0.25) 100%);
}
.hero-slide-inner { position: relative; z-index: 1; padding-block: var(--space-8); max-width: 760px; }
.hero-slide h1 {
  font-family: var(--font-hero);
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.2rem, 1.7rem + 2.6vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: var(--space-4);
}
.hero-slide .hero-lede { color: rgba(255,255,255,0.9); font-size: var(--step-1); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease-out);
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-arrow:focus-visible { outline: 3px solid var(--color-amber-500); outline-offset: 2px; }
.hero-arrow-prev { left: var(--space-4); }
.hero-arrow-next { right: var(--space-4); }

.hero-dots { position: absolute; bottom: var(--space-4); left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 0.2rem; }
.hero-dot {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-dot::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  transition: background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.hero-dot.is-active::before { background: var(--color-amber-500); border-color: var(--color-amber-500); }
.hero-dot:focus-visible { outline: 3px solid var(--color-amber-500); outline-offset: 2px; }

.hero-cta-strip { background: linear-gradient(100deg, var(--nav-green-a), var(--nav-green-b)); }
.hero-cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-3);
}
.hero-cta-strip-inner p { margin: 0; color: #fff; font-weight: 700; font-size: var(--step-0); }
.btn-cta-strip {
  background: #fff;
  color: var(--color-forest-700);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out);
}
.btn-cta-strip:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .hero-slider { min-height: 560px; }
  .hero-arrow { width: 44px; height: 44px; font-size: 1.4rem; }
}
@media (max-width: 560px) {
  .hero-slider { min-height: 620px; }
  .hero-arrow-prev { left: var(--space-2); }
  .hero-arrow-next { right: var(--space-2); }
}

/* ==========================================================================
   SECTION HEAD (shared)
   ========================================================================== */
.section-head { max-width: 68ch; margin-bottom: var(--space-7); }
.section-head p { font-size: var(--step-0); }
.section-head-light h2, .section-head-light p { color: #fff; }
.section-head-light p { opacity: 0.85; }
.section-head-center { text-align: center; margin-inline: auto; }
.section-head-center h1 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.7rem); }
.section-head-center h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); }
.section-head-center p { font-size: 0.9rem; margin-inline: auto; }
.section-head-center .hero-actions { justify-content: center; }
.eyebrow-on-dark { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #F3D9B1; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--color-neutral-200); padding-block: var(--space-8); }
.about-card {
  background: var(--color-surface);
  border-radius: 0;
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.about-media {
  aspect-ratio: 4/3;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-copy .eyebrow { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
.about-copy h2 {
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.5rem);
  white-space: nowrap;
  margin-bottom: var(--space-2);
}
.about-copy p { font-size: 0.85rem; margin-bottom: var(--space-3); }
.about-copy h4 { font-size: 0.85rem; margin-bottom: var(--space-2); }
.about-support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
  margin: 0 0 var(--space-4);
}
.about-support-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--color-ink);
}
.about-support-list .icon { font-size: 0.95rem; flex-shrink: 0; }

.btn-solid-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  background: var(--color-forest-700);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.7rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.btn-solid-dark:hover { background: var(--color-forest-900); transform: translateY(-2px); }
.btn-solid-dark:focus-visible { outline: 3px solid var(--color-amber-500); outline-offset: 3px; }

@media (max-width: 900px) {
  .about-card { grid-template-columns: 1fr; padding: var(--space-4); }
  .about-media { max-width: 480px; margin-inline: auto; }
  .about-copy h2 { white-space: normal; }
}

/* ==========================================================================
   PRODUCTS — stacked cards
   ========================================================================== */
.products { background: var(--color-surface); padding-bottom: var(--space-7); }
.products-head { max-width: 74ch; margin-inline: auto; text-align: center; }
.products-head h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem); }
.products-head p { margin-inline: auto; font-size: 0.85rem; }

:root {
  --tint-biofuel: #E6F8EC;
  --tint-petrol:  #FBF3D8;
  --tint-cbg:     #E9EEEA;
  --tint-ev:      #E1F7F0;
}

.stack-wrap { padding-inline: clamp(1rem, 3vw, 3rem); }

.stack-card {
  max-width: var(--content-max);
  margin-inline: auto;
  margin-bottom: var(--space-5);
  border-radius: 0;
  padding: var(--space-6) clamp(1.25rem, 3vw, var(--space-6));
  box-shadow: var(--shadow-soft);
}
.stack-card:last-child { margin-bottom: 0; }
.stack-card-1 { background: var(--tint-biofuel); }
.stack-card-2 { background: var(--tint-petrol); }
.stack-card-3 { background: var(--tint-cbg); }
.stack-card-4 { background: var(--tint-ev); }

/* Stacking scroll effect: each card pins below the sticky header, and the
   next card scrolls up and overlaps it — a stacked-deck reveal. Desktop/tablet
   only; on narrow screens the cards are too tall (single column) so we keep
   them as simple stacked blocks. */
@media (min-width: 861px) {
  .stack-wrap { --stack-top: 104px; }
  .stack-card {
    position: sticky;
    margin-bottom: var(--space-4);
    /* soft shadow above so an incoming card visibly casts over the one beneath */
    box-shadow: 0 -16px 34px -20px rgba(14, 42, 27, 0.35), var(--shadow-soft);
  }
  .stack-card-1 { top: var(--stack-top);              z-index: 1; }
  .stack-card-2 { top: calc(var(--stack-top) + 16px); z-index: 2; }
  .stack-card-3 { top: calc(var(--stack-top) + 32px); z-index: 3; }
  .stack-card-4 { top: calc(var(--stack-top) + 48px); z-index: 4; }
  .stack-card:last-child { margin-bottom: 0; }
}

.stack-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}
.stack-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
}
.stack-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.eyebrow-plain {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest-500);
  margin-bottom: 0.4rem;
}
.stack-copy h3 { font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem); margin-bottom: var(--space-2); }
.stack-copy p { font-size: 0.8rem; margin-bottom: var(--space-2); }
.stack-copy h4 { font-size: 0.8rem; margin: var(--space-3) 0 var(--space-2); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-forest-500);
  color: var(--color-forest-500);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .stack-card-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .stack-card { margin-bottom: var(--space-4); }
}

/* ==========================================================================
   PROCESS — winding road with 7 stops
   ========================================================================== */
.process { background: var(--color-bg); }
.process-head { text-align: center; max-width: 70ch; margin-inline: auto; }
.ornament { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: var(--space-3); }
.ornament-line { width: 40px; height: 1px; background: var(--color-moss-300); }
.ornament-drop { color: var(--color-forest-500); font-size: 0.9rem; }
.process-head h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); }
.accent-text { color: var(--color-forest-500); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.process-lede { font-size: 0.95rem; margin-bottom: var(--space-3); }
.process-lede strong { color: var(--color-forest-700); }
.process-head p:last-child { font-size: 0.85rem; margin-inline: auto; }

.road-wrap { position: relative; max-width: var(--content-max); margin: var(--space-7) auto 0; padding: 0 var(--space-4) var(--space-6); }
.road-svg { position: absolute; left: var(--space-4); right: var(--space-4); top: 47px; width: calc(100% - 2 * var(--space-4)); height: 84px; z-index: 0; }
.road-base { fill: none; stroke: #2a2e26; stroke-width: 22; stroke-linecap: round; }
.road-dash { fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 10 12; opacity: 0.85; }
.road-plant { position: absolute; top: 72px; font-size: 1.8rem; z-index: 0; }
.road-plant-start { left: -6px; }
.road-plant-end { right: -6px; }

.road-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}
.road-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; max-width: 180px; }

.step-pin {
  width: 48px; height: 48px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: var(--color-surface);
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--color-forest-500);
}
.step-pin svg { width: 20px; height: 20px; transform: rotate(45deg); }

.step-ring {
  --ring: 220deg;
  width: 62px; height: 62px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(var(--color-forest-500) 0deg var(--ring), var(--color-line) var(--ring) 360deg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.step-num-wrap {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--color-forest-700); }

.road-step h4 {
  font-size: 0.85rem;
  min-height: 3.9rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-forest-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.road-step h4 em { display: block; font-style: normal; color: var(--color-forest-500); font-size: 0.8rem; }
.road-step p { font-size: 0.78rem; margin: 0; }

@media (max-width: 900px) {
  .road-svg, .road-plant { display: none; }
  .road-wrap { margin-top: var(--space-5); padding: 0 var(--space-4); }
  .road-steps { flex-direction: column; gap: var(--space-6); }
  .road-step { max-width: 320px; margin-inline: auto; }
  .road-step h4 { min-height: 0; }
}

/* ==========================================================================
   GROWTH — branded visual + stats
   ========================================================================== */
.growth { background: var(--color-surface); }
.growth-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.growth-visual { position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 380px; }
.growth-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.growth-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(70%, 260px);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.badge-sprout { position: absolute; top: -6px; left: 46%; font-size: 1.3rem; }
.badge-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: var(--space-3);
}
.badge-eyebrow { font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.4; }
.badge-word { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem); font-weight: 800; color: #fff; }
.badge-sub { font-size: 0.68rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.badge-text { background: radial-gradient(circle, rgba(14,42,27,0.55) 0%, rgba(14,42,27,0.18) 70%, transparent 100%); border-radius: 50%; }

.growth-copy { position: relative; padding: var(--space-3) var(--space-3) 0 0; }
.dot-grid {
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 44px;
  background-image: radial-gradient(var(--color-moss-300) 1.4px, transparent 1.4px);
  background-size: 10px 10px;
  opacity: 0.6;
}
.growth-copy h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.9rem); margin-bottom: var(--space-4); max-width: 20ch; }
.growth-copy p { font-size: 0.85rem; margin-bottom: var(--space-3); }

.growth-pill {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--color-forest-500);
  color: var(--color-forest-700);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.growth-pill svg { width: 16px; height: 16px; color: var(--color-forest-500); flex-shrink: 0; }

.growth-mini-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.contact-mini-cards { grid-template-columns: repeat(3, 1fr); }
.mini-card p a { color: var(--color-forest-500); text-decoration: underline; }
.mini-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-bottom: 3px solid var(--color-forest-500);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-4);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.mini-card svg { width: 34px; height: 34px; color: var(--color-forest-500); margin-bottom: 0.75rem; }
.mini-card h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.mini-card p { margin: 0; font-size: 0.72rem; font-weight: 700; color: var(--color-ink); line-height: 1.3; }

.growth-strip {
  margin-top: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-inline: var(--space-3);
  border-left: 1px solid var(--color-line);
}
.strip-item:first-child { border-left: none; padding-left: 0; }
.strip-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-neutral-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-forest-700);
}
.strip-icon svg { width: 22px; height: 22px; color: var(--color-forest-700); }
.strip-item strong { display: block; font-size: 0.85rem; color: var(--color-ink); margin-bottom: 0.15rem; }
.strip-item p { margin: 0; font-size: 0.75rem; }

@media (max-width: 980px) {
  .growth-panel { grid-template-columns: 1fr; }
  .growth-visual { min-height: 300px; }
  .growth-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 640px) {
  .growth-mini-cards { grid-template-columns: repeat(2, 1fr); }
  .growth-strip { grid-template-columns: 1fr; }
  .strip-item { border-left: none; padding-left: 0; border-top: 1px solid var(--color-line); padding-top: var(--space-3); }
  .strip-item:first-child { border-top: none; padding-top: 0; }
}

/* ==========================================================================
   OUR MISSION
   ========================================================================== */
.mission-section { background: var(--color-bg); overflow-x: hidden; }
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.mission-visual { position: relative; padding: var(--space-5); }
.mission-circle {
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(139, 195, 74, 0.12), var(--shadow-lift);
}
.mission-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-forest-500);
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.orbit-badge svg { width: 55%; height: 55%; }
.orbit-glow {
  width: 88px; height: 88px;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: radial-gradient(circle, #a8e063 0%, var(--color-forest-500) 100%);
  box-shadow: 0 0 32px rgba(139, 195, 74, 0.55);
}
.orbit-co2 {
  width: 68px; height: 68px;
  top: 8%; left: -4%;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-forest-700);
}
.orbit-leaf { width: 56px; height: 56px; top: 42%; left: -8%; }
.orbit-pump { width: 60px; height: 60px; top: 30%; right: -6%; }
.orbit-chart { width: 60px; height: 60px; top: 68%; right: -4%; }

.mission-particle { position: absolute; font-size: 1.4rem; opacity: 0.7; z-index: 0; }
.particle-1 { top: 10%; left: 4%; }
.particle-2 { bottom: 8%; left: 10%; }

.mission-eyebrow { color: var(--color-forest-500); margin-bottom: 0.6rem; position: relative; padding-bottom: 0.6rem; }
.mission-eyebrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--color-forest-500); }
.mission-copy h2 { font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.4rem); margin-bottom: var(--space-4); }
.mission-copy p { font-size: 0.9rem; margin-bottom: var(--space-3); }

.mission-divider { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin: var(--space-6) 0 var(--space-5); }
.mission-divider .divider-line { width: 25%; max-width: 300px; height: 1px; background: var(--color-line); }
.mission-divider .divider-drop { font-size: 0.9rem; }

.mission-values-wrap { position: relative; }
.mission-values-wrap::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--color-line);
  z-index: 0;
}
.line-dot { position: absolute; top: 50%; width: 8px; height: 8px; border-radius: 50%; transform: translateY(-50%); z-index: 0; }
.line-dot-start { left: 0; background: var(--color-line); }
.line-dot-end { right: 0; background: var(--color-forest-500); }

.mission-values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.value-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(139,195,74,0.28) 0%, rgba(139,195,74,0.08) 100%);
  color: var(--color-forest-700);
  box-shadow: 0 0 16px rgba(139,195,74,0.25);
}
.value-icon svg { width: 22px; height: 22px; color: var(--color-forest-700); }
.value-card h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.value-card p { font-size: 0.78rem; margin: 0; }

@media (max-width: 980px) {
  .mission-layout { grid-template-columns: 1fr; }
  .mission-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mission-values { grid-template-columns: 1fr; }
  .mission-values-wrap::before, .line-dot { display: none; }
  .orbit-co2, .orbit-leaf, .orbit-pump, .orbit-chart { display: none; }
}

/* ==========================================================================
   DEALERSHIP CTA — photo hero + floating form card
   ========================================================================== */
.dealership { position: relative; padding-block: var(--space-8); overflow: hidden; isolation: isolate; }
.cta-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(18px) saturate(1.05);
  transform: scale(1.1);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(230, 248, 236, 0.95) 0%,
    rgba(230, 248, 236, 0.88) 45%,
    rgba(230, 248, 236, 0.8) 70%,
    rgba(230, 248, 236, 0.72) 100%);
}

.cta-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); align-items: center; }

.cta-copy { position: relative; }
.cta-pill {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-forest-500);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.pill-green { color: var(--color-forest-500); }
.pill-dark { color: var(--color-ink); }

.cta-leaf { position: absolute; font-size: 2.4rem; opacity: 0.55; z-index: -1; }
.cta-leaf-1 { top: -2.5rem; left: -2rem; transform: rotate(-15deg); }
.cta-leaf-2 { bottom: 5.5rem; right: 8%; transform: rotate(20deg); font-size: 2rem; }

.cta-copy h2 { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem); margin-bottom: var(--space-2); }
.accent-solid { color: var(--color-forest-500); }
.cta-underline { display: block; width: 64px; height: 3px; background: var(--color-forest-500); margin-bottom: var(--space-4); }
.cta-copy p { font-size: 0.9rem; margin-bottom: var(--space-5); max-width: 52ch; }

.cta-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.cta-feature { text-align: center; }
.cta-feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.18);
  color: var(--color-forest-700);
  display: flex; align-items: center; justify-content: center;
}
.cta-feature-icon svg { width: 24px; height: 24px; }
.cta-feature p { margin: 0; font-size: 0.78rem; font-weight: 700; color: var(--color-forest-700); line-height: 1.35; }

.cta-form {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: var(--space-5);
  overflow: hidden;
}
.cta-form-head { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); }
.cta-form-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-forest-500), var(--color-forest-700));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cta-form-icon svg { width: 22px; height: 22px; }
.cta-form-head h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.cta-form-head p { font-size: 0.8rem; margin: 0; }

.cta-field {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.cta-field-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-forest-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cta-field-icon svg { width: 18px; height: 18px; }
.cta-field input, .cta-field textarea, .cta-field select {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: none;
  background: var(--color-bg);
  color: var(--color-ink);
  min-height: 44px;
}
.cta-field-textarea .cta-field-icon { align-self: stretch; height: auto; }
.cta-field textarea { resize: vertical; min-height: 60px; }
.cta-field input:focus-visible, .cta-field textarea:focus-visible, .cta-field select:focus-visible { outline: 2px solid var(--color-forest-500); outline-offset: -2px; }

.cta-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  margin-bottom: var(--space-4);
}
.cta-privacy svg { width: 16px; height: 16px; color: var(--color-forest-500); flex-shrink: 0; }
.cta-privacy a { color: var(--color-forest-500); font-weight: 700; }

.cta-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  background: linear-gradient(100deg, var(--color-forest-700), var(--color-forest-500));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out);
}
.cta-submit:hover { transform: translateY(-2px); }
.cta-submit:focus-visible { outline: 3px solid var(--color-amber-500); outline-offset: 2px; }
.cta-submit svg { width: 18px; height: 18px; }

.cta-form-decor {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 0.9rem;
  opacity: 0.5;
  letter-spacing: 0.3em;
}
.form-status { margin: var(--space-2) 0 0; font-weight: 700; font-size: var(--step--1); min-height: 1.2em; color: var(--color-forest-700); }

@media (max-width: 980px) {
  .cta-layout { grid-template-columns: 1fr; }
  .cta-overlay { background: rgba(230, 248, 236, 0.93); }
  .cta-leaf { display: none; }
}
@media (max-width: 560px) {
  .cta-features { grid-template-columns: repeat(2, 1fr); }

  .cta-form { padding: var(--space-4); }
  .cta-form-head { gap: 0.6rem; margin-bottom: var(--space-3); }
  .cta-form-icon { width: 36px; height: 36px; border-radius: 8px; }
  .cta-form-icon svg { width: 18px; height: 18px; }
  .cta-form-head h3 { font-size: 0.92rem; }
  .cta-form-head p { font-size: 0.72rem; }

  .cta-field-icon { width: 36px; height: 36px; }
  .cta-field-icon svg { width: 15px; height: 15px; }
  .cta-field input, .cta-field textarea, .cta-field select { padding: 0.65rem 0.75rem; font-size: 0.85rem; }

  .cta-privacy { font-size: 0.68rem; gap: 0.4rem; }
  .cta-privacy svg { width: 14px; height: 14px; }

  .cta-submit { font-size: 0.78rem; min-height: 44px; gap: 0.4rem; }
  .cta-submit svg { width: 15px; height: 15px; }

  .cta-form-decor { font-size: 0.7rem; margin-top: var(--space-3); }
}


/* ==========================================================================
   FOOTER — dark theme with icon-labeled link lists + utility strip
   ========================================================================== */
:root {
  --footer-bg: #05100A;
  --footer-panel: #0B1B12;
  --footer-accent: #38E27A;
  --footer-line: rgba(255,255,255,0.1);
  --footer-text: rgba(255,255,255,0.68);
}

.site-footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-7) 0 0;
  overflow: hidden;
  border-top: 2px solid var(--footer-accent);
}
.footer-media { position: absolute; inset: 0; z-index: 0; }
.footer-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.14;
  filter: grayscale(0.4) brightness(0.6);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9), transparent 55%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9), transparent 55%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-6);
}

.footer-logo { border-radius: var(--radius-sm); margin-bottom: var(--space-3); }
.footer-brand-name { color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.04em; margin: 0; }
.footer-tagline { color: var(--footer-accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0.2rem 0 0.8rem; }
.footer-underline { display: block; width: 32px; height: 2px; background: var(--footer-accent); margin-bottom: var(--space-3); }
.footer-about { font-size: 0.85rem; color: var(--footer-text); margin-bottom: var(--space-4); max-width: 42ch; }

.footer-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.footer-feature { text-align: center; }
.footer-feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: 1px solid var(--footer-line);
  background: rgba(255,255,255,0.03);
  color: var(--footer-accent);
  display: flex; align-items: center; justify-content: center;
}
.footer-feature-icon svg { width: 20px; height: 20px; }
.footer-feature p { margin: 0; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: #fff; line-height: 1.4; }

.site-footer h4 { color: #fff; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: var(--space-3); }

.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--footer-line);
}
.footer-link-list li:first-child { padding-top: 0; }
.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  text-decoration: none;
  color: var(--footer-text);
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-link-list a:hover { color: #fff; }
.footer-link-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--footer-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-accent);
}
.footer-link-icon svg { width: 16px; height: 16px; }
.chev { color: var(--footer-text); opacity: 0.6; }
.footer-link-list a:hover + .chev,
.footer-link-list a:hover ~ .chev { color: var(--footer-accent); opacity: 1; }

.footer-utility {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: var(--space-5);
  background: var(--footer-panel);
  border: 1px solid var(--footer-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}
.footer-utility-item { display: flex; align-items: center; gap: var(--space-3); }
.footer-utility-item + .footer-utility-item { border-left: 1px solid var(--footer-line); padding-left: var(--space-5); }
.utility-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(56, 226, 122, 0.12);
  color: var(--footer-accent);
  display: flex; align-items: center; justify-content: center;
}
.utility-icon svg { width: 20px; height: 20px; }
.footer-utility-item strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.2rem; }
.footer-utility-item p { margin: 0; font-size: 0.76rem; color: var(--footer-text); }
.utility-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--footer-accent);
  color: #05100A;
  display: flex; align-items: center; justify-content: center;
}
.utility-arrow svg { width: 18px; height: 18px; }

.footer-social-inner { width: 100%; }
.footer-social-inner strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.6rem; }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--footer-line);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.social-icons a svg { width: 17px; height: 17px; }
.social-icons a:hover { background: var(--footer-accent); color: #05100A; }

.footer-newsletter { flex-wrap: wrap; }
.newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--footer-line);
  border-radius: 999px;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.9rem 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus-visible { outline: none; }
.newsletter-form button {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--footer-accent);
  color: #05100A;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.newsletter-form button svg { width: 16px; height: 16px; }

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-top: 1px solid var(--footer-line);
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; }
.footer-credit { margin-left: 0.5rem; padding-left: 0.5rem; border-left: 1px solid var(--footer-line); opacity: 0.85; }
.footer-credit a { color: var(--footer-accent); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--footer-accent);
  text-decoration: none;
  font-weight: 700;
}
.back-to-top svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-utility { grid-template-columns: 1fr; }
  .footer-utility-item + .footer-utility-item { border-left: none; padding-left: 0; border-top: 1px solid var(--footer-line); padding-top: var(--space-4); margin-top: var(--space-1); }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-features { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   ABOUT PAGE — hero, difference, team, who-we-serve bands
   ========================================================================== */
.about-hero { background: var(--color-bg); padding-bottom: var(--space-6); }
.difference { background: var(--color-surface); }
.team-section { background: var(--color-bg-alt); }
.serve-section { background: var(--color-surface); }

/* ==========================================================================
   DEALERSHIP PAGE — numbered steps, standalone form, checklist, FAQ
   ========================================================================== */
.value-icon .step-num { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; }

.team-section .check-list { max-width: 640px; margin-inline: auto; gap: 0.75rem; }
.team-section .check-list li { font-size: 0.85rem; }

.apply-form-wrap { max-width: 560px; margin-inline: auto; }

.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-4);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-forest-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-forest-500);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 var(--space-4) var(--space-4); margin: 0; font-size: 0.85rem; }

/* ==========================================================================
   LEGAL PAGES — privacy, terms
   ========================================================================== */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content p { max-width: none; font-size: 0.92rem; }
.legal-content h2 { font-size: var(--step-2); margin-top: var(--space-6); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { margin: 0 0 var(--space-3); padding-left: 1.25rem; color: var(--color-ink-soft); }
.legal-content li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.legal-content .legal-updated { font-size: var(--step--1); color: var(--color-ink-soft); margin-bottom: var(--space-5); }

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery-item { margin: 0; background: var(--color-surface); box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-item figcaption { padding: var(--space-3); font-weight: 700; font-size: 0.85rem; color: var(--color-forest-900); }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
