/* ── Google Fonts loaded in HTML ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ── */
:root {
  --bg:        #F7F4EE;
  --green:     #2A5116;
  --green-dark:#1A3A0C;
  --sage:      #7A9A5C;
  --gold:      #C8A84B;
  --gold-light:#E8C96B;
  --text:      #1C1C1C;
  --muted:     #5A5A5A;
  --white:     #FFFFFF;
  --border:    #DDD8CE;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --radius:    6px;
  --transition:0.25s ease;
  --hero-bg:   url('https://images.unsplash.com/photo-1771181999292-50489609eab9?auto=format&fit=crop&w=1920&q=80');
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ── Layout Helpers ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.text-center { text-align: center; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  margin-bottom: 16px;
  color: var(--green-dark);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(247, 244, 238, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav a:hover { color: var(--green); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,81,22,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.4);
}
.btn-lg { padding: 15px 36px; font-size: 0.95rem; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(160deg, rgba(15,30,10,0.70) 0%, rgba(10,25,5,0.55) 50%, rgba(20,45,10,0.65) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.2);
  border: 1px solid rgba(200,168,75,0.5);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--green);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.15);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  display: block;
}

/* ── Services ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--sage);
  transition: background var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--sage);
}
.service-card:hover::before { background: var(--green); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(42,81,22,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Why Us ── */
.why-us { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.why-item h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.why-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── About ── */
.about {
  background: var(--green-dark);
  color: var(--white);
}
.about .section-label { color: var(--gold-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-detail-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.about-detail-item:first-child { padding-top: 0; }
.about-detail-item:last-child { border-bottom: none; }
.about-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-detail-value {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* ── Financial Impact ── */
.impact {
  background: var(--green-dark);
  color: var(--white);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.impact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px;
}
.impact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.impact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.impact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.impact-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.impact-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.impact-link:hover { color: var(--gold-light); }

/* ── Risk Mitigation ── */
.risk { background: var(--white); border-top: 1px solid var(--border); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.risk-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.risk-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
}
.risk-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.risk-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.risk-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Quote Process ── */
.process {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all var(--transition);
}
.process-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--sage);
}
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(42,81,22,0.08);
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.process-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.process-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Service Area ── */
.service-area {
  background: var(--green-dark);
  color: var(--white);
}
.service-area .section-label { color: var(--gold-light); }
.service-area .section-title { color: var(--white); }
.service-area .section-sub { color: rgba(255,255,255,0.7); }
.states-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.state-badge {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}
.hq-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 8px;
  padding: 16px 28px;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hq-callout svg { width: 18px; height: 18px; fill: var(--gold-light); }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.cta-strip p { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}
.cta-phone:hover { color: var(--green-dark); }
.cta-email {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}
.cta-email:hover { color: var(--green); }

/* ── Footer ── */
.footer {
  background: #111810;
  color: rgba(255,255,255,0.5);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ── Estimate Page ── */
.page-hero {
  padding-top: 72px;
  background-image:
    linear-gradient(160deg, rgba(15,30,10,0.75) 0%, rgba(20,45,10,0.65) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 144px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .page-hero { background-attachment: scroll; }
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 520px; line-height: 1.7; font-weight: 300; }

.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-main {}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.contact-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-item-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.contact-item-value a { color: inherit; }
.contact-item-value a:hover { color: var(--green); }

.contact-sidebar {}
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

/* ── Promise Banner ── */
.promise-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e4010 100%);
  border-bottom: 3px solid var(--gold);
  padding: 18px 24px;
}
.promise-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.promise-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-icon svg { width: 20px; height: 20px; fill: var(--green-dark); }
.promise-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}
.promise-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}

/* ── Form Section ── */
.form-section {
  background: var(--bg);
  padding: 80px 0 96px;
}
.form-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.info-col { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.info-list { list-style: none; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 16px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-num {
  width: 32px;
  height: 32px;
  background: rgba(42,81,22,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}
.timeline-step-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-bottom: 2px;
}
.timeline-step-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.territory-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.territory-badge {
  padding: 5px 14px;
  background: rgba(42,81,22,0.07);
  border: 1px solid rgba(42,81,22,0.15);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
}

/* ── Contact Form Card ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}
.form-card-header {
  background: var(--green);
  padding: 28px 36px;
}
.form-card-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.form-card-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-body { padding: 36px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,81,22,0.1);
  background: var(--white);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.form-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit-btn:hover:not(:disabled) {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42,81,22,0.3);
}
.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-submit-btn .btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.form-submit-btn.loading .btn-spinner { display: block; }
.form-submit-btn.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note svg { width: 12px; height: 12px; stroke: var(--sage); vertical-align: middle; margin-right: 4px; }

/* ── Form States ── */
.form-success {
  display: none;
  text-align: center;
  padding: 64px 36px;
}
.form-success.visible { display: block; }
.form-body.hidden { display: none; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(42,81,22,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 36px; height: 36px; stroke: var(--green); fill: none; stroke-width: 2; }
.form-success h3 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 380px; margin: 0 auto; }
.form-error-bar {
  display: none;
  background: #fdf2f1;
  border: 1px solid #e8c5c1;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #c0392b;
  gap: 8px;
  align-items: center;
}
.form-error-bar.visible { display: flex; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .impact-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-contact { align-items: flex-start; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); padding: 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 20px; }
  .nav.open { display: flex; }
  .nav-cta { display: block !important; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
}
