:root {
  --bg: #0a0f0d;
  --bg-alt: #111916;
  --fg: #e8ede9;
  --fg-muted: #8a9b8e;
  --accent: #4ade80;
  --accent-dim: #22633d;
  --earth: #c4956a;
  --earth-dim: #5c3d22;
  --red: #ef6b6b;
  --red-dim: #5c2222;
  --dark-card: #161d19;
  --border: #1e2b22;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary,
.cta-call {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-primary {
  background: var(--accent);
  color: var(--bg);
}

.cta-primary:hover {
  background: #3cc566;
  transform: translateY(-2px);
}

.cta-secondary {
  background: var(--dark-card);
  color: var(--fg);
  border: 1.5px solid var(--accent);
}

.cta-secondary:hover {
  background: var(--bg-alt);
  border-color: #3cc566;
}

.cta-call {
  background: var(--earth);
  color: var(--bg);
}

.cta-call:hover {
  background: #d4a876;
  transform: translateY(-2px);
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 400px;
}

/* STATS */
.stats {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.stat-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 48px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-green {
  background: linear-gradient(145deg, var(--accent-dim) 0%, var(--bg-alt) 60%);
}

.feature-earth {
  background: linear-gradient(145deg, var(--earth-dim) 0%, var(--bg-alt) 60%);
}

.feature-red {
  background: linear-gradient(145deg, var(--red-dim) 0%, var(--bg-alt) 60%);
}

.feature-dark {
  background: var(--dark-card);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* APPROACH */
.approach {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approach-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.approach-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.approach-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.approach-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.approach-item strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 4px;
}

.approach-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* TRUST BADGES */
.trust-badges {
  padding: 20px 40px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.trust-badges-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.trust-badge:hover {
  color: var(--accent);
}

.trust-badge-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-badge-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* EMOTIONAL CONVERSION */
.emotional {
  padding: 80px 40px;
  background: var(--bg);
}

.emotional-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.emotional-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
}

.emotional-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.emotional-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.emotional-highlight {
  color: var(--accent);
}

.emotional-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Emotion cards shared */
.emotion-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.emotion-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
}

.emotion-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.emotion-card p {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 700px;
}

.emotion-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}

.emotion-label-kids {
  color: var(--accent);
}

.emotion-label-pets {
  color: var(--earth);
}

.emotion-label-yard {
  color: var(--accent);
}

/* Fear card */
.emotion-fear {
  background: linear-gradient(135deg, #1a0d0d 0%, var(--bg-alt) 60%);
  border-color: rgba(239, 107, 107, 0.25);
}

.emotion-stats-row {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(239, 107, 107, 0.2);
  border-bottom: 1px solid rgba(239, 107, 107, 0.2);
  flex-wrap: wrap;
}

.emotion-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.emotion-mini-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}

.emotion-mini-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Duo row */
.emotion-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Kids card */
.emotion-kids {
  background: linear-gradient(145deg, #0d1f14 0%, var(--bg-alt) 70%);
}

/* Pets card */
.emotion-pets {
  background: linear-gradient(145deg, #1c1208 0%, var(--bg-alt) 70%);
  border-color: rgba(196, 149, 106, 0.2);
}

.emotion-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.emotion-pets .emotion-card-icon {
  color: var(--earth);
}

/* Checklist */
.emotion-checklist {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emotion-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.emotion-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  line-height: 20px;
}

.emotion-pets .emotion-checklist li::before {
  background: var(--earth-dim);
  color: var(--earth);
}

/* Backyard card */
.emotion-backyard {
  background: linear-gradient(135deg, #0c1f10 0%, var(--bg-alt) 60%);
}

.emotion-backyard-lead {
  font-size: 1.05rem !important;
  max-width: 750px !important;
  margin-bottom: 36px;
}

.emotion-backyard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.emotion-backyard-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.emotion-backyard-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.emotion-backyard-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--fg);
}

.emotion-backyard-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 100%;
  margin: 0;
}

/* CTA buttons inside emotion cards */
.emotion-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.emotion-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: -0.2px;
}

.emotion-cta-danger {
  background: var(--red);
  color: var(--bg);
}

.emotion-cta-danger:hover {
  background: #f08080;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 107, 107, 0.3);
}

.emotion-cta-green {
  background: var(--accent);
  color: var(--bg);
}

.emotion-cta-green:hover {
  background: #3cc566;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.25);
}

.emotion-cta-earth {
  background: var(--earth);
  color: var(--bg);
}

.emotion-cta-earth:hover {
  background: #d4a876;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 149, 106, 0.25);
}

.emotion-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* SERVICES */
.services {
  padding: 90px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.services-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 18px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.services-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Last 2 cards span to fill in row of 5 (3+2) */
.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--fg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--tick::before    { background: var(--accent); }
.service-card--mosquito::before { background: var(--earth); }
.service-card--seasonal::before { background: var(--accent); }
.service-card--pet::before     { background: var(--earth); }
.service-card--perimeter::before { background: var(--accent); }

.service-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.service-card--mosquito .service-card-icon,
.service-card--pet .service-card-icon {
  color: var(--earth);
}

.service-card:hover .service-card-icon {
  opacity: 1;
}

.service-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.service-card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.2s ease;
}

.service-card--mosquito .service-card-cta,
.service-card--pet .service-card-cta {
  color: var(--earth);
}

.service-card:hover .service-card-cta {
  gap: 12px;
}

/* FOOTER */
.site-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* Trust badges mobile */
  .trust-badges {
    padding: 16px 16px;
  }

  .trust-badges-inner {
    gap: 0;
    justify-content: flex-start;
  }

  .trust-badge {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .trust-badge-divider {
    display: none;
  }

  /* Emotional conversion mobile */
  .emotional {
    padding: 60px 24px;
  }

  .emotion-card {
    padding: 32px 24px;
  }

  .emotion-duo {
    grid-template-columns: 1fr;
  }

  .emotion-stats-row {
    gap: 24px;
  }

  .emotion-mini-num {
    font-size: 1.6rem;
  }

  .emotion-backyard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .emotion-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    padding: 60px 24px 40px;
    min-height: 80vh;
  }

  .hero-headline {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .cta-primary,
  .cta-secondary,
  .cta-call {
    width: 100%;
  }

  .hero-stat {
    flex-direction: column;
    gap: 8px;
  }

  .stats {
    padding: 40px 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features {
    padding: 60px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .approach {
    padding: 60px 24px;
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .closing {
    padding: 60px 24px;
  }

  .site-footer {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Services mobile */
  .services {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card {
    padding: 28px 24px 24px;
  }
}

/* LEAD FORM */
.lead-form-section {
  padding: 90px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.lead-form-inner {
  max-width: 760px;
  margin: 0 auto;
}

.lead-form-header {
  margin-bottom: 48px;
  text-align: center;
}

.lead-form-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 18px;
}

.lead-form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.lead-form-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.lead-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form-field label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.1px;
}

.required {
  color: var(--accent);
}

.optional {
  color: var(--fg-muted);
  font-weight: 400;
}

.lead-form-field input,
.lead-form-field select,
.lead-form-field textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.lead-form-field input::placeholder,
.lead-form-field textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.lead-form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9b8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.lead-form-field select option {
  background: var(--bg-alt);
}

.lead-form-field input:focus,
.lead-form-field select:focus,
.lead-form-field textarea:focus {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.08);
}

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

.lead-form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.lead-form-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
  white-space: nowrap;
}

.lead-form-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Form success state */
.lead-form-success {
  background: var(--bg);
  border: 1.5px solid var(--accent-dim);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.lead-form-success-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.lead-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lead-form-success p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* CLOSING CTAs */
.closing-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* RESPONSIVE — lead form */
@media (max-width: 768px) {
  .lead-form-section {
    padding: 60px 24px;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lead-form-submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lead-form-btn {
    width: 100%;
  }

  .closing-ctas {
    flex-direction: column;
    align-items: center;
  }

  .closing-ctas .cta-primary,
  .closing-ctas .cta-call {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}