/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary green palette — all derived from #44A141 */
  --g50:   #eaf6ea;
  --g100:  #c2e5c1;
  --g200:  #88cc87;
  --g300:  #44A141;
  --g400:  #3a8d38;
  --g500:  #44A141;
  --g600:  #44A141;
  --g700:  #378034;
  --g800:  #2d6b2b;
  --g900:  #1e3d1d;

  /* Sand / neutral */
  --sand50:  #FAF8F4;
  --sand100: #F4EFE6;
  --sand200: #E8DDD0;
  --sand300: #D6C9B8;

  /* Text */
  --dark:   #111614;
  --mid:    #3D4A46;
  --muted:  #6B7C76;
  --white:  #FFFFFF;

  /* Radii */
  --rsm: 6px;
  --rmd: 14px;
  --rlg: 22px;

  /* Fonts */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════
   TOPBAR
════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #1a2e1a, #2a4a28);
  color: var(--g100);
  font-size: 12px;
  padding: 9px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.01em;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  color: #ffffff;
}
.topbar-left span svg {
  width: 13px; height: 13px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.topbar-right a:hover { opacity: 0.8; }
.topbar-right a svg {
  width: 13px; height: 13px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar-pill {
  background: rgba(68,161,65,0.35);
  border: 1px solid rgba(68,161,65,0.6);
  color: #ffffff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand200);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 58px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13.5px;
  color: var(--mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--g600); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--g700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-phone svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-cta {
  background: var(--g600);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--rsm);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--g800); transform: translateY(-1px); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero-outer {
  background: var(--sand50);
  overflow: hidden;
}
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 0;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 64px;
  align-items: end;
}
.hero-content { padding-bottom: 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 28px; height: 2px;
  background: var(--g300);
  border-radius: 2px;
}
.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--g600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1.07;
  color: var(--g900);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--g600); font-weight: 400; }

.hero-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
  background: var(--g600);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--rsm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(68,161,65,0.30);
}
.btn-primary:hover {
  background: var(--g800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(68,161,65,0.35);
}
.btn-primary svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  border: 1.5px solid var(--sand300);
  color: var(--mid);
  padding: 14px 24px;
  border-radius: var(--rsm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.btn-outline:hover {
  background: var(--g50);
  border-color: var(--g300);
  color: var(--g700);
}
.btn-outline svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--sand200);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--sand200);
}
.hero-stat:last-child  { border-right: none; padding-right: 0; padding-left: 28px; }
.hero-stat:not(:first-child):not(:last-child) { padding: 0 28px; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--g600);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* Hero image */
.hero-img-wrap { position: relative; align-self: end; }
.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--rlg) var(--rlg) 0 0;
  display: block;
  filter: brightness(0.85) saturate(0.95);
}

/* Green overlay on hero image */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--rlg) var(--rlg) 0 0;
  background: linear-gradient(
    160deg,
    rgba(68,161,65,0.35) 0%,
    rgba(68,161,65,0.10) 50%,
    rgba(30,61,29,0.20) 100%
  );
  pointer-events: none;
}

.hero-badge-card {
  position: absolute;
  bottom: 32px; left: -32px;
  background: var(--white);
  border-radius: var(--rmd);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  border: 1px solid var(--sand100);
}
.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.badge-dot {
  width: 10px; height: 10px;
  background: var(--g300);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(0.85); }
}
.badge-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--g700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-divider { height: 1px; background: var(--sand200); margin: 10px 0; }
.badge-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--g600);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}
.badge-label { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

.hero-float2 {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--g900);
  border-radius: var(--rmd);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  border: 1px solid rgba(68,161,65,0.3);
}
.float2-label {
  font-size: 10px;
  color: var(--g300);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.float2-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.float2-text  { font-size: 12px; color: var(--g100); line-height: 1.4; }

/* ════════════════════════════════
   TRUST STRIP
════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--sand200);
  padding: 22px 48px;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  font-size: 13px;
  color: var(--mid);
  border-right: 1px solid var(--sand200);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 34px; height: 34px;
  background: var(--g50);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--g100);
}
.trust-icon svg {
  width: 17px; height: 17px;
  stroke: var(--g600); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.trust-item strong { font-weight: 600; color: var(--g700); }

/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--g600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--g300);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--g900);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  font-weight: 600;
}
.sec-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services-section { padding: 88px 0; background: var(--white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--sand50);
  border: 1px solid var(--sand200);
  border-radius: var(--rmd);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g300), var(--g600));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--g100);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--g50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--g100);
}
.service-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--g600); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g600);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s;
}
.service-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why-choose-section {
  padding: 88px 0;
  background: var(--sand50);
  border-top: 1px solid var(--sand200);
  border-bottom: 1px solid var(--sand200);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-choose-img {
  position: relative;
  border-radius: var(--rlg);
  overflow: hidden;
}
.why-choose-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.95);
}
/* Green overlay on why-choose image */
.why-choose-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(68,161,65,0.30) 0%,
    rgba(68,161,65,0.08) 55%,
    rgba(30,61,29,0.25) 100%
  );
  pointer-events: none;
}
.why-choose-img-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(30,61,29,0.90);
  backdrop-filter: blur(8px);
  border-radius: var(--rmd);
  padding: 18px 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(68,161,65,0.35);
}
.wc-badge-icon {
  width: 44px; height: 44px;
  background: rgba(68,161,65,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-badge-icon svg {
  width: 22px; height: 22px;
  stroke: var(--g300); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.wc-badge-text { font-size: 13px; color: var(--g100); line-height: 1.5; font-weight: 300; }
.wc-badge-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 2px; }

.why-features { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.why-feat {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand200);
}
.why-feat:last-child { border-bottom: none; }
.why-feat-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feat-icon svg {
  width: 20px; height: 20px;
  stroke: var(--g600); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.why-feat-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--g900);
  margin-bottom: 5px;
  letter-spacing: -0.1px;
}
.why-feat-body p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════
   STATS SECTION
════════════════════════════════ */
.stats-section { padding: 72px 0; background: var(--g900); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(68,161,65,0.25);
}
.stat-item:last-child { border-right: none; }
.stat-big {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.stat-big span { color: var(--g300); }
.stat-label { font-size: 13px; color: var(--g200); font-weight: 300; letter-spacing: 0.01em; }

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */
.process-section { padding: 88px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .sec-sub { margin: 0 auto; }
.process-header .eyebrow { justify-content: center; }
.process-header .eyebrow::before { display: none; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--g100);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--g700);
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.process-step:hover .step-num {
  background: var(--g600);
  border-color: var(--g600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(68,161,65,0.30);
}
.process-step h3 { font-size: 14.5px; font-weight: 600; color: var(--g900); margin-bottom: 8px; letter-spacing: -0.1px; }
.process-step p   { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-section { padding: 88px 0; background: var(--sand50); border-top: 1px solid var(--sand200); }
.testi-header { margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--sand200);
  border-radius: var(--rmd);
  padding: 36px;
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; }
.testi-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--g600);
  background: var(--g50);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testi-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--g700);
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--g900); }
.testi-loc  { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ════════════════════════════════
   COVERAGE
════════════════════════════════ */
.coverage-section { padding: 72px 0; background: var(--white); border-top: 1px solid var(--sand200); }
.coverage-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.county-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.county-tag {
  background: var(--sand50);
  border: 1px solid var(--g100);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--g700);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.county-tag:hover { background: var(--g50); border-color: var(--g300); color: var(--g800); }
.coverage-right { text-align: center; }
.coverage-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.coverage-note { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-section {
  padding: 88px 48px;
  background: var(--g700);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(68,161,65,0.15);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(68,161,65,0.10);
  border-radius: 50%;
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--g300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 600;
}
.cta-section h2 em { font-style: italic; color: var(--g300); }
.cta-section p {
  font-size: 16px;
  color: var(--g100);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--g800);
  padding: 15px 30px;
  border-radius: var(--rsm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-white svg, .btn-ghost svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.btn-ghost {
  border: 1.5px solid rgba(68,161,65,0.6);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--rsm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { background: rgba(68,161,65,0.15); border-color: var(--g300); }
.cta-note { font-size: 12px; color: var(--g200); margin-top: 18px; opacity: 0.8; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer { background: var(--g900); color: var(--g100); padding: 64px 48px 36px; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(68,161,65,0.2);
}
.footer-logo-img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--g200);
  line-height: 1.75;
  max-width: 240px;
  font-weight: 300;
}
.footer-license {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  background: rgba(68,161,65,0.12);
  border: 1px solid rgba(68,161,65,0.3);
  padding: 5px 13px;
  border-radius: 5px;
  color: var(--g200);
  letter-spacing: 0.03em;
}
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(68,161,65,0.12);
  border: 1px solid rgba(68,161,65,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--g200);
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: rgba(68,161,65,0.25); color: var(--white); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13.5px; color: var(--g200); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--g200);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--g200); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .hero-float2 { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 28px 0; }
  .hero-img-wrap { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-content { padding-bottom: 52px; }
  nav { padding: 0 28px; height: 72px; }
  .nav-links, .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(68,161,65,0.15); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-connector { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-wrap, .coverage-inner { padding-left: 28px; padding-right: 28px; }
  .cta-section { padding: 64px 28px; }
  footer { padding: 48px 28px 28px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--sand200); padding: 0 0 16px; }
  .hero-stat:last-child { border-bottom: none; padding: 0; }
  .nav-logo-img { height: 44px; max-width: 180px; }
}