/* Wild Edge Brush Clearing — Full Redesign
   Tech-forward, clean geometry, cool earthy palette */

/* ============================================
   Tokens
   ============================================ */
:root {
  --green-50: #eef6f0;
  --green-100: #d4ead8;
  --green-600: #1a6b30;
  --green-700: #145224;
  --green-800: #0d3a18;

  --steel-400: #6b7280;
  --steel-500: #4b5563;
  --steel-700: #1f2937;
  --steel-800: #111827;
  --steel-900: #0b0f14;

  --amber-500: #d97706;
  --amber-600: #b45309;

  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f4f6;
  --gray-200: #e2e7eb;
  --gray-300: #d1d5db;

  --color-primary: var(--green-600);
  --color-primary-dark: var(--green-700);
  --color-accent: var(--amber-500);
  --color-accent-dark: var(--amber-600);
  --color-text: var(--steel-700);
  --color-text-secondary: var(--steel-400);
  --color-surface: var(--white);
  --color-surface-alt: var(--gray-50);
  --color-surface-dark: var(--steel-800);
  --color-border: var(--gray-200);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-tight: 1.1;
  --leading-snug: 1.35;
  --leading-normal: 1.6;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  --max-w: 1140px;
  --header-h: 72px;

  --r-sm: 4px; --r-md: 6px; --r-lg: 10px; --r-xl: 16px; --r-2xl: 24px; --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--color-primary-dark); }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: var(--text-xl); letter-spacing: -0.01em; }
p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

.text-secondary { color: var(--color-text-secondary); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-3);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
  max-width: 560px;
}
.section-subtitle.centered { margin: 0 auto; }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section { padding: var(--s-20) 0; }
@media (min-width: 768px) { .section { padding: var(--s-24) 0; } }

.section-alt { background: var(--color-surface-alt); }
.section-dark { background: var(--color-surface-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .text-secondary { color: var(--gray-300); }
.section-dark .eyebrow { color: var(--green-100); }
.section-dark .section-subtitle { color: var(--gray-300); }

.section-header { margin-bottom: var(--s-12); }
.section-header h2 { margin-bottom: var(--s-4); }

/* ============================================
   Header — frosted glass
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; }

.header-actions { display: flex; align-items: center; gap: var(--s-4); }

.header-phone {
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  display: none;
}
.header-phone:hover { color: var(--color-primary); }

@media (min-width: 768px) {
  .header-phone { display: block; font-size: var(--text-xl); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--color-primary); color: var(--white); }
.btn-primary:hover { background: var(--color-primary-dark); color: var(--white); box-shadow: 0 4px 14px rgba(26,107,48,0.3); }

.btn-accent { background: var(--color-accent); color: var(--white); }
.btn-accent:hover { background: var(--color-accent-dark); color: var(--white); box-shadow: 0 4px 14px rgba(217,119,6,0.35); }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost { background: transparent; color: var(--color-primary); padding-left: 0; }
.btn-ghost:hover { color: var(--color-primary-dark); }

.btn-lg { padding: 0.875rem 2rem; font-size: var(--text-base); border-radius: var(--r-lg); }
.btn-sm { padding: 0.375rem 0.875rem; font-size: var(--text-xs); }

/* ============================================
   Hero — full viewport, centered stack
   ============================================ */
.hero {
  position: relative;
  background-color: var(--steel-900);
  background-size: cover;
  background-position: center 20%;
  color: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,15,20,0.75) 0%,
    rgba(13,58,24,0.6) 50%,
    rgba(11,15,20,0.85) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-6);
}

.hero-logo-badge {
  display: inline-block;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-4) var(--s-6);
  margin-bottom: var(--s-10);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.hero-logo-img {
  height: 140px;
  width: auto;
  display: block;
}

.hero-headline {
  font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
  color: var(--white);
  margin-bottom: var(--s-6);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-headline span {
  color: rgba(255,255,255,0.6);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto var(--s-10);
  line-height: var(--leading-snug);
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
}

@media (min-width: 480px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}

@media (min-width: 900px) {
  .hero-logo-badge { padding: var(--s-6) var(--s-8); margin-bottom: var(--s-12); }
  .hero-logo-img { height: 200px; }
}

/* ============================================
   Trust Strip
   ============================================ */
.trust-strip {
  background: var(--steel-800);
  padding: var(--s-6) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-8); }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
}

.trust-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.trust-label {
  font-size: var(--text-xs);
  color: var(--steel-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================
   Intro Split — text + large image
   ============================================ */
.intro-split {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}

.intro-text h2 { margin-bottom: var(--s-4); }
.intro-text p { color: var(--color-text-secondary); line-height: var(--leading-snug); }
.intro-text .btn { margin-top: var(--s-4); }

.intro-image {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-image img { width: 100%; display: block; }

@media (min-width: 768px) {
  .intro-split {
    grid-template-columns: 5fr 6fr;
    gap: var(--s-16);
  }
}

/* ============================================
   Benefits Band — dark strip with 3 features
   ============================================ */
.benefits-band {
  background: var(--steel-900);
  padding: var(--s-16) 0;
}

.benefits-grid {
  display: grid;
  gap: var(--s-8);
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-12); }
}

.benefit {
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: var(--s-4);
  display: block;
}

.benefit h3 {
  color: var(--white);
  margin-bottom: var(--s-2);
  font-size: var(--text-lg);
}

.benefit p {
  color: var(--steel-400);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

/* ============================================
   Bento Grid — services
   ============================================ */
.bento {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-featured {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.bento-card {
  padding: var(--s-8);
  border-radius: var(--r-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.bento-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
}

.bento-card h3 { margin-bottom: var(--s-2); }
.bento-card p { color: var(--color-text-secondary); font-size: var(--text-sm); line-height: var(--leading-snug); }

.bento-featured {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

.bento-featured h3 { color: var(--white); font-size: var(--text-2xl); }
.bento-featured p { color: var(--green-100); font-size: var(--text-base); }
.bento-featured:hover { border-color: var(--green-600); }

/* ============================================
   Timeline — how it works
   ============================================ */
.timeline {
  position: relative;
  display: grid;
  gap: var(--s-8);
}

.timeline-rail { display: none; }

.timeline-step {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
}

.timeline-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.timeline-content h3 { margin-bottom: var(--s-1); }
.timeline-content p { color: var(--color-text-secondary); font-size: var(--text-sm); line-height: var(--leading-snug); margin-bottom: 0; }

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
    padding-top: var(--s-8);
  }

  .timeline-rail {
    display: block;
    position: absolute;
    top: calc(var(--s-8) + 23px);
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: var(--gray-200);
  }

  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }
}

/* ============================================
   Service Area
   ============================================ */
.service-area-layout {
  display: grid;
  gap: var(--s-10);
  align-items: start;
}

@media (min-width: 768px) {
  .service-area-layout { grid-template-columns: 1fr 1fr; }
}

.service-area-map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

#service-area-map { width: 100%; height: 380px; contain: layout paint; }
@media (min-width: 768px) { #service-area-map { height: 440px; } }

.service-area-cities { color: var(--gray-300); }

.county-group {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.county-group:last-of-type { border-bottom: none; }
.county-group h4 { color: var(--white); font-size: var(--text-sm); font-weight: 600; margin-bottom: 2px; letter-spacing: 0; }
.county-group p { font-size: var(--text-sm); color: var(--gray-300); margin-bottom: 0; }

.service-area-note {
  margin-top: var(--s-6);
  font-size: var(--text-sm);
  color: var(--gray-300);
  opacity: 0.8;
}

/* ============================================
   Quote Split — info left, form right
   ============================================ */
.quote-split {
  display: grid;
  gap: var(--s-12);
  align-items: start;
}

@media (min-width: 900px) {
  .quote-split { grid-template-columns: 5fr 7fr; gap: var(--s-16); }
}

.quote-info h2 { margin-bottom: var(--s-4); }
.quote-info > .text-secondary { margin-bottom: var(--s-8); }

.quote-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}

.quote-perks li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.perk-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
}

.quote-phone {
  padding-top: var(--s-8);
  border-top: 1px solid var(--color-border);
}

.quote-phone p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--s-1);
}

.quote-phone-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.quote-phone-number:hover { color: var(--color-primary); }

/* Form card */
.quote-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .quote-form { padding: var(--s-10); }
}

.form-row {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

@media (min-width: 480px) {
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
  .form-row-3 { grid-template-columns: repeat(3, 1fr); }
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--s-2);
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.875rem;
  font-size: var(--text-sm);
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-md);
  background: var(--color-surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(26,107,48,0.08);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: 3px;
}

.form-submit { margin-top: var(--s-6); }
.form-submit .btn { width: 100%; }

.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: var(--s-4);
}

/* Tier help */
.tier-help { margin-bottom: var(--s-4); }
.tier-help summary { cursor: pointer; font-size: var(--text-sm); color: var(--color-primary); font-weight: 600; }
.tier-help summary:hover { color: var(--color-primary-dark); }

.tier-help-note {
  margin-top: var(--s-3);
  margin-bottom: var(--s-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #b91c1c;
}

.tier-help-content {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-3);
  padding: var(--s-4);
  background: var(--gray-50);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
}

@media (min-width: 480px) { .tier-help-content { grid-template-columns: 1fr 1fr; } }

.tier-help-content h4 { font-size: var(--text-sm); margin-bottom: var(--s-2); letter-spacing: 0; }
.tier-help-content p { font-size: var(--text-xs); color: var(--color-text-secondary); margin-bottom: var(--s-1); }

/* Acreage chip picker */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-2) var(--s-1);
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  user-select: none;
  -webkit-user-select: none;
}

.chip:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.chip.selected {
  border-color: var(--green-600);
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,48,0.12);
}

/* Form step labels & titles */
.form-step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-1);
}

.form-title {
  font-size: var(--text-xl);
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}

.form-intro {
  font-size: var(--text-sm);
  margin-bottom: var(--s-5);
}

/* Estimate result card */
.estimate-result {
  margin-bottom: var(--s-5);
}

.estimate-result-inner {
  text-align: center;
  padding: var(--s-8) var(--s-6);
  background: var(--green-50);
  border: 2px solid var(--green-600);
  border-radius: var(--r-xl);
}

.estimate-result-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: var(--s-2);
}

.estimate-result-price {
  font-size: clamp(var(--text-4xl), 8vw, var(--text-5xl));
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--s-2);
}

.estimate-result-meta {
  font-size: var(--text-sm);
  color: var(--green-700);
  margin-bottom: var(--s-4);
}

.estimate-result-note {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  max-width: 340px;
  margin: 0 auto var(--s-3);
}

.estimate-result-mobilization {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--amber-600);
  max-width: 340px;
  margin: 0 auto var(--s-4);
}

/* Large-job callout */
.large-job-callout { margin-bottom: var(--s-5); }

.large-job-callout-inner {
  text-align: center;
  padding: var(--s-8) var(--s-6);
  background: var(--amber-500);
  border-radius: var(--r-xl);
  color: var(--white);
}

.large-job-callout-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--s-3);
}

.large-job-callout-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--white);
}

.large-job-callout-text {
  font-size: var(--text-sm);
  opacity: 0.92;
  max-width: 360px;
  margin: 0 auto;
}

/* Form success */
.form-success {
  text-align: center;
  padding: var(--s-12);
  background: var(--color-surface-alt);
  border-radius: var(--r-xl);
}

.form-success .estimate-icon {
  width: 56px; height: 56px;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-4);
  font-size: 1.5rem;
}

/* ============================================
   FAQ — two-column
   ============================================ */
.faq-columns {
  columns: 1;
  column-gap: var(--s-8);
}

@media (min-width: 768px) {
  .faq-columns { columns: 2; }
}

.faq-item {
  break-inside: avoid;
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: var(--s-5) 0;
  background: none;
  border: none;
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  color: var(--color-text);
  font-family: inherit;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  font-size: var(--text-lg);
  transition: transform var(--t-base);
  color: var(--color-text-secondary);
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.faq-answer-inner { padding-bottom: var(--s-5); color: var(--color-text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }
.faq-item.active .faq-answer { max-height: 800px; }

/* ============================================
   Footer — brand + grid
   ============================================ */
.footer {
  background: var(--steel-900);
  color: var(--gray-300);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-top {
  display: grid;
  gap: var(--s-12);
  margin-bottom: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1fr 2fr; gap: var(--s-16); }
}

.footer-brand { display: flex; flex-direction: column; gap: var(--s-5); }

.footer-logo-img {
  height: auto;
  width: 220px;
  max-width: 100%;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--steel-400);
  line-height: var(--leading-snug);
}

.footer-links {
  display: grid;
  gap: var(--s-8);
}

@media (min-width: 640px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

.footer h4 {
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}

.footer p { font-size: var(--text-sm); margin-bottom: var(--s-2); line-height: var(--leading-snug); }
.footer a { color: var(--gray-300); }
.footer a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--steel-400);
}

.footer-credits-link { color: var(--steel-400); }
.footer-credits-link:hover { color: var(--white); }

/* ============================================
   Thank You Page
   ============================================ */
.thankyou-section {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-16) 0;
}
.thankyou-content { text-align: center; max-width: 560px; }

.thankyou-icon {
  width: 72px; height: 72px;
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-8);
  font-size: 2rem; color: var(--green-600);
}

.thankyou-steps {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  text-align: left;
  margin: var(--s-8) 0;
}
.thankyou-steps h3 { margin-bottom: var(--s-4); }
.thankyou-steps ol { list-style: none; counter-reset: thankyou-step; }
.thankyou-steps li {
  display: flex; gap: var(--s-3);
  margin-bottom: var(--s-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.thankyou-steps li::before {
  counter-increment: thankyou-step;
  content: counter(thankyou-step) ".";
  font-weight: 700; color: var(--green-600);
}
.thankyou-cta { margin-top: var(--s-8); }

/* ============================================
   Demand Banner
   ============================================ */
.demand-banner {
  max-width: 720px;
  margin: 0 auto var(--s-8);
  padding: var(--s-3) var(--s-5);
  background: #fef9ee;
  border: 1px solid #f6dea2;
  border-radius: var(--r-md);
  color: #7c5a0b;
  font-size: var(--text-sm);
  text-align: center;
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-6);
  opacity: 0;
  transition: opacity var(--t-base);
}
.modal-overlay.active { opacity: 1; }

.modal-content {
  background: var(--color-surface);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  max-width: 480px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px);
  transition: transform var(--t-base);
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
  position: absolute; top: var(--s-3); right: var(--s-3);
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--color-text-secondary);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.modal-close:hover { color: var(--color-text); background: var(--gray-100); }

.modal-content h3 { margin-bottom: var(--s-3); font-size: var(--text-xl); }

.credits-list { list-style: none; margin-top: var(--s-4); }
.credits-list li { padding: var(--s-3) 0; border-bottom: 1px solid var(--color-border); font-size: var(--text-sm); line-height: 1.5; }
.credits-list li:last-child { border-bottom: none; }
.credits-list a { color: var(--color-primary); text-decoration: underline; text-decoration-color: rgba(26,107,48,0.2); text-underline-offset: 2px; }
.credits-list a:hover { color: var(--color-primary-dark); text-decoration-color: var(--color-primary-dark); }

/* ============================================
   Utilities
   ============================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================
   Print
   ============================================ */
@media print {
  .header, .hero, .trust-strip, #chatbot-container { display: none; }
  .section { padding: var(--s-4) 0; }
}
