/* ===================================================================
   SimpliClose Landing — styles.css  (v4 — Bold reinvention)
   Display: Bricolage Grotesque · Body/UI: Outfit
   Brand: Royal Purple #5B21B6 + warm gold accent on white/cream.
   Motion-forward, full-bleed imagery, consumer + dealer.
   =================================================================== */

/* ------------------- 1. Tokens ------------------- */
:root {
  /* Brand (tweakable) */
  --purple:        #5B21B6;
  --purple-hover:  #6D28D9;
  --purple-active: #4C1D95;
  --purple-deep:   #2A1163;
  --purple-deeper: #1E0B4B;
  --purple-tint:   #F2EEFD;
  --purple-tint-2: #E7DEFB;

  /* Accent (tweakable) */
  --gold:          #F5A524;
  --gold-soft:     #FBCF7E;

  /* Neutrals */
  --cream:         #EEE8DA;
  --cream-2:       #F7F2E9;
  --white:         #FFFFFF;
  --ink:           #1C1830;
  --ink-2:         #2A2540;
  --muted:         #6B6478;
  --muted-light:   rgba(255,255,255,0.72);
  --hairline:      rgba(28, 24, 48, 0.09);
  --hairline-strong: rgba(28, 24, 48, 0.16);

  /* Typography */
  --font-display: "Sora", "Outfit", system-ui, sans-serif;
  --font-sans:    "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(2.85rem, 1.5rem + 6vw, 5.75rem);   /* hero */
  --fs-h1:    clamp(2.5rem, 1.6rem + 4vw, 4rem);
  --fs-h2:    clamp(2rem, 1.4rem + 2.6vw, 3rem);         /* 32 -> 48 */
  --fs-h3:    clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --fs-lede:  clamp(1.0625rem, 1rem + 0.45vw, 1.3125rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.875rem;
  --fs-xs:    0.75rem;
  --fs-stat:  clamp(3rem, 2rem + 5vw, 5.5rem);

  /* Spacing (8 base) */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem;  --s-4: 2rem;
  --s-5: 2.5rem;  --s-6: 3rem;   --s-8: 4rem;    --s-10: 5rem;
  --s-12: 6rem;   --s-16: 8rem;

  /* Radius (tweakable scale via --r-scale) */
  --r-scale: 1;
  --r-sm:  calc(8px * var(--r-scale));
  --r-md:  calc(14px * var(--r-scale));
  --r-lg:  calc(20px * var(--r-scale));
  --r-xl:  calc(28px * var(--r-scale));
  --r-2xl: calc(36px * var(--r-scale));
  --r-pill: 999px;

  /* Layout */
  --container:        1240px;
  --container-wide:   1360px;
  --container-narrow: 880px;
  --gutter-mobile:    1.5rem;
  --gutter-desktop:   3rem;
  --header-h: 72px;

  /* Shadows — soft, warm, paper-on-paper */
  --sh-sm: 0 2px 8px -3px rgba(28,24,48,0.12);
  --sh-md: 0 14px 36px -18px rgba(28,24,48,0.30);
  --sh-lg: 0 30px 70px -30px rgba(42,17,99,0.45);
  --sh-purple: 0 16px 40px -16px rgba(91,33,182,0.55);

  /* Hero photo blend (tweakable) */
  --hero-photo-op: 0.3;

  /* Motion */
  --ease:    cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  140ms;
  --t-base:  280ms;
  --t-slow:  600ms;
}

/* ------------------- 2. Reset & base ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--purple); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--purple-hover); }
a:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ------------------- 3. A11y ------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 2000;
  padding: 0.75rem 1rem; background: var(--purple); color: var(--white);
  border-radius: var(--r-md); font-weight: 600; transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ------------------- 4. Layout primitives ------------------- */
.container {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
@media (min-width: 1024px) {
  .container { padding-left: var(--gutter-desktop); padding-right: var(--gutter-desktop); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--purple);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }

.section__title { font-size: var(--fs-h2); letter-spacing: -0.025em; text-wrap: balance; }
.section__title--center { text-align: center; }
.section__lede {
  margin-top: 1rem; font-size: var(--fs-lede); color: var(--muted);
  max-width: 40rem; line-height: 1.55; text-wrap: pretty;
}
.section__lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head { margin-bottom: var(--s-6); }
.section__head--center { text-align: center; }

/* ------------------- 5. Buttons ------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 1.05rem 2rem; border: none; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-size: 1.0625rem; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1; text-decoration: none; white-space: nowrap;
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.btn--primary { background: var(--purple); color: var(--white); box-shadow: var(--sh-purple); }
.btn--primary:hover { background: var(--purple-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 22px 48px -18px rgba(91,33,182,0.7); }
.btn--primary:active { background: var(--purple-active); transform: scale(0.98); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 16px 40px -16px rgba(245,165,36,0.65); }
.btn--gold:hover { background: var(--gold-soft); color: var(--ink); transform: translateY(-2px); }
.btn--gold:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); box-shadow: inset 0 0 0 1.5px #fff; }
.btn--ghost-ink { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hairline-strong); }
.btn--ghost-ink:hover { background: var(--purple-tint); color: var(--purple); box-shadow: inset 0 0 0 1.5px var(--purple-tint-2); }
.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.95rem; }
.btn--lg { padding: 1.2rem 2.4rem; font-size: 1.15rem; }
.btn__arrow { display: inline-block; transition: transform var(--t-base) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--purple); outline-offset: 4px; }
.btn--ghost:focus-visible, .btn--gold:focus-visible { outline-color: #fff; }

/* ------------------- 6. Header ------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  width: 100%; max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--gutter-mobile);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 1024px) { .header__inner { padding: 0 var(--gutter-desktop); } }
.header__logo { display: flex; align-items: center; line-height: 0; }
.header__logo img { height: 38px; width: auto; }
.header__nav { display: none; }
.header__cta-row { display: flex; align-items: center; gap: 1rem; }
.header__phone {
  display: none; align-items: center; gap: 0.45rem; white-space: nowrap;
  font-weight: 600; font-size: 0.95rem; color: var(--white);
}
.header__phone svg { width: 16px; height: 16px; }

/* over-hero (transparent) state */
.header[data-at-top="true"] .header__nav a { color: rgba(255,255,255,0.92); }
.header[data-at-top="true"] .header__nav a:hover { color: #fff; }
.header[data-at-top="true"] .header__logo--dark { display: none; }
.header[data-at-top="true"] .header__logo--light { display: block; }

/* scrolled (solid) state */
.header[data-at-top="false"] {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--hairline);
}
.header[data-at-top="false"] .header__nav a { color: var(--ink-2); }
.header[data-at-top="false"] .header__nav a:hover { color: var(--purple); }
.header[data-at-top="false"] .header__phone { color: var(--ink-2); }
.header[data-at-top="false"] .header__logo--light { display: none; }
.header[data-at-top="false"] .header__logo--dark { display: block; }
.header__logo--dark { display: none; }

@media (min-width: 940px) {
  .header__nav { display: flex; align-items: center; gap: 1.75rem; }
  .header__nav a {
    font-weight: 500; font-size: 0.98rem; letter-spacing: -0.01em; white-space: nowrap;
    transition: color var(--t-fast) var(--ease);
  }
  .header__phone { display: inline-flex; }
}

/* ------------------- 7. Hero ------------------- */
.hero {
  position: relative; min-height: 88vh; min-height: 88svh;
  display: flex; align-items: center; overflow: hidden; background: var(--purple-deep);
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: var(--hero-photo-op);
  transform: scale(1.06); animation: heroZoom 16s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(30,11,75,0.32) 0%, rgba(30,11,75,0.18) 30%,
    rgba(28,24,48,0.55) 62%, rgba(20,12,40,0.86) 88%, rgba(20,12,40,0.92) 100%);
}
@media (min-width: 1024px) {
  .hero__overlay {
    background: linear-gradient(100deg,
      rgba(20,12,40,0.85) 0%, rgba(30,11,75,0.6) 34%, rgba(30,11,75,0.12) 66%, rgba(30,11,75,0) 100%);
  }
}
.hero__content {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-wide);
  margin: 0 auto; padding: calc(var(--header-h) + var(--s-6)) var(--gutter-mobile) var(--s-10);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
}
@media (min-width: 1024px) {
  .hero { min-height: 94vh; min-height: 94svh; align-items: center; }
  .hero__content { padding: calc(var(--header-h) + var(--s-8)) var(--gutter-desktop) var(--s-8); gap: 1.6rem; }
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.6rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em; color: #fff;
}
.hero__badge b { color: var(--gold-soft); font-weight: 700; }
.hero__badge-txt { line-height: 1.3; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,165,36,0.25); }
.hero__headline {
  font-size: var(--fs-display); color: var(--white); max-width: 16ch;
  letter-spacing: -0.035em; line-height: 0.98; text-wrap: balance;
}
.hero__headline .accent { color: var(--gold); }
.hero__subhead { font-size: var(--fs-lede); color: rgba(255,255,255,0.88); max-width: 44ch; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.4rem; }
.hero__trust {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: var(--fs-small); color: rgba(255,255,255,0.78); letter-spacing: 0.01em; margin-top: 0.3rem;
}
.hero__trust .ehl-mini { display: block; width: 20px; height: 20px; flex: 0 0 auto; opacity: 0.92; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2;
  display: none; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; align-items: center; flex-direction: column; gap: 0.4rem;
}
.hero__scroll .line { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,0.6), transparent); animation: scrollPulse 1.8s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }
@media (min-width: 1024px) { .hero__scroll { display: flex; } }


/* ------------------- 8. Stats band ------------------- */
.stats {
  background: var(--purple-deep);
  background-image: radial-gradient(120% 140% at 12% -10%, rgba(109,40,217,0.7), transparent 55%),
                    radial-gradient(120% 120% at 95% 120%, rgba(245,165,36,0.16), transparent 55%);
  color: #fff; padding: var(--s-10) 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: var(--fs-stat);
  line-height: 0.92; letter-spacing: -0.04em; color: var(--gold);
  display: flex; align-items: baseline; justify-content: center; gap: 0.04em;
}
.stat__num .suffix { font-size: 0.5em; color: #fff; font-weight: 700; }
.stat__label { margin-top: 0.6rem; font-size: 0.95rem; color: rgba(255,255,255,0.82); font-weight: 500; letter-spacing: 0.01em; }
@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { position: relative; }
  .stat + .stat::before {
    content: ""; position: absolute; left: calc(var(--s-4) / -2); top: 12%; bottom: 12%;
    width: 1px; background: rgba(255,255,255,0.16);
  }
}

/* ------------------- 9. Pillars (icon-led) ------------------- */
.pillars { padding: var(--s-12) 0; background: var(--white); }
.pillars__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-2); }
.pillar {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--s-5) var(--s-5) var(--s-6);
  box-shadow: var(--sh-sm); border: 1px solid var(--hairline);
  position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pillar::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-hover));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pillar:hover::after { transform: scaleX(1); }
.pillar__icon {
  width: 60px; height: 60px; align-self: flex-start; display: grid; place-items: center;
  border-radius: var(--r-lg); margin-bottom: var(--s-3);
  background: linear-gradient(135deg, var(--purple), var(--purple-hover));
  color: #fff; box-shadow: var(--sh-purple);
  transition: transform var(--t-base) var(--ease);
}
.pillar:hover .pillar__icon { transform: scale(1.06) rotate(-3deg); }
.pillar__icon svg { width: 30px; height: 30px; }
.pillar__title { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.pillar__body { color: var(--muted); line-height: 1.6; max-width: 34ch; }
@media (min-width: 820px) { .pillars__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }

/* ------------------- 10. How it works ------------------- */
.how { padding: var(--s-12) 0; background: var(--cream-2); position: relative; }
.how__steps {
  display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-2);
}
.step {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4) var(--s-4); box-shadow: var(--sh-sm);
  border: 1px solid var(--hairline);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--purple), var(--purple-hover));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  margin-bottom: 1rem; box-shadow: var(--sh-purple);
}
.step--cap .step__number { background: linear-gradient(135deg, var(--gold), #E8901A); color: var(--ink); box-shadow: 0 14px 30px -14px rgba(245,165,36,0.7); }
.step__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step__body { color: var(--muted); line-height: 1.6; }
.how__cta-row { display: flex; justify-content: center; margin-top: var(--s-8); }
@media (min-width: 640px) { .how__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

/* ------------------- 11. Products / loan options ------------------- */
.products { padding: var(--s-12) 0; background: var(--purple-tint); }
.products__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-2); }
.product {
  background: var(--white); border-radius: var(--r-xl); padding: var(--s-5) var(--s-4);
  display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--sh-sm);
  border: 1px solid var(--hairline); position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.product::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(var(--purple), var(--purple-hover)); transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-base) var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.product:hover::before { transform: scaleY(1); }
.product__icon {
  width: 50px; height: 50px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--purple-tint); color: var(--purple); margin-bottom: 0.25rem;
}
.product__icon svg { width: 26px; height: 26px; }
.product__title { font-size: var(--fs-h3); color: var(--ink); }
.product__body { color: var(--muted); line-height: 1.6; }
.product__more { margin-top: auto; padding-top: 0.5rem; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 0.4rem; }
.product__more .arr { transition: transform var(--t-base) var(--ease); }
.product:hover .product__more .arr { transform: translateX(4px); }
@media (min-width: 820px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }

/* ------------------- 12. Testimonials ------------------- */
.tmonials { padding: var(--s-12) 0; background: var(--cream); }
.tmonials__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-2); }
.tmonial {
  background: var(--white); border-radius: var(--r-xl); padding: var(--s-5) var(--s-4);
  display: flex; flex-direction: column; gap: 1.1rem; box-shadow: var(--sh-sm);
  border: 1px solid var(--hairline);
}
.tmonial__stars { display: flex; gap: 2px; color: var(--gold); }
.tmonial__stars svg { width: 18px; height: 18px; }
.tmonial__quote { margin: 0; font-size: 1.1rem; line-height: 1.55; color: var(--ink-2); font-weight: 500; text-wrap: pretty; }
.tmonial__who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.tmonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; flex: 0 0 auto;
}
.tmonial__name { font-weight: 600; color: var(--ink); line-height: 1.2; }
.tmonial__meta { font-size: var(--fs-small); color: var(--muted); }
@media (min-width: 820px) { .tmonials__grid { grid-template-columns: repeat(3, 1fr); } }

/* ------------------- 13. Dealers band ------------------- */
.dealers {
  padding: var(--s-12) 0; color: #fff; position: relative; overflow: hidden;
  background: var(--purple-deep);
  background-image: radial-gradient(110% 120% at 100% 0%, rgba(109,40,217,0.65), transparent 55%),
                    radial-gradient(90% 120% at 0% 100%, rgba(245,165,36,0.18), transparent 50%);
}
.dealers__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
.dealers__title { font-size: var(--fs-h2); color: #fff; letter-spacing: -0.025em; text-wrap: balance; }
.dealers__lede { margin-top: 1rem; font-size: var(--fs-lede); color: rgba(255,255,255,0.82); max-width: 44ch; line-height: 1.55; }
.dealers__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--s-4); }
.dealers__list { display: grid; gap: var(--s-3); }
.dealers__feat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: var(--s-3); border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.dealers__feat:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.dealers__feat-ic {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: var(--r-md); display: grid; place-items: center;
  background: rgba(245,165,36,0.16); color: var(--gold-soft);
}
.dealers__feat-ic svg { width: 24px; height: 24px; }
.dealers__feat h4 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 0.2rem; }
.dealers__feat p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
@media (min-width: 920px) {
  .dealers__inner { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
}

/* ------------------- 14. FAQ ------------------- */
.faq { padding: var(--s-12) 0; background: var(--white); }
.faq__item { border-top: 1px solid var(--hairline); }
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600;
  color: var(--ink); cursor: pointer; list-style: none; transition: color var(--t-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--purple); }
.faq__chevron {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; background: var(--purple-tint);
  color: var(--purple); font-size: 1.1rem; font-weight: 500;
  transition: transform var(--t-base) var(--ease), background var(--t-fast) var(--ease);
}
.faq__item[open] .faq__chevron { transform: rotate(45deg); background: var(--purple); color: #fff; }
.faq__a { padding: 0 0 1.5rem; max-width: 64ch; }
.faq__a p { color: var(--muted); line-height: 1.65; }
.faq__item summary:focus-visible { outline: 2px solid var(--purple); outline-offset: 4px; border-radius: 4px; }
.faq__foot { margin-top: var(--s-6); text-align: center; color: var(--muted); }
.faq__foot a { font-weight: 600; }

/* ------------------- 15. Final CTA ------------------- */
.cta {
  position: relative; overflow: hidden; padding: var(--s-12) 0;
  background: var(--purple); color: #fff; text-align: center;
}
.cta__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.16; z-index: 0; }
.cta__overlay { position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(90% 130% at 50% -10%, rgba(109,40,217,0.55), transparent 60%); }
.cta__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.cta__title { font-size: var(--fs-h1); color: #fff; max-width: 18ch; letter-spacing: -0.03em; text-wrap: balance; }
.cta__title .accent { color: var(--gold); }
.cta__sub { font-size: var(--fs-lede); color: rgba(255,255,255,0.85); max-width: 46ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 0.4rem; }
.cta__note { font-size: var(--fs-small); color: rgba(255,255,255,0.7); margin-top: 0.4rem; }

/* ------------------- 16. Footer ------------------- */
.footer { background: var(--purple-deeper); color: #fff; padding: var(--s-10) 0 var(--s-5); }
.footer a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; }
.footer a:hover { color: var(--gold-soft); text-decoration-color: var(--gold-soft); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
.footer__col--brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__mark { height: 30px; width: auto; }
.footer__tagline { font-size: 0.95rem; color: rgba(255,255,255,0.66); max-width: 30ch; line-height: 1.5; }
.footer__heading {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-soft); margin-bottom: 0.9rem;
}
.footer__address { font-style: normal; line-height: 1.75; color: rgba(255,255,255,0.85); }
.footer__links li { margin-bottom: 0.5rem; }
.footer__col--compliance { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__ehl { line-height: 0; }
.footer__ehl img { width: 64px; height: auto; opacity: 0.92; }
.footer__nmls { font-size: var(--fs-small); line-height: 1.55; color: rgba(255,255,255,0.85); }
.footer__licensed { font-size: var(--fs-small); color: rgba(255,255,255,0.66); }
.footer__bottom {
  margin-top: var(--s-8); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.16);
  font-size: var(--fs-xs); color: rgba(255,255,255,0.6);
}
.footer__disclosure { margin-top: 0.6rem; max-width: 70rem; line-height: 1.6; }
@media (min-width: 620px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--s-6); } }

/* ------------------- 17. Scroll reveal (progressive enhancement) ------------------- */
/* Resting state is VISIBLE. JS "arms" (hides) only elements below the fold, then
   reveals them on scroll. No-JS, print, frozen-transition and snapshot contexts
   all show content because nothing is hidden unless explicitly armed. */
html.js .reveal.armed { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
html.js .reveal.armed:not(.is-in) { opacity: 0; transform: translateY(26px); }
html.js .hero .reveal.armed:not(.is-in) { transform: translateY(20px); }
/* Hard fallback — force fully visible with no transition (safety net / reduced motion). */
html.js .reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__photo { transform: none; animation: none; }
  html.js .reveal.armed, html.js .reveal.armed:not(.is-in) { opacity: 1; transform: none; transition: none; }
}
body.no-motion .hero__photo { transform: none; animation: none; }
body.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
body.no-motion .hero__badge, body.no-motion .hero__headline, body.no-motion .hero__subhead,
body.no-motion .hero__actions, body.no-motion .hero__trust { opacity: 1 !important; transform: none !important; animation: none !important; }
body.no-motion .hero__scroll .line { animation: none; }

/* ------------------- 17b. Hero color-block variant (Tweak) ------------------- */
body.hero-block .hero__photo { opacity: 0; }
body.hero-block .hero {
  background:
    radial-gradient(110% 90% at 82% -10%, var(--purple-hover), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(245,165,36,0.22), transparent 55%),
    linear-gradient(155deg, var(--purple-deep), var(--purple-deeper));
}
body.hero-block .hero__overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(20,12,40,0.35) 100%);
}

/* ------------------- 18. Print ------------------- */
@media print {
  .header, .hero__scroll, .skip-link { display: none !important; }
  .hero, .footer, .stats, .dealers, .cta { color: var(--ink) !important; background: #fff !important; }
  .hero__photo, .hero__overlay, .cta__bg, .cta__overlay { display: none; }
  .btn { border: 1px solid var(--ink); color: var(--ink) !important; background: transparent !important; box-shadow: none !important; }
}
