/* =========================================================
   THE LUCKEY NECOLE CURRY AGENCY — CHECKUP LANDING
   Aesthetic: warm dark with cream accent sections,
   confident copper/gold accents, editorial trust feel
   ========================================================= */

:root {
  /* Dark palette */
  --bg: #1a1d24;
  --bg-2: #20242c;
  --bg-3: #262b35;
  --surface: #2a3038;
  --surface-2: #323943;
  --line: #3a414c;
  --line-soft: rgba(255, 255, 255, 0.08);

  --ink: #f5f1e8;
  --ink-2: #d4cfc1;
  --ink-3: #9b9588;
  --ink-4: #6a6557;

  /* Cream / light palette for varied sections */
  --cream: #f7f1e6;
  --cream-2: #efe7d4;
  --cream-line: #e0d5bc;
  --ink-on-cream: #2a2418;
  --ink-on-cream-2: #5c5240;
  --ink-on-cream-3: #8a7e64;

  /* Accent — warm Texas copper/gold */
  --accent: #e8a96d;
  --accent-2: #f4c089;
  --accent-deep: #c2783a;
  --accent-darker: #8a5424;
  --accent-glow: rgba(232, 169, 109, 0.18);
  --accent-glow-strong: rgba(232, 169, 109, 0.32);

  --good: #6fbf8a;
  --good-bg: rgba(111, 191, 138, 0.15);
  --warn: #e2a866;
  --err: #e87474;
  --info: #6da9d8;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-1: 0 1px 2px rgba(0,0,0,0.4), 0 4px 14px rgba(0,0,0,0.25);
  --shadow-2: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 0 1px var(--accent-glow), 0 20px 60px var(--accent-glow);
  --shadow-cream: 0 1px 2px rgba(60, 40, 20, 0.06), 0 8px 30px rgba(60, 40, 20, 0.08);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-2); }
em { font-style: italic; }
strong { font-weight: 600; }

.skip {
  position: absolute; left: -10000px; top: 0;
  background: var(--accent); color: #1a1410;
  padding: 8px 14px; border-radius: 6px;
  font-weight: 600; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

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

.hidden { display: none !important; }

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.85rem);
  font-variation-settings: "opsz" 144;
  font-weight: 400;
}
h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.lede {
  font-size: 1.13rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 56ch;
}
.muted { color: var(--ink-3); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 29, 36, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: 10px;
  color: #1a1410;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 2px;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.topbar-phone svg { width: 16px; height: 16px; color: var(--accent); }
.topbar-phone:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--ink);
}

/* ============================================================
   PRIVACY BANNER — prominent, top of page
   ============================================================ */
.privacy-banner {
  background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  position: relative;
  z-index: 10;
}
.privacy-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  text-align: center;
  flex-wrap: wrap;
}
.pb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: #1a1410;
}
.pb-icon svg { width: 18px; height: 18px; }
.privacy-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #1a1410;
  font-weight: 500;
  line-height: 1.4;
}
.privacy-banner p strong {
  font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,169,109,0.08), transparent 70%),
    linear-gradient(180deg, #1a1d24 0%, #20242c 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(232,169,109,0.4), transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(194,120,58,0.25), transparent 70%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,169,109,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2.5s ease-in-out infinite;
}

h1 {
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-copy .lede {
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
  color: var(--ink-2);
}
.hero-copy .lede strong { color: var(--ink); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #1a1410;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -2px 0 rgba(0,0,0,0.1) inset,
    0 14px 40px rgba(232,169,109,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  letter-spacing: -0.01em;
}
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -2px 0 rgba(0,0,0,0.1) inset,
    0 18px 50px rgba(232,169,109,0.55);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary-lg {
  padding: 22px 38px;
  font-size: 1.08rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 24px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--ink);
}

.microcopy {
  font-size: 0.85rem;
  color: var(--ink-3);
  max-width: 52ch;
  margin: 0 0 36px;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
  max-width: 540px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.proof-star {
  font-size: 1rem;
  margin-left: 3px;
  color: var(--accent);
}
.proof-unit {
  font-size: 0.85rem;
  margin-left: 3px;
  color: var(--accent-2);
  font-weight: 400;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--ink-2);
  line-height: 1.3;
  font-weight: 500;
}
.proof-label span {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 0.72rem;
}
.proof-divider {
  width: 1px; height: 36px;
  background: var(--line);
}

/* ============================================================
   HERO ART — illustrated policy cards
   ============================================================ */
.hero-art {
  position: relative;
  height: 540px;
  animation: fadeIn 1s var(--ease-out) 0.5s both;
}
.art-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.art-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
}

/* Back card (greyed out — old policy) */
.art-card {
  position: absolute;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-2);
}
.art-card-back {
  width: 75%;
  top: 8%;
  left: 5%;
  transform: rotate(-4deg);
  opacity: 0.7;
  animation: floatCard 6s ease-in-out infinite;
}
.ac-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ac-logo {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--ink-3);
  border-radius: 10px;
}
.ac-logo svg { width: 20px; height: 20px; }
.ac-logo.accent {
  background: linear-gradient(135deg, var(--accent-glow-strong), var(--accent-glow));
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(232,169,109,0.3);
}
.ac-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
}
.ac-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.ac-old {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-3);
  position: relative;
  display: inline-block;
}
.ac-old .ac-strike {
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 2px;
  background: var(--err);
  transform: rotate(-5deg);
}
.ac-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.ac-bar span {
  display: block;
  height: 100%;
  border-radius: 100px;
}
.ac-bar.accent span {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

/* Feature card (bright — new policy) */
.art-card-feature {
  width: 82%;
  top: 22%;
  right: 0;
  transform: rotate(2deg);
  background: linear-gradient(180deg, #2c333d 0%, #232830 100%);
  border-color: rgba(232,169,109,0.35);
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite 1s reverse;
  overflow: hidden;
}
.ac-corner-glow {
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%);
  pointer-events: none;
}
.ac-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}
.ac-title-feature {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.ac-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.ac-stat {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.ac-stat-highlight {
  background: var(--accent-glow);
  border-color: rgba(232,169,109,0.3);
}
.ac-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.ac-stat-val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.ac-stat-val.accent { color: var(--accent); }
.ac-stat-suffix {
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0;
}

.ac-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ac-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--good-bg);
  color: var(--good);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}
.ac-check svg { width: 12px; height: 12px; }

/* Floating chips */
.art-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(42, 48, 56, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 3;
}
.art-chip-1 {
  bottom: 14%;
  left: -16px;
  animation: floatIn 1s var(--ease-out) 1s both, floatCard 5s ease-in-out infinite 2s;
}
.art-chip-2 {
  top: 8%;
  right: -8px;
  animation: floatIn 1s var(--ease-out) 1.3s both, floatCard 5s ease-in-out infinite 3s reverse;
}
.chip-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 10px;
}
.chip-icon.green {
  background: var(--good-bg);
  color: var(--good);
}
.chip-icon svg { width: 18px; height: 18px; }
.chip-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 600;
}
.chip-val {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.tb-item svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.tb-item strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   NOT-A-LEAD BLOCK — CREAM SECTION for visual rhythm
   ============================================================ */
.not-lead {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,169,109,0.06), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink-on-cream);
  position: relative;
  overflow: hidden;
}
.not-lead::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.not-lead-inner {
  position: relative;
  z-index: 1;
}
.not-lead-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.not-lead .eyebrow {
  color: var(--accent-darker);
  margin-bottom: 18px;
}
.not-lead .eyebrow-line { background: var(--accent-darker); }
.not-lead h2 {
  color: var(--ink-on-cream);
  margin-bottom: 20px;
}
.not-lead h2 em {
  color: var(--accent-deep);
  font-style: italic;
  font-weight: 500;
}
.not-lead-lede {
  font-size: 1.05rem;
  color: var(--ink-on-cream-2);
  line-height: 1.65;
  margin: 0;
}

.not-lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nl-item {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-cream);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
  position: relative;
}
.nl-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(60,40,20,0.06), 0 16px 50px rgba(60,40,20,0.12);
}
.nl-item h3 {
  color: var(--ink-on-cream);
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 500;
}
.nl-item p {
  color: var(--ink-on-cream-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.nl-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(194,120,58,0.3);
}
.nl-icon svg { width: 28px; height: 28px; }

/* ============================================================
   CONTEXT SECTION
   ============================================================ */
.context {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.context::before {
  content: "";
  position: absolute;
  top: 20%; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.context-copy h2 {
  margin-bottom: 24px;
  max-width: 18ch;
}
.context-lede {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease);
}
.check-list li:hover {
  border-color: rgba(232,169,109,0.4);
}
.ck {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 10px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(194,120,58,0.3);
}
.ck svg { width: 18px; height: 18px; }
.check-list li strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.check-list li span:not(.ck) {
  display: block;
  color: var(--ink-3);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Texas illustration panel */
.context-art {
  position: relative;
}
.ca-frame {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.ca-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.ca-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,169,109,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.ca-tag-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
/* HQ card — featured headquarters block */
.hq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--accent-glow-strong), var(--accent-glow));
  border: 1px solid rgba(232,169,109,0.4);
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(194,120,58,0.18);
}
.hq-pin {
  position: relative;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(194,120,58,0.35);
}
.hq-pin svg { width: 24px; height: 24px; }
.hq-pin-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid var(--accent);
  opacity: 0.5;
  animation: hqPulse 2s ease-in-out infinite;
}
@keyframes hqPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}
.hq-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}
.hq-city {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hq-sub {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 3px;
}

/* Cities list */
.cities-section {
  padding: 8px 0 24px;
}
.cities-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.city-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink-2);
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.city-item:hover { color: var(--ink); }
.city-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* BIG bold "AND SERVING ALL OF TEXAS" banner */
.statewide-banner {
  margin-top: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, var(--accent-glow), transparent 70%),
    linear-gradient(180deg, rgba(232,169,109,0.06) 0%, rgba(194,120,58,0.04) 100%);
  border: 1px solid rgba(232,169,109,0.3);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.statewide-banner::before,
.statewide-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.statewide-banner::before { top: 0; }
.statewide-banner::after { bottom: 0; }

.statewide-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
}
.sw-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.statewide-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 0 40px rgba(232,169,109,0.15);
}

.statewide-sub {
  font-size: 0.82rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS — CREAM SECTION
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232,169,109,0.08), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, #f0e8d6 100%);
  color: var(--ink-on-cream);
  position: relative;
}
.testimonials::before, .testimonials::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.testimonials::before { top: 0; }
.testimonials::after { bottom: 0; }

.t-head {
  text-align: center;
  margin-bottom: 56px;
}
.t-head h2 {
  color: var(--ink-on-cream);
  max-width: 18ch;
  margin: 0 auto;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-cream);
}
.google-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.gb-stars {
  color: #f5b400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 500;
}
.gb-stars strong {
  color: var(--ink-on-cream);
  margin-left: 6px;
  font-weight: 700;
}
.gb-label {
  font-size: 0.78rem;
  color: var(--ink-on-cream-3);
  margin-top: 2px;
  text-align: left;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin: 0;
  box-shadow: var(--shadow-cream);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(60,40,20,0.06), 0 18px 50px rgba(60,40,20,0.12);
}
.t-quote-mark {
  position: absolute;
  top: -10px; right: 24px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  font-weight: 600;
  pointer-events: none;
}
.t-card-feature {
  background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
  border-color: rgba(232,169,109,0.4);
  box-shadow:
    var(--shadow-cream),
    0 0 0 1px rgba(232,169,109,0.1);
}
.t-card-ribbon {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(194,120,58,0.35);
}
.t-stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 18px;
  margin-top: 8px;
}
.t-card-feature .t-stars { margin-top: 28px; }
.t-card blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink-on-cream);
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.t-card blockquote strong {
  color: var(--accent-deep);
  font-weight: 600;
}
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4cfc1, #b5ad9c);
  color: var(--ink-on-cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.t-avatar-feature {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}
.t-card figcaption strong {
  display: block;
  color: var(--ink-on-cream);
  font-weight: 600;
}
.t-card figcaption .muted {
  font-size: 0.85rem;
  color: var(--ink-on-cream-3);
}

/* ============================================================
   CHECKUP FORM
   ============================================================ */
.checkup {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}
.checkup-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, var(--accent-glow), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.checkup .container { position: relative; z-index: 1; }

.checkup-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow:
    var(--shadow-2),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.checkup-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.checkup-head {
  margin-bottom: 40px;
  text-align: center;
}
.checkup-head h2 {
  margin-bottom: 32px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.checkup-head-sub {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto;
  padding: 16px 24px;
  max-width: 600px;
  width: 100%;
  background: var(--accent-glow);
  border: 1px solid rgba(232,169,109,0.25);
  border-radius: 16px;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
  text-align: left;
}
.checkup-head-sub svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
}
.checkup-head-sub strong { color: var(--ink); }

.checkup-card-embed {
  padding: 48px 40px 40px;
}
.embed-frame-wrap {
  width: 100%;
  min-height: 1324px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
}
.embed-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 1324px;
  min-height: 1324px;
}
.embed-call-fallback {
  text-align: center;
  margin: 24px 0 0;
  color: var(--ink-3);
  font-size: 0.9rem;
}
.embed-call-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.progress {
  max-width: 380px;
  margin: 0 auto;
}
.progress-bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line-soft);
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-2));
  border-radius: 100px;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}
.progress-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-align: center;
  font-weight: 600;
}

.step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  animation: stepIn 0.5s var(--ease-out);
}
.step.active { display: block; }
.step legend {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  padding: 0;
  width: 100%;
  text-align: center;
}
.legend-sub {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: 0 0 28px;
  line-height: 1.55;
  text-align: center;
}
.step legend + .options { margin-top: 28px; }
.step legend + .legend-sub + .options { margin-top: 0; }
.step legend + .field { margin-top: 28px; }
.step legend + .legend-sub + .field { margin-top: 0; }

.options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.options-2 { grid-template-columns: 1fr 1fr; }
.options-3 { grid-template-columns: repeat(3, 1fr); }

.opt {
  display: block;
  position: relative;
  cursor: pointer;
}
.opt input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.opt-body {
  display: block;
  padding: 20px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  position: relative;
  padding-right: 48px;
}
.opt-body-center {
  text-align: center;
  padding-right: 22px;
}
.opt-body strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
}
.opt-body span {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-3);
  margin-top: 3px;
}
.opt-body:not(.opt-body-center)::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  transition: all 0.2s var(--ease);
}
.opt:hover .opt-body {
  border-color: rgba(232,169,109,0.5);
  background: var(--surface-2);
  transform: translateY(-1px);
}
.opt input:checked + .opt-body {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 20px var(--accent-glow);
}
.opt input:checked + .opt-body strong { color: var(--ink); }
.opt input:checked + .opt-body::after {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--surface);
}
.opt input:focus-visible + .opt-body {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.opt-skip .opt-body {
  background: transparent;
  border-style: dashed;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 18px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s var(--ease);
}
.field input::placeholder { color: var(--ink-4); }
.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(232,169,109,0.06);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field input.invalid {
  border-color: var(--err);
  box-shadow: 0 0 0 3px rgba(232,116,116,0.15);
}
.error {
  display: none;
  font-size: 0.83rem;
  color: var(--err);
  margin: 6px 0 0;
}
.error.show { display: block; animation: shake 0.3s; }

.contact-toggle {
  display: inline-flex;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 16px;
}
.ct {
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 100px;
  transition: all 0.2s var(--ease);
}
.ct.active {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #1a1410;
  font-weight: 600;
  box-shadow: 0 4px 12px var(--accent-glow-strong);
}

.reassure {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,169,109,0.25);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.lock-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(194,120,58,0.3);
}
.lock-ico svg { width: 18px; height: 18px; }
.reassure p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.reassure p strong { color: var(--ink); }

.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.btn-back, .btn-next, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}
.btn-back { color: var(--ink-3); }
.btn-back svg { width: 16px; height: 16px; }
.btn-back:hover:not(:disabled) { color: var(--ink); }
.btn-back:disabled { opacity: 0.3; cursor: not-allowed; }

.btn-next, .btn-submit {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #1a1410;
  font-weight: 600;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 8px 24px var(--accent-glow-strong);
  margin-left: auto;
}
.btn-next svg, .btn-submit svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.btn-next:hover, .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 14px 32px rgba(232,169,109,0.55);
}
.btn-next:hover svg { transform: translateX(3px); }
.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Thanks */
.thanks {
  text-align: center;
  padding: 24px 0;
  animation: fadeIn 0.6s var(--ease-out);
}
.thanks-mark {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--good), #4fa372);
  color: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 12px 30px rgba(111,191,138,0.35);
  animation: popIn 0.5s var(--ease-out) 0.1s both;
}
.thanks-mark::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(111,191,138,0.3);
  animation: ripple 1.5s var(--ease-out) infinite;
}
.thanks-mark svg { width: 34px; height: 34px; }
.thanks h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.thanks-sub {
  color: var(--ink-2);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.thanks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.thanks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-size: 0.96rem;
}
.ck-sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--good-bg);
  color: var(--good);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.thanks-call {
  font-size: 0.92rem;
  color: var(--ink-3);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-2);
}
.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq-list details:hover { border-color: rgba(232,169,109,0.4); }
.faq-list details[open] {
  border-color: rgba(232,169,109,0.4);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.faq-list summary {
  list-style: none;
  padding: 22px 26px;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink-2);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-list details[open] summary { color: var(--accent); }
.faq-list details[open] .faq-toggle {
  background: var(--accent);
  transform: rotate(180deg);
}
.faq-list details[open] .faq-toggle::before,
.faq-list details[open] .faq-toggle::after {
  background: #1a1410;
}
.faq-list details[open] .faq-toggle::after { transform: scaleY(0); }
.faq-list details p {
  padding: 0 26px 26px;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 0.97rem;
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.seo-content .container { max-width: 800px; }
.seo-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 28px;
  color: var(--ink);
}
.seo-content p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 80px 0 100px;
  background: var(--bg);
}
.fc-card {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, var(--accent-glow), transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(232,169,109,0.3);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.fc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.fc-card h2 {
  margin-bottom: 14px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.fc-card p {
  color: var(--ink-2);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.fc-or {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 0.92rem !important;
  color: var(--ink-3) !important;
}
.fc-or a {
  color: var(--accent);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 48px;
}
.brand-footer { margin-bottom: 16px; }
.footer-sub {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}
.footer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-addr {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-top: 12px;
  line-height: 1.55;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.footer-rating .stars { color: #f5b400; letter-spacing: 1px; }
.footer-fine {
  font-size: 0.78rem;
  color: var(--ink-4);
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--ink-4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}
.art-card-back { --rot: -4deg; }
.art-card-feature { --rot: 2deg; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 0; transform: scale(1.4); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px rgba(232,169,109,0.05); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@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;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { height: 440px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-proof { max-width: 100%; }

  .trust-bar-inner { gap: 16px; }
  .tb-item { font-size: 0.85rem; }

  .not-lead, .context, .testimonials, .checkup, .faq, .final-cta { padding: 72px 0; }
  .not-lead-grid { grid-template-columns: 1fr; gap: 18px; }
  .context-grid { grid-template-columns: 1fr; gap: 56px; }
  .t-grid { grid-template-columns: 1fr; gap: 18px; }

  .checkup-card { padding: 44px 32px; }
  .checkup-card-embed { padding: 36px 24px 32px; }
  .checkup-head-sub { font-size: 0.85rem; padding: 10px 16px; }

  .privacy-banner-inner { padding: 10px 20px; }
  .privacy-banner p { font-size: 0.84rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .topbar-inner { gap: 12px; }
  .brand-text strong { font-size: 0.9rem; }
  .brand-sub { display: none; }
  .topbar-phone { padding: 8px 14px; font-size: 0.85rem; }
  .topbar-phone span { display: none; }

  h1 { font-size: 2rem; line-height: 1.1; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .btn-primary { padding: 16px 24px; }

  .hero-proof {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .proof-item { justify-content: flex-start; }
  .proof-divider { width: 100%; height: 1px; }

  .hero-art { height: 380px; }
  .art-card-back { width: 78%; }
  .art-card-feature { width: 86%; }
  .art-chip { padding: 10px 14px; gap: 8px; }
  .chip-icon { width: 30px; height: 30px; }
  .chip-icon svg { width: 14px; height: 14px; }
  .chip-val { font-size: 0.88rem; }
  .chip-eyebrow { font-size: 0.62rem; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }

  .nl-item { padding: 28px 24px; }

  .hq-card { padding: 18px 20px; gap: 14px; }
  .hq-pin { width: 42px; height: 42px; }
  .hq-pin svg { width: 20px; height: 20px; }
  .hq-city { font-size: 1.1rem; }
  .cities-grid { gap: 6px 18px; }
  .city-item { font-size: 0.9rem; }
  .statewide-banner { padding: 28px 18px 24px; }
  .statewide-eyebrow { font-size: 0.95rem; }

  .checkup-card { padding: 36px 24px; border-radius: var(--radius-lg); }
  .checkup-card-embed { padding: 28px 16px 24px; }
  .options-2, .options-3 { grid-template-columns: 1fr; }
  .step legend { font-size: 1.4rem; }
  .opt-body { padding: 18px 20px; padding-right: 44px; }
  .opt-body-center { padding-right: 20px; }

  .step-nav { gap: 8px; }
  .btn-back, .btn-next, .btn-submit { padding: 12px 18px; font-size: 0.9rem; }
  .btn-back span { display: none; }

  .t-card { padding: 28px 24px; }
  .t-quote-mark { font-size: 5rem; top: -4px; right: 16px; }

  .fc-card { padding: 48px 28px; }
  .seo-content { padding: 56px 0; }
  .footer { padding: 48px 0 20px; }
}
