@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --green-dark: #1a3a1a;
  --green-mid: #2d5a1b;
  --green-bright: #4a8c2a;
  --green-light: #7bc142;
  --gold: #e8b84b;
  --gold-dark: #c49a2a;
  --cream: #f8f5ee;
  --white: #ffffff;
  --text-dark: #1a2010;
  --text-mid: #3d4a30;
  --text-light: #6b7a5a;
  --bg-section: #f2f0e8;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'DM Serif Display', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --type-h1: clamp(46px, 4.7vw, 64px);
  --type-h1-mobile: clamp(42px, 10vw, 62px);
  --type-h1-small: 44px;
  --type-h2: clamp(28px, 3.2vw, 42px);
  --type-h3: clamp(18px, 1.8vw, 22px);
  --type-h4: 15px;
  --type-body: 16px;
  --type-body-small: 14px;
  --heading-line-tight: 0.94;
  --heading-line: 1.12;
  --heading-gap: 16px;
  --card-heading-gap: 8px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  background: var(--green-dark);
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.topbar span { color: #fff; margin: 0 6px; }

/* NAV */
nav {
  background: #0f2610;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; gap: clamp(12px, 1.6vw, 22px); list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.85; }
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-primary.nav-btn { padding: 7px 14px; font-size: 13px; border-radius: 6px; }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid var(--green-dark);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--green-dark); color: white; }
.btn-white {
  background: white;
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* Mobile menu toggle */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* HERO */
.hero {
  background: #0d2010;
  min-height: min(640px, calc(100vh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  padding: 24px 5% 16px;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=60') center/cover no-repeat;
  opacity: 0.1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #0d2010, transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
  max-width: 680px;
  z-index: 5;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,184,75,0.15);
  border: 1px solid rgba(232,184,75,0.4);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  line-height: var(--heading-line-tight);
  color: white;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 16px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.hero-trust { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* HERO QUOTE CARD */
.hero-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  align-self: center;
  width: 100%;
  max-width: 480px;
}
.hero-card h3 {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: var(--card-heading-gap);
}
.hero-card > p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.form-note { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.success-icon { font-size: 40px; margin-bottom: 10px; }
.success-title { color: var(--green-dark); margin-bottom: 6px; }
.success-copy { font-size: 13px; color: var(--text-light); }
.promo-tag {
  background: #fff3cd;
  border: 1px solid #f0c040;
  color: #7a5a00;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--green-bright); }
.service-dropdown { position: relative; }
.service-dropdown-toggle {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: white;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.service-dropdown-toggle span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-dropdown-menu {
  display: none;
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 190px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
}
.service-dropdown.open .service-dropdown-menu { display: block; }
.service-dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 8px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.service-dropdown-menu input[type="checkbox"] {
  appearance: auto;
  accent-color: var(--green-dark);
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
}
.service-dropdown-empty {
  color: var(--text-light);
  font-size: 12px;
  padding: 7px 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-mid);
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}
.consent-group input[type="checkbox"] {
  appearance: auto;
  accent-color: var(--green-dark);
  flex: 0 0 auto;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  margin: 1px 0 0;
  padding: 0;
}
.submit-btn {
  width: 100%;
  background: var(--green-dark);
  color: white;
  padding: 11px;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-error-msg { color: #b42318; font-size: 13px; margin-bottom: 10px; display: none; }

/* TRUST STRIP */
.trust-strip {
  background: var(--green-bright);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.trust-strip-item svg { width: 22px; height: 22px; opacity: 0.9; }

/* SECTION BASE */
html { scroll-behavior: smooth; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
section { padding: 80px 5%; }
h1, h2, h3, h4 { margin-top: 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: var(--type-h2);
  color: var(--green-dark);
  line-height: var(--heading-line);
  margin-bottom: var(--heading-gap);
}
.section-title span { color: var(--green-bright); }
.section-sub {
  font-size: var(--type-body);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.program-callout-kicker { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.program-callout-title {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: var(--heading-gap);
}
.program-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.program-compare-row:last-child { border-bottom: 0; }
.upload-hint { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 400; }
.ai-result-link {
  display: block;
  margin-top: 14px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

/* AI SECTION */
.ai-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2610 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,42,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ai-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,184,75,0.15);
  border: 1px solid rgba(232,184,75,0.3);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ai-title {
  font-family: var(--font-display);
  font-size: var(--type-h2);
  color: white;
  letter-spacing: 2px;
  line-height: var(--heading-line);
  margin-bottom: var(--heading-gap);
}
.ai-title span { color: var(--gold); }
.ai-desc { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.ai-steps { list-style: none; margin-bottom: 28px; }
.ai-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-steps li:last-child { border: none; }
.step-num {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-demo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
}
.ai-demo-title { color: white; font-size: 16px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.upload-zone {
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}
.upload-zone:hover { border-color: var(--gold); background: rgba(232,184,75,0.05); }
.upload-zone svg { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 12px; display: block; }
.upload-zone p { color: rgba(255,255,255,0.6); font-size: 13px; }
.upload-zone span { color: var(--gold); font-weight: 600; }
.ai-result {
  background: rgba(74,140,42,0.15);
  border: 1px solid rgba(74,140,42,0.3);
  border-radius: 10px;
  padding: 14px;
  display: none;
}
.ai-result.show { display: block; }
.ai-result-title { color: var(--green-light); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.ai-result p { color: rgba(255,255,255,0.75); font-size: 12px; line-height: 1.6; }
.ai-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ai-tag { background: rgba(74,140,42,0.3); color: #9ed66a; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }

/* PROGRAM */
.program-section { background: var(--bg-section); }
.program-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.program-card {
  background: white;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid #e5e8de;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-bright);
}
.step-badge {
  width: 32px;
  height: 32px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.program-card .season { font-size: 11px; font-weight: 700; color: var(--green-bright); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.program-card h4 { font-size: var(--type-h4); font-weight: 600; color: var(--green-dark); margin-bottom: var(--card-heading-gap); }
.program-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.program-card .plus { background: #fff3cd; color: #7a5a00; font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 700; display: inline-block; margin-top: 8px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #e5e8de;
  transition: all 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); border-color: var(--green-light); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--green-bright); }
.service-card h3 { font-size: var(--type-h3); font-weight: 600; color: var(--green-dark); line-height: 1.25; margin-bottom: var(--card-heading-gap); }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.service-card .tag { background: var(--bg-section); color: var(--green-mid); font-size: 11px; padding: 4px 10px; border-radius: 10px; font-weight: 600; }

/* WHY US */
.why-section { background: var(--green-dark); }
.why-section .section-title { color: white; }
.why-section .section-sub { color: rgba(255,255,255,0.65); }
.why-section .section-label { color: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 14px; }
.why-card h4 { font-size: var(--type-h4); font-weight: 600; color: white; margin-bottom: var(--card-heading-gap); }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* RESULTS */
.results-section { background: var(--bg-section); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.before-after {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--green-dark);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.ba-before { left: 16px; background: #e74c3c; color: white; }
.ba-after { right: 16px; background: var(--green-bright); color: white; }
.ba-text { text-align: center; color: white; padding: 20px; }
.ba-text h3 { font-family: var(--font-display); font-size: var(--type-h3); letter-spacing: 2px; color: var(--gold); margin-bottom: var(--card-heading-gap); }
.ba-text p { font-size: 13px; opacity: 0.7; }
.reviews-stack { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e5e8de;
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-bright); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--green-dark); }
.reviewer-loc { font-size: 11px; color: var(--text-light); }
.guarantee {
  background: var(--green-dark);
  color: white;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.guarantee svg { width: 40px; height: 40px; color: var(--gold); flex-shrink: 0; }
.guarantee h4 { font-size: var(--type-h4); font-weight: 600; margin-bottom: 4px; }
.guarantee p { font-size: 12px; opacity: 0.7; }

/* SERVICE AREAS */
.areas-section { padding: 60px 5%; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-top: 32px; }
.area-pill {
  background: var(--bg-section);
  border: 1px solid #dde0d5;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
  cursor: pointer;
}
.area-pill:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }

/* CTA SECTION */
.cta-section {
  background: var(--green-bright);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=40') center/cover;
  opacity: 0.08;
}
.cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding-right: clamp(0px, 18vw, 260px); }
.cta-section h2 { font-family: var(--font-heading); font-size: var(--type-h2); line-height: var(--heading-line); color: white; letter-spacing: 0; margin-bottom: var(--card-heading-gap); }
.cta-section h2 span { color: var(--green-dark); }
.cta-section p { color: rgba(255,255,255,0.9); font-size: var(--type-body); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.promo-display {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.bottom-mascot {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: -6px;
  width: clamp(180px, 22vw, 340px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.28));
  pointer-events: none;
}

/* FOOTER */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 48px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin: 16px 0; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--green-bright); }
.footer-col h5 { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-badge { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.4); font-size: 12px; }

/* CHATBOT */
.chat-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  cursor: pointer;
}
.chat-btn {
  width: 58px;
  height: 58px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  color: white;
  font-size: 22px;
  transition: transform 0.2s;
}
.chat-btn:hover { transform: scale(1.08); }
.chat-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
}
.chat-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
}
.chat-window.open { display: block; }
.chat-header { background: var(--green-dark); padding: 16px; display: flex; align-items: center; gap: 10px; }
.chat-avatar { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.chat-avatar img { width: 36px; height: 36px; object-fit: cover; object-position: top; }
.chat-header-info h4 { color: white; font-size: 14px; font-weight: 600; }
.chat-header-info p { color: rgba(255,255,255,0.6); font-size: 11px; }
.chat-status { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; display: inline-block; margin-right: 4px; }
.chat-messages { padding: 16px; min-height: 200px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg p { font-size: 13px; padding: 10px 14px; border-radius: 12px; line-height: 1.5; }
.chat-msg.bot p { background: var(--bg-section); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-msg.user p { background: var(--green-dark); color: white; border-bottom-right-radius: 4px; }
.chat-quick { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.quick-btn { background: var(--bg-section); border: 1px solid #ddd; border-radius: 16px; padding: 5px 12px; font-size: 11px; color: var(--green-dark); cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.15s; }
.quick-btn:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.chat-input-row { padding: 12px 16px; border-top: 1px solid #eee; display: flex; gap: 8px; }
.chat-input { flex: 1; padding: 8px 12px; border: 1.5px solid #ddd; border-radius: 20px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.chat-input:focus { border-color: var(--green-bright); }
.chat-send { background: var(--green-dark); border: none; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 16px; }

/* SERVICE PAGES */
.service-link { margin-top: 18px; display: inline-flex; color: var(--green-dark); font-weight: 800; font-size: 13px; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px; }

.service-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(13,32,16,0.98) 0%, rgba(13,32,16,0.9) 46%, rgba(26,58,26,0.68) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=70') center/cover no-repeat;
  border-bottom: 5px solid var(--gold);
  color: white;
  padding: 76px 5%;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(232,184,75,0.16), transparent 34%);
  opacity: 1;
}
.service-hero::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(232,184,75,0.18);
  border: 1px solid rgba(232,184,75,0.22);
}
.service-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.service-hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  line-height: var(--heading-line-tight);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 10px 34px rgba(0,0,0,0.35);
}
.service-hero-content h1 span { color: var(--gold); }
.service-hero-content p {
  max-width: 680px;
  color: rgba(255,255,255,0.82);
  font-size: var(--type-body);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-hero-card {
  background: white;
  border: 1px solid rgba(232,184,75,0.45);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  color: var(--text-dark);
}
.service-hero-card h2,
.service-hero-card h3 {
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  line-height: 1.2;
  margin-bottom: var(--card-heading-gap);
}
.service-hero-card p,
.service-hero-card li {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}
.service-hero-card ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 18px;
}
.service-hero-card li::marker { color: var(--green-bright); }
.service-hero .section-label,
.service-hero-card .section-label { color: var(--gold); }
.service-hero .hero-btns,
.service-cta-band .hero-btns { margin-bottom: 0; }
.service-hero .btn-primary,
.service-hero .btn-white,
.service-cta-band .btn-primary,
.service-cta-band .btn-white {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  line-height: 1.1;
}

.service-section {
  padding: 58px 5%;
  background: white;
}
.service-section:nth-of-type(3),
.service-section:nth-of-type(5) {
  background: linear-gradient(180deg, rgba(248,245,238,0.96), rgba(242,240,232,0.96));
}
.service-section-dark {
  padding: 66px 5%;
  background:
    linear-gradient(135deg, rgba(26,58,26,0.98), rgba(13,32,16,0.98)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=50') center/cover no-repeat;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.service-section-dark .section-label { color: var(--gold); }
.service-section-dark .section-title { color: white; }
.service-section-dark .section-sub { color: rgba(255,255,255,0.68); }
.service-section-dark > .service-hero-inner { grid-template-columns: 1fr; gap: 22px; }
.service-section-dark .service-feature-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,184,75,0.18);
  box-shadow: none;
}
.service-section-dark .service-feature-card h4 { color: white; }
.service-section-dark .service-feature-card p { color: rgba(255,255,255,0.66); }

.service-section > .service-hero-inner {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  max-width: 1120px;
}
.service-section-dark > .service-hero-inner { max-width: 1120px; }

.service-card-grid {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.service-feature-card {
  background: white;
  border: 1px solid #e5e8de;
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 10px 28px rgba(18,41,16,0.07);
}
.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}
.service-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(18,41,16,0.13);
  border-color: var(--green-light);
}
.service-feature-card h3,
.service-feature-card h4 {
  color: var(--green-dark);
  font-size: var(--type-h3);
  line-height: 1.25;
  margin-bottom: var(--card-heading-gap);
}
.service-feature-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.service-cta-band {
  padding: 64px 5%;
  background:
    linear-gradient(105deg, rgba(74,140,42,0.96), rgba(26,58,26,0.94)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=60') center/cover no-repeat;
  border-top: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.service-cta-band .service-hero-inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding-right: clamp(0px, 12vw, 160px);
}
.service-cta-band .section-label,
.service-cta-band .section-title,
.service-cta-band .section-sub { color: white; }
.service-cta-band .section-title span { color: var(--green-dark); }
.service-cta-band .btn-primary { background: var(--gold); }
.service-cta-band .service-hero-card { box-shadow: 0 18px 55px rgba(0,0,0,0.22); }
.service-cta-mascot {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: -8px;
  width: clamp(140px, 18vw, 230px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.26));
  pointer-events: none;
}

.service-faq-grid {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* LEARN PAGES */
.learn-hub-hero .service-hero-card .service-link,
.learn-card .service-link { margin-top: 16px; }
.learn-card-grid {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.learn-card {
  background: white;
  border: 1px solid #e5e8de;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(18,41,16,0.07);
  position: relative;
  overflow: hidden;
}
.learn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}
.learn-card-featured { grid-column: span 2; background: linear-gradient(135deg, white, #fbfaf5); }
.learn-card h3 { color: var(--green-dark); font-size: var(--type-h3); line-height: 1.25; margin-bottom: var(--card-heading-gap); }
.learn-card p,
.learn-card li { color: var(--text-mid); font-size: 14px; line-height: 1.65; }
.learn-card ul { display: grid; gap: 8px; margin: 16px 0 22px; padding-left: 18px; }
.learn-card li::marker { color: var(--green-bright); }

.learn-article-hero .service-hero-content h1 {
  max-width: 820px;
}
.learn-article-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.learn-toc {
  position: sticky;
  top: 110px;
  background: white;
  border: 1px solid #e5e8de;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18,41,16,0.07);
}
.learn-toc a {
  display: block;
  color: var(--green-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  padding: 10px 0;
  border-bottom: 1px solid #edf0e8;
}
.learn-toc a:last-child { border-bottom: 0; }
.learn-toc a:hover { color: var(--green-bright); }
.learn-article-body {
  background: white;
  border: 1px solid #e5e8de;
  border-radius: 12px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 12px 34px rgba(18,41,16,0.08);
}
.learn-content-section { padding: 0 0 32px; }
.learn-content-section:last-child { padding-bottom: 0; }
.learn-content-section h2 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: var(--type-h2);
  line-height: var(--heading-line);
  margin-bottom: var(--heading-gap);
}
.learn-content-section p {
  color: var(--text-mid);
  font-size: var(--type-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* PREMIUM WEED CONTROL PAGE */
.weed-premium-hero {
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(30px, 4.8vw, 66px) 5%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(8,24,10,0.94) 0%, rgba(13,32,16,0.82) 43%, rgba(13,32,16,0.32) 74%, rgba(13,32,16,0.1) 100%),
    linear-gradient(180deg, rgba(8,24,10,0.08) 0%, rgba(8,24,10,0.38) 100%),
    url('/images/services/weed-control-hero.jpg') center right/cover no-repeat;
}
.weed-premium-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 28%, rgba(232,184,75,0.22), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(8,24,10,0.56) 100%);
}
.weed-premium-hero__overlay { position: absolute; inset: 22px; pointer-events: none; }
.weed-premium-hero__inner { width: min(1180px, 100%); margin: 0 auto; position: relative; z-index: 2; }
.weed-premium-hero__content { width: min(720px, 100%); position: relative; z-index: 3; }
.weed-premium-kicker,
.weed-section-heading span,
.weed-final-cta span {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.weed-premium-hero h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  line-height: var(--heading-line-tight);
  letter-spacing: 2px;
  max-width: 760px;
  text-shadow: 0 16px 54px rgba(0,0,0,0.38);
}
.weed-premium-hero h1 span { display: block; color: var(--gold); }
.weed-premium-hero p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255,255,255,0.84);
  font-size: var(--type-body);
  line-height: 1.62;
}
.weed-premium-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.weed-premium-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.weed-premium-btn:hover { transform: translateY(-2px); }
.weed-premium-btn--gold { background: var(--gold); color: var(--green-dark); box-shadow: 0 14px 30px rgba(232,184,75,0.24); }
.weed-premium-btn--gold:hover { background: var(--gold-dark); }
.weed-premium-btn--light { background: rgba(255,255,255,0.94); color: var(--green-dark); box-shadow: 0 14px 30px rgba(0,0,0,0.16); }
.weed-premium-hero__card {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 54px;
  width: min(340px, 34vw);
  background: rgba(255,255,255,0.94);
  color: var(--green-dark);
  border: 1px solid rgba(232,184,75,0.5);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}
.weed-premium-hero__card span { display: block; color: var(--green-bright); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.weed-premium-hero__card strong { display: block; font-family: 'DM Serif Display', serif; font-size: 26px; line-height: 1.08; margin-bottom: 10px; }
.weed-premium-hero__card p { margin: 0; color: var(--text-mid); font-size: 14px; }

.weed-benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #102611;
  border-bottom: 1px solid rgba(232,184,75,0.28);
}
.weed-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.84);
  padding: 20px 5vw;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.weed-benefit span { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(232,184,75,0.12); }

.weed-premium-section {
  padding: clamp(64px, 8vw, 104px) 5%;
  position: relative;
  background: white;
}
.weed-premium-section::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,140,42,0.18), transparent);
}
.weed-section-heading { width: min(860px, 100%); margin: 0 auto 34px; text-align: center; }
.weed-section-heading h2,
.weed-final-cta h2 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: var(--type-h2);
  line-height: var(--heading-line);
  margin-bottom: var(--heading-gap);
}
.weed-section-heading p,
.weed-final-cta p { color: var(--text-mid); font-size: var(--type-body); line-height: 1.7; }

.weed-problem-grid,
.weed-process-grid,
.weed-choice-grid,
.weed-learning-grid,
.weed-faq-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.weed-problem-grid { grid-template-columns: repeat(4, 1fr); }
.weed-story-card,
.weed-process-card,
.weed-choice-grid article,
.weed-faq-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(74,140,42,0.13);
  box-shadow: 0 14px 34px rgba(18,41,16,0.08);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.weed-story-card:hover,
.weed-process-card:hover,
.weed-choice-grid article:hover,
.weed-faq-card:hover,
.weed-learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(18,41,16,0.15);
  border-color: rgba(232,184,75,0.55);
}
.weed-story-card__image {
  min-height: 145px;
  background:
    linear-gradient(180deg, rgba(13,32,16,0.05), rgba(13,32,16,0.38)),
    url('/images/services/weed-control-hero.jpg') center/cover no-repeat;
}
.weed-story-card div:last-child { padding: 22px; }
.weed-story-card h3,
.weed-process-card h3,
.weed-choice-grid h3,
.weed-learning-card h3,
.weed-faq-card summary {
  color: var(--green-dark);
  font-size: var(--type-h3);
  line-height: 1.25;
  margin-bottom: var(--card-heading-gap);
}
.weed-story-card p,
.weed-process-card p,
.weed-choice-grid p,
.weed-learning-card p,
.weed-faq-card p { color: var(--text-mid); font-size: 14px; line-height: 1.65; }

.weed-premium-section--dark {
  background:
    linear-gradient(135deg, rgba(13,32,16,0.98), rgba(26,58,26,0.96)),
    url('/images/services/weed-control-hero.jpg') center/cover no-repeat;
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
}
.weed-premium-section--dark .weed-section-heading h2,
.weed-premium-section--dark .weed-process-card h3 { color: white; }
.weed-premium-section--dark .weed-section-heading p,
.weed-premium-section--dark .weed-process-card p { color: rgba(255,255,255,0.72); }

.weed-process-grid { grid-template-columns: repeat(4, 1fr); }
.weed-process-card { padding: 28px; background: rgba(255,255,255,0.07); border-color: rgba(232,184,75,0.2); box-shadow: none; }
.weed-process-card span { display: inline-flex; color: var(--gold); font-family: var(--font-display); font-size: 36px; letter-spacing: 1px; margin-bottom: 22px; }

.weed-choice-section { background: linear-gradient(180deg, #fff, var(--bg-section)); }
.weed-choice-panel { width: min(1120px, 100%); margin: 0 auto; background: white; border: 1px solid rgba(74,140,42,0.12); border-radius: 22px; padding: clamp(30px, 5vw, 56px); box-shadow: 0 24px 80px rgba(18,41,16,0.1); }
.weed-choice-grid { grid-template-columns: repeat(4, 1fr); }
.weed-choice-grid article { padding: 24px; }

.weed-learning-section { background: #f7f5ee; }
.weed-learning-grid { grid-template-columns: repeat(3, 1fr); }
.weed-learning-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13,32,16,0.05), rgba(13,32,16,0.88)),
    url('/images/services/weed-control-hero.jpg') center/cover no-repeat;
  box-shadow: 0 18px 45px rgba(18,41,16,0.13);
  border: 1px solid rgba(232,184,75,0.28);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
}
.weed-learning-card:nth-child(2) { background-position: 45% center; }
.weed-learning-card:nth-child(3) { background-position: 70% center; }
.weed-learning-card span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.weed-learning-card h3 { color: white; font-size: var(--type-h3); }
.weed-learning-card p { color: rgba(255,255,255,0.78); }

.weed-faq-grid { grid-template-columns: repeat(2, 1fr); }
.weed-faq-card { padding: 24px 26px; }
.weed-faq-card summary { cursor: pointer; list-style: none; margin-bottom: 0; padding-right: 30px; position: relative; }
.weed-faq-card summary::-webkit-details-marker { display: none; }
.weed-faq-card summary::after { content: '+'; position: absolute; right: 0; top: -2px; color: var(--gold-dark); font-size: 26px; line-height: 1; }
.weed-faq-card[open] summary { margin-bottom: 12px; }
.weed-faq-card[open] summary::after { content: '-'; }

.weed-final-cta {
  padding: clamp(50px, 7vw, 82px) 5%;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--green-dark);
  color: white;
  border-top: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.weed-final-cta div:first-child { max-width: 720px; }
.weed-final-cta h2, .weed-final-cta p { color: white; }
.weed-final-cta__mascot {
  position: absolute;
  right: clamp(14px, 4vw, 60px);
  bottom: -8px;
  width: clamp(82px, 10vw, 130px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.22));
}
.weed-final-cta > div { position: relative; z-index: 2; }
.weed-final-cta--quote { align-items: center; }
.weed-final-cta--quote .hero-card { width: min(430px, 100%); flex: 0 0 min(430px, 100%); z-index: 2; }
.weed-final-cta--quote .hero-card p { color: var(--text-light); }

/* HOMEPAGE MOCKUP ALIGNMENT */
.home-page .topbar {
  background: #0e3515;
  color: #f5c94e;
  padding: 7px 5%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page nav {
  background: #fffdf7;
  height: 74px;
  border-bottom: 1px solid rgba(26,58,26,0.14);
  box-shadow: 0 8px 24px rgba(18,41,16,0.08);
  padding-left: max(5%, calc((100vw - 1360px) / 2));
  padding-right: max(5%, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.home-page .logo img { height: 58px !important; }
.home-page .nav-links { gap: clamp(18px, 2.1vw, 34px); justify-content: center; }
.home-page .nav-links a { color: var(--green-dark); font-weight: 800; }
.home-page .nav-links a:hover { color: var(--green-bright); border-bottom-color: var(--green-bright); }
.home-page .nav-phone { color: var(--green-dark); }
.home-page .nav-hamburger span { background: var(--green-dark); }
.home-page .btn-primary {
  background: #f2bd1d;
  color: #0d2b12;
  border-radius: 7px;
  box-shadow: 0 10px 18px rgba(242,189,29,0.14);
}
.home-page .btn-primary:hover { background: #dca918; }
.home-page .hero {
  min-height: clamp(640px, calc(100vh - 106px), 720px);
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.78fr);
  gap: clamp(26px, 3.8vw, 52px);
  padding: 22px max(5%, calc((100vw - 1360px) / 2)) 18px;
  align-items: center;
  background: #0d2010;
}
.home-page .hero::before {
  background-image: url('/assets/hero-banner-new.jpg');
  background-size: cover;
  background-position: 10% center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}
.home-page .hero::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(0,35,15,0.55) 0%, rgba(0,35,15,0.35) 45%, rgba(0,35,15,0.05) 100%),
    linear-gradient(to top, rgba(9,32,11,0.12), transparent 32%);
  z-index: 1;
}
.home-page .hero-content {
  max-width: 540px;
  align-self: center;
  padding-top: 0;
}
.home-page .hero-badge {
  background: rgba(49,128,35,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  padding: 7px 15px;
  margin-bottom: 12px;
}
.home-page .hero h1 {
  font-size: clamp(54px, 5.05vw, 76px);
  line-height: 0.9;
  letter-spacing: 1px;
  text-shadow: 0 14px 34px rgba(0,0,0,0.35);
  margin-bottom: 12px;
}
.home-page .hero h1 .gold { color: #78c545; }
.home-page .hero p {
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.38;
  text-shadow: 0 4px 18px rgba(0,0,0,0.28);
  margin-bottom: 16px;
}
.home-page .hero-btns { gap: 14px; margin-bottom: 0; }
.home-page .hero-btns .btn-primary,
.home-page .hero-btns .btn-outline {
  min-width: 152px;
  min-height: 44px;
  padding: 11px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-page .hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.76);
  background: rgba(8,24,10,0.16);
}
.home-page .hero .btn-outline:hover { background: rgba(255,255,255,0.16); }
.home-page .hero-trust { display: none; }
.home-page .hero-card {
  max-width: 500px;
  justify-self: end;
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: 0 18px 46px rgba(8,24,10,0.28);
  border: 1px solid rgba(255,255,255,0.75);
  box-sizing: border-box;
}
.home-page .hero-card h3 {
  font-size: clamp(22px, 1.7vw, 26px);
  line-height: 1.1;
  margin-bottom: 4px;
}
.home-page .hero-card .form-note {
  color: #5f6b5f;
  opacity: 1;
  text-shadow: none;
  font-size: 14.5px;
  line-height: 1.15;
  margin-bottom: 7px;
}
.home-page .promo-tag {
  background: #e8efdc;
  border-color: #d9e6c8;
  color: var(--green-dark);
  padding: 5px 8px;
  margin-bottom: 6px;
  min-height: 28px;
  font-size: 11.5px;
}
.home-page .submit-btn { background: linear-gradient(180deg, #28712b, #15531d); }
.home-page .hero-card .form-group { margin-bottom: 5px; }
.home-page .hero-card .form-row { gap: 8px; }
.home-page .hero-card .form-group label {
  font-size: 10.5px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.home-page .hero-card .form-group input,
.home-page .hero-card .form-group select,
.home-page .hero-card .service-dropdown-toggle {
  height: 34px;
  min-height: 34px;
  padding: 5px 10px;
  font-size: 12.5px;
  line-height: 1.2;
  border-color: #d8d8d8;
}
.home-page .hero-card .consent-group { margin-bottom: 5px; }
.home-page .hero-card .consent-group label {
  gap: 6px;
  font-size: 10.5px;
  line-height: 1.18;
}
.home-page .hero-card .consent-group input[type="checkbox"] {
  width: 14px;
  min-width: 14px;
  height: 14px;
}
.home-page .hero-card .submit-btn {
  min-height: 36px;
  margin-top: 3px;
  padding: 8px 18px;
  font-size: 13.5px;
}
.home-page .trust-strip {
  background: white;
  padding: 22px max(5%, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid #e7e4d8;
  box-shadow: 0 10px 26px rgba(18,41,16,0.06);
}
.home-page .trust-strip-item {
  color: var(--green-dark);
  padding: 8px 22px;
  border-right: 1px solid #e7e4d8;
  justify-content: flex-start;
  min-height: 86px;
}
.home-page .trust-strip-item:last-child { border-right: 0; }
.home-page .trust-strip-item svg {
  width: 42px;
  height: 42px;
  color: var(--green-mid);
  opacity: 1;
}
.home-page .trust-strip-item span {
  display: grid;
  gap: 4px;
  color: var(--text-mid);
  font-size: 12px;
  line-height: 1.35;
}
.home-page .trust-strip-item strong {
  color: var(--green-dark);
  font-size: 15px;
}
.home-page .trust-review-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 56px;
}
.home-page .google-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #4285f4;
  background: #f7f7f7;
  font-size: 22px;
  font-weight: 900;
}
.home-page .trust-review-card::after {
  content: '★★★★★';
  color: #f2bd1d;
  font-size: 13px;
  letter-spacing: 1px;
  grid-column: 2;
  margin-top: -18px;
  align-self: end;
}
.home-page .trust-review-card img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--green-dark);
}
.home-page .program-section,
.home-page .results-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(242,189,29,0.09), transparent 28%),
    linear-gradient(180deg, #fbf8ef, #f2f0e8);
}
.home-page .program-section,
.home-page #services,
.home-page .why-section,
.home-page .results-section,
.home-page .areas-section {
  padding-left: max(5%, calc((100vw - 1360px) / 2));
  padding-right: max(5%, calc((100vw - 1360px) / 2));
}
.home-page section { padding-top: 58px; padding-bottom: 58px; }
.home-page .program-intro {
  width: min(1260px, 100%);
  margin: 0 auto 32px;
  gap: clamp(48px, 10vw, 150px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
}
.home-page .program-callout-card {
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(18,41,16,0.08);
}
.home-page .program-compare-row::after {
  content: '✓';
  width: 20px;
  height: 20px;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-bright);
  font-weight: 800;
  margin-left: 14px;
}
.home-page .program-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.home-page .program-card {
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 190px;
  box-shadow: 0 14px 28px rgba(18,41,16,0.06);
}
.home-page #services {
  background: white;
  padding-top: 58px !important;
}
.home-page .services-grid {
  width: min(1260px, 100%);
  margin: 34px auto 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.home-page .service-card {
  padding: 0 0 18px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(18,41,16,0.06);
}
.home-page .service-card-media {
  height: 132px;
  background:
    linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)),
    url('/assets/service-weed-control.png') center/cover no-repeat;
}
.home-page .service-card:nth-child(2) .service-card-media { background-image: linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)), url('/assets/service-fertilization.png'); }
.home-page .service-card:nth-child(3) .service-card-media { background-image: linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)), url('/assets/service-soil-health.png'); }
.home-page .service-card:nth-child(4) .service-card-media { background-image: linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)), url('/assets/service-aeration-overseeding.png'); }
.home-page .service-card:nth-child(5) .service-card-media { background-image: linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)), url('/assets/service-grub-control.png'); }
.home-page .service-card:nth-child(6) .service-card-media { background-image: linear-gradient(180deg, rgba(13,32,16,0.02), rgba(13,32,16,0.12)), url('/assets/service-lawn-assessment.png'); }
.home-page .service-icon { display: none; }
.home-page .service-card h3,
.home-page .service-card p,
.home-page .service-card .tag { margin-left: 18px; margin-right: 18px; }
.home-page .service-card h3 { margin-top: 18px; }
.home-page .service-card { min-height: 280px; }
.home-page .why-section {
  background: linear-gradient(135deg, #123b19, #08250d);
  padding-top: 64px;
  padding-bottom: 64px;
}
.home-page .why-grid {
  width: min(1260px, 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.home-page .why-card {
  padding: 22px 18px;
  min-height: 220px;
}
.home-page .why-card svg { width: 36px; height: 36px; }
.home-page .ai-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(248,250,239,0.78) 42%, rgba(248,250,239,0.25) 100%),
    url('/assets/hero-banner-new.jpg') center center/cover no-repeat;
  min-height: 427px;
  padding: 30px max(5%, calc((100vw - 1264px) / 2));
  display: flex;
  align-items: center;
}
.home-page .ai-section::before { display: none; }
.home-page .ai-inner {
  width: min(1264px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.92fr);
  gap: clamp(30px, 4vw, 54px);
}
.home-page .ai-label {
  background: rgba(255,255,255,0.84);
  border-color: rgba(80,131,50,0.36);
  color: #356f24;
  margin-bottom: 12px;
  padding: 5px 12px;
  font-size: 10px;
}
.home-page .ai-title {
  color: #0d2b12;
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 0.9;
  margin-bottom: 12px;
}
.home-page .ai-title span { color: #4f8b31; }
.home-page .ai-desc {
  color: #102017;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.home-page .ai-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  max-width: 500px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 32px rgba(20,46,20,0.08);
}
.home-page .ai-notice-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4f8b31;
  color: white;
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-heading);
}
.home-page .ai-notice p {
  color: #122119;
  font-size: 13px;
  line-height: 1.28;
  margin: 0;
}
.home-page .ai-notice strong { color: #4f7f32; }
.home-page .ai-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: start;
  max-width: 500px;
  margin-bottom: 12px;
}
.home-page .ai-process-step { text-align: center; color: #102017; }
.home-page .ai-process-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 7px;
  background: rgba(255,255,255,0.92);
  color: #173b1b;
  box-shadow: 0 10px 24px rgba(20,46,20,0.08);
}
.home-page .ai-process-icon svg { width: 26px; height: 26px; }
.home-page .ai-process-icon span {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4f8b31;
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.home-page .ai-process-step h3 {
  margin: 0 0 4px;
  color: #102017;
  font-family: var(--font-heading);
  font-size: 14px;
}
.home-page .ai-process-step p {
  margin: 0;
  color: #233528;
  font-size: 12px;
  line-height: 1.25;
}
.home-page .ai-process-arrow {
  color: #4f8b31;
  font-size: 34px;
  line-height: 54px;
  font-weight: 700;
}
.home-page .ai-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4f8b31, #347023);
  color: white;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(30,80,34,0.22);
}
.home-page .ai-demo {
  min-height: 0;
  padding: 22px 24px;
  border: 1px solid rgba(25,64,28,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 22px 56px rgba(20,46,20,0.14);
}
.home-page .ai-demo-title {
  color: #102017;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 14px;
}
.home-page .ai-demo-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4f8b31;
  color: white;
}
.home-page .ai-demo-icon svg { width: 20px; height: 20px; }
.home-page .upload-zone {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  margin-bottom: 14px;
  border: 1.5px dashed #4f8b31;
  border-radius: 14px;
  background: rgba(255,255,255,0.66);
}
.home-page .upload-zone:hover {
  border-color: #356f24;
  background: rgba(79,139,49,0.05);
}
.home-page .upload-zone svg {
  width: 50px;
  height: 50px;
  color: #4f8b31;
  margin-bottom: 12px;
}
.home-page .upload-zone p {
  color: #102017;
  font-size: 16px;
  line-height: 1.35;
}
.home-page .upload-zone span { color: #102017; }
.home-page .upload-zone .upload-hint {
  color: #6c706d;
  font-weight: 500;
  font-size: 13px;
}
.home-page .ai-upload-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  color: #102017;
}
.home-page .ai-upload-tips span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  font-size: 12.5px;
}
.home-page .ai-upload-tips svg {
  width: 20px;
  height: 20px;
  color: #356f24;
  flex: 0 0 auto;
}
.home-page .ai-result {
  margin-top: 12px;
  background: #eef6e9;
  border-color: rgba(79,139,49,0.24);
}
.home-page .ai-result-title,
.home-page .ai-result p { color: #102017; }
.home-page .ai-tag {
  background: rgba(79,139,49,0.14);
  color: #356f24;
}
.home-page .results-grid {
  display: contents;
}
.home-page .results-section {
  width: min(1297px, 100%);
  min-height: 537px;
  max-height: 537px;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 250px minmax(500px, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 38px 22px;
  overflow: hidden;
}
.home-page .results-section > .text-center {
  text-align: left;
  width: auto;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}
.home-page .results-section > .text-center .section-sub { margin: 0; }
.home-page .results-cta {
  display: inline-flex;
  margin-top: 18px;
  min-height: 40px;
  padding: 10px 16px;
  font-size: 13px;
  align-items: center;
}
.home-page .before-after {
  grid-column: 2;
  grid-row: 1;
  height: 350px;
  min-height: 0;
  background: url('/assets/beforeafter.jpg') center center/cover no-repeat;
  box-shadow: 0 18px 38px rgba(18,41,16,0.12);
}
.home-page .ba-text {
  display: none;
}
.home-page .ba-text h3,
.home-page .ba-text p,
.home-page .ba-text a { display: none !important; }
.home-page .ba-label { display: none; }
.home-page .before-after::before,
.home-page .before-after::after { content: none; }
.home-page .before-after::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.9);
}
.home-page .before-after::after {
  content: '↔';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}
.home-page .before-after::before,
.home-page .before-after::after { content: none; }
.home-page .reviews-stack {
  grid-column: 3;
  grid-row: 1;
  gap: 10px;
  max-height: 430px;
  overflow: hidden;
}
.home-page .review-card { padding: 16px; }
.home-page .review-card p { font-size: 12.5px; line-height: 1.42; margin-bottom: 10px; }
.home-page .reviewer-avatar { width: 34px; height: 34px; font-size: 12px; }
.home-page .reviewer-name { font-size: 13px; }
.home-page .reviewer-loc { font-size: 11px; }
.home-page .areas-section {
  background: white;
  padding-top: 42px;
  padding-bottom: 42px;
}
.home-page .areas-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.home-page .area-pill {
  border: 0;
  background: #efede4;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}
.home-page .cta-section {
  background:
    linear-gradient(90deg, rgba(25,82,28,0.92), rgba(25,82,28,0.82)),
    url('/images/services/weed-control-hero.jpg') center/cover no-repeat;
  padding: 48px max(5%, calc((100vw - 1360px) / 2));
}
.home-page .cta-section::before { display: none; }
.home-page .cta-inner {
  text-align: left;
  max-width: 960px;
  padding-right: clamp(120px, 20vw, 320px);
}
.home-page .cta-btns { justify-content: flex-start; }
.home-page .bottom-mascot {
  width: clamp(130px, 15vw, 215px);
  right: clamp(32px, 11vw, 170px);
  bottom: -10px;
}
.home-page footer {
  padding-left: max(5%, calc((100vw - 1360px) / 2));
  padding-right: max(5%, calc((100vw - 1360px) / 2));
}
.home-page .footer-grid,
.home-page .footer-bottom {
  width: min(1260px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media (max-width: 980px) {
  .home-page nav { height: auto; min-height: 72px; }
  .home-page .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 5% 46px;
  }
  .home-page .hero::before { background-position: 10% center; }
  .home-page .hero-card { justify-self: start; max-width: 560px; }
  .home-page .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .trust-strip-item { border-bottom: 1px solid #e7e4d8; }
  .home-page .program-grid,
  .home-page .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-page .results-section { grid-template-columns: 1fr; }
  .home-page .before-after,
  .home-page .reviews-stack,
  .home-page .results-section > .text-center { grid-column: auto; grid-row: auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 32px 5% 44px; }
  .hero h1 { font-size: var(--type-h1-mobile); }
  .hero-card { max-width: 520px; width: 100%; }
  .bottom-mascot { width: 190px; opacity: 0.9; right: 14px; }
  .cta-inner { padding-right: 0; }
  .cta-section { padding-bottom: 210px; }
}
@media (max-width: 900px) {
  .service-hero-inner,
  .service-cta-band .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero,
  .service-section,
  .service-section-dark,
  .service-cta-band { padding: 52px 5%; }
  .service-faq-grid { grid-template-columns: 1fr; }
  .service-cta-band { padding-bottom: 170px; }
  .service-cta-band .service-hero-inner { padding-right: 0; }
  .service-cta-mascot { width: 145px; right: 18px; }
  .service-hero { min-height: auto; }
  .learn-card-grid,
  .learn-article-shell { grid-template-columns: 1fr; }
  .learn-card-featured { grid-column: span 1; }
  .learn-toc { position: static; }
  .ai-inner { grid-template-columns: 1fr; }
  .home-page .ai-inner { grid-template-columns: 1fr; }
  .home-page .ai-process { grid-template-columns: 1fr; }
  .home-page .ai-process-arrow { display: none; }
  .home-page .ai-process-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 14px; text-align: left; align-items: center; }
  .home-page .ai-process-step p { grid-column: 2; }
  .home-page .ai-process-icon { margin: 0; grid-row: span 2; }
  .program-intro { grid-template-columns: 1fr; gap: 20px; }
  .results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #0f2610; padding: 16px 5%; border-bottom: 2px solid var(--gold); z-index: 99; }
  .home-page .nav-links.open {
    top: 72px;
    background: #fffdf7;
    border-bottom: 1px solid rgba(26,58,26,0.14);
  }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 32px 5%; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1,
  .service-hero-content h1,
  .weed-premium-hero h1 { font-size: var(--type-h1-small); }
}
@media (max-width: 1100px) {
  .weed-premium-hero__card { position: relative; right: auto; bottom: auto; width: min(420px, 100%); margin-top: 34px; }
  .weed-premium-hero { display: block; }
  .weed-problem-grid, .weed-process-grid, .weed-choice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .home-page .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .home-page .trust-strip,
  .home-page .program-grid,
  .home-page .services-grid { grid-template-columns: 1fr; }
  .home-page .trust-strip-item { border-right: 0; }
  .home-page .hero-card { display: block; }
  .home-page .cta-inner { padding-right: 0; text-align: center; }
  .home-page .cta-btns { justify-content: center; }
  .home-page .cta-section { padding-bottom: 150px; }
  .home-page .bottom-mascot { right: 50%; transform: translateX(50%); width: 130px; }
  .home-page .ai-section { min-height: auto; padding: 42px 5%; }
  .home-page .ai-title { font-size: clamp(42px, 13vw, 58px); }
  .home-page .ai-demo { padding: 22px; }
  .home-page .upload-zone { min-height: 220px; }
  .home-page .ai-upload-tips { grid-template-columns: 1fr; justify-items: start; }
  .home-page .ai-upload-tips span { justify-content: flex-start; }
  .weed-premium-hero { min-height: auto; padding: 34px 5% 42px; }
  .weed-premium-actions, .weed-final-cta { flex-direction: column; align-items: stretch; }
  .weed-final-cta--quote .hero-card { display: block; flex-basis: auto; }
  .weed-final-cta { padding-bottom: 112px; }
  .weed-final-cta__mascot { width: 86px; right: 18px; }
  .weed-premium-btn { width: 100%; }
  .weed-benefits-strip, .weed-problem-grid, .weed-process-grid, .weed-choice-grid, .weed-learning-grid, .weed-faq-grid { grid-template-columns: 1fr; }
  .weed-benefit { padding: 16px 5%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .weed-section-heading { text-align: left; margin-bottom: 24px; }
  .weed-premium-section { padding: 50px 5%; }
}
@media (max-width: 520px) {
  .bottom-mascot { width: 155px; right: 8px; }
  .cta-section { padding-bottom: 180px; }
}


/* ---- Assessment: upload zone ---- */
.assess-contact-form { margin: 20px 0 0; }
.assess-optional { font-weight: 400; opacity: 0.65; font-size: 0.9em; text-transform: none; letter-spacing: 0; }
.upload-zone { cursor: pointer; display: block; }
.upload-zone svg,
.upload-zone p,
.upload-zone div { pointer-events: none; }
/* disabled: greyed + no pointer events (also blocks drag) */
.upload-zone--disabled { opacity: 0.45; filter: grayscale(0.5); pointer-events: none; cursor: default; }
.upload-zone--disabled:hover { border-color: rgba(255,255,255,0.2) !important; background: transparent !important; }
.home-page .upload-zone--disabled:hover { border-color: rgba(79,127,50,0.18) !important; background: transparent !important; }
.upload-zone--drag { border-color: var(--gold) !important; background: rgba(232,184,75,0.08) !important; }
/* gate message — only visible when disabled */
.assess-zone-gate { display: none; font-size: 11px; font-style: italic; color: rgba(255,255,255,0.52); margin-top: 6px; pointer-events: none; }
.upload-zone--disabled .assess-zone-gate { display: block; }
.home-page .assess-zone-gate { color: rgba(16,32,23,0.45); font-size: 11px; }
/* tips row inside the zone */
.upload-zone .ai-upload-tips { width: 100%; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11px; color: rgba(255,255,255,0.5); pointer-events: none; }
.upload-zone .ai-upload-tips span { display: flex; align-items: center; gap: 5px; pointer-events: none; }
.upload-zone .ai-upload-tips svg { width: 13px; height: 13px; margin: 0; color: rgba(255,255,255,0.45); }
.home-page .upload-zone .ai-upload-tips { color: #6c706d; border-top-color: rgba(0,0,0,0.1); }
.home-page .upload-zone .ai-upload-tips svg { color: #4f8b31; }
/* photo count status — replaces tips when ≥1 photo held */
.assess-photo-status { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); pointer-events: none; }
.home-page .assess-photo-status { color: #4f8b31; border-top-color: rgba(0,0,0,0.1); }
/* thumbs */
.assess-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.assess-thumb { position: relative; width: 68px; flex-shrink: 0; }
.assess-thumb img { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; display: block; }
.assess-thumb-label { display: block; font-size: 10px; text-align: center; margin-top: 4px; line-height: 1.25; }
.assess-thumb--ready img { opacity: 1; }
.assess-thumb--ready .assess-thumb-label { color: rgba(255,255,255,0.5); }
.assess-thumb--uploading img { opacity: 0.6; }
.assess-thumb--uploading .assess-thumb-label { color: rgba(255,255,255,0.55); }
.assess-thumb--done .assess-thumb-label { color: #6abf4b; }
.assess-thumb--failed { cursor: pointer; }
.assess-thumb--failed img { opacity: 0.5; }
.assess-thumb--failed .assess-thumb-label { color: #e05252; }
.assess-zone-error { margin-top: 6px; }
/* home-page overrides for thumb labels (light card background) */
.home-page .assess-thumb--ready .assess-thumb-label { color: rgba(16,32,23,0.45); }
.home-page .assess-thumb--uploading .assess-thumb-label { color: rgba(16,32,23,0.5); }
.home-page .assess-thumb--done .assess-thumb-label { color: #2f6b18; }
.home-page .assess-thumb--failed .assess-thumb-label { color: #b42318; }
/* ---- Toast notification ---- */
.weeder-toast { position:fixed; top:20px; left:50%; transform:translateX(-50%) translateY(-8px); background:#3c7d2f; color:#fff; padding:12px 20px; border-radius:10px; font-size:14px; font-weight:600; box-shadow:0 6px 20px rgba(20,50,20,.25); z-index:9999; opacity:0; transition:opacity .25s, transform .25s; display:flex; align-items:center; gap:8px; pointer-events:none; }
.weeder-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }
