/* ═══════════════════════════════════════════════
   OXFORD LAWN PRO - OXFORD, MS
   ═══════════════════════════════════════════════ */

:root {
  --green-950: #0a1f0a;
  --green-900: #132913;
  --green-800: #1b3a1b;
  --green-700: #256d27;
  --green-600: #2d8a30;
  --green-500: #38a63b;
  --green-400: #4cc94f;
  --green-300: #7ddb80;
  --green-100: #e8f5e9;
  --green-50: #f1faf2;
  --cream: #fdfcf8;
  --cream-warm: #f8f5ed;
  --gold: #c9a84c;
  --gold-light: #dcc36e;
  --brown-900: #2c1810;
  --white: #ffffff;
  --text: #111111;
  --text-secondary: #4a4a4a;
  --text-muted: #777777;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 70px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 1000;
  padding: 18px 32px;
  background: rgba(10, 31, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled {
  padding: 12px 32px;
  background: rgba(10, 31, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(56, 166, 59, 0.35);
  position: relative;
  overflow: hidden;
}
.nav-logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
}
.nav-logo-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 17px;
  color: var(--white); letter-spacing: -0.3px; line-height: 1.1;
}
.nav-brand-tagline {
  font-size: 10px; color: var(--green-400);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: none; gap: 28px; align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 13px;
  font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green-400); border-radius: 2px;
  transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: none; align-items: center; gap: 8px;
  color: var(--gold-light); font-weight: 700; font-size: 14px;
}
@media (min-width: 768px) { .nav-phone { display: flex; } }
.nav-phone svg { width: 15px; height: 15px; }
.nav-cta {
  background: var(--green-500); color: var(--white);
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 13px;
  transition: all 0.2s; border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(56, 166, 59, 0.3);
  letter-spacing: 0.3px;
}
.nav-cta:hover {
  background: var(--green-400); transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(56, 166, 59, 0.4);
}

/* Mobile menu */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-950); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 24px; font-weight: 600;
  letter-spacing: -0.5px;
}
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 32px; cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 170px 24px 100px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 170px 48px 100px; } }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,31,10,0.92) 0%, rgba(10,31,10,0.75) 40%, rgba(10,31,10,0.55) 70%, rgba(10,31,10,0.4) 100%);
}
.hero-texture {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1fr 320px; }
}
.hero-content { animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(56, 166, 59, 0.12);
  border: 1px solid rgba(56, 166, 59, 0.25);
  border-radius: 100px; padding: 8px 20px;
  margin-bottom: 28px;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-400); border-radius: 50%;
  animation: badgePulse 2.5s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.hero-badge span {
  font-size: 11px; color: var(--green-300);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 24px;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 40px; max-width: 500px;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-500); color: var(--white);
  padding: 16px 36px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(56, 166, 59, 0.35);
  letter-spacing: 0.2px;
}
.btn-hero:hover {
  background: var(--green-400); transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(56, 166, 59, 0.45);
}
.btn-hero svg { width: 18px; height: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.btn-outline svg { width: 16px; height: 16px; }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: var(--green-400);
  letter-spacing: -1px; line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 6px; font-weight: 500;
  letter-spacing: 0.5px; line-height: 1.4;
}

/* Hero card (Jeremy photo) */
.hero-card {
  display: none;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
@media (min-width: 960px) { .hero-card { display: block; } }
.hero-card-img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-xl);
}
.hero-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,10,0.6) 0%, transparent 50%);
  border-radius: var(--radius-xl);
}
.hero-card-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
}
.hero-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.hero-card-role {
  font-size: 13px; color: var(--green-300);
  font-weight: 600; letter-spacing: 0.5px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  padding: 28px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .trust-bar { gap: 48px; padding: 32px 48px; } }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

/* ─── SECTION COMMON ─── */
section { padding: 80px 24px; }
@media (min-width: 768px) { section { padding: 100px 48px; } }
.section-eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 18px;
}
.section-desc {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.7; max-width: 540px;
}

/* ─── SERVICES ─── */
.services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: block;
  cursor: pointer;
}
a.service-card { text-decoration: none; color: inherit; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 166, 59, 0.15);
}
.service-card-img {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-100), rgba(56,166,59,0.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  margin-top: -40px; position: relative; z-index: 2;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.service-card h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.service-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65;
}

/* ─── GALLERY ─── */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-desc { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: 1200px; margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; }
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden; position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) {
  grid-column: span 2; grid-row: span 2;
  aspect-ratio: auto;
}

/* ─── ABOUT ─── */
.about {
  background: var(--green-950); color: var(--white);
  position: relative; overflow: hidden;
}
.about::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,166,59,0.08), transparent 70%);
  pointer-events: none;
}
.about-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
@media (min-width: 800px) {
  .about-layout { grid-template-columns: 380px 1fr; gap: 72px; }
}
.about-photo {
  width: 100%; max-width: 380px; aspect-ratio: 3/4;
  border-radius: var(--radius-xl); overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-photo::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); pointer-events: none;
}
.about-content .section-eyebrow { color: var(--green-400); }
.about-content .section-heading { color: var(--white); }
.about-content .section-desc { color: rgba(255,255,255,0.65); }
.about-timeline {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px;
}
.about-milestone {
  display: flex; gap: 16px; align-items: flex-start;
}
.about-milestone-dot {
  width: 10px; height: 10px;
  background: var(--green-400);
  border-radius: 50%; flex-shrink: 0;
  margin-top: 6px;
}
.about-milestone-text {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.about-milestone-text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.about-quote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--green-400);
  padding: 20px 24px; margin-top: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-quote p {
  font-style: italic; font-size: 15px;
  color: rgba(255,255,255,0.75); line-height: 1.65;
}

/* ─── IRRIGATION SPOTLIGHT ─── */
.irrigation-spotlight {
  background: var(--green-950); color: var(--white);
  position: relative; overflow: hidden;
  padding: 80px 24px;
}
@media (min-width: 768px) { .irrigation-spotlight { padding: 100px 48px; } }
.irrigation-spotlight::before {
  content: ''; position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,166,59,0.1), transparent 70%);
  pointer-events: none;
}
.irrigation-inner {
  max-width: 1180px; margin: 0 auto;
  position: relative; z-index: 2;
}
.irrigation-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.irrigation-header .section-desc { margin: 0 auto; }

/* ─── Cadence strip ─── */
.cadence-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: stretch;
  margin: 0 auto 56px;
  max-width: 980px;
}
.cadence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 26px;
  text-align: left;
  position: relative;
  transition: all 0.25s;
}
.cadence-card.mow {
  background: linear-gradient(140deg, rgba(56,166,59,0.14), rgba(56,166,59,0.04));
  border-color: rgba(56,166,59,0.25);
}
.cadence-card.irr {
  background: linear-gradient(140deg, rgba(120,200,255,0.10), rgba(56,166,59,0.04));
  border-color: rgba(120,200,255,0.22);
}
.cadence-tag {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 14px;
}
.cadence-card.irr .cadence-tag { color: #8ecbff; }
.cadence-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.cadence-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.cadence-detail {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
}
.cadence-cycle {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 0 4px;
  min-width: 110px;
}
.cadence-cycle svg {
  opacity: 0.9;
  animation: cadence-spin 14s linear infinite;
}
@keyframes cadence-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cadence-cycle svg { animation: none; }
}
.cadence-cycle-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .cadence-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cadence-cycle {
    flex-direction: row;
    padding: 8px 0;
  }
  .cadence-cycle svg { transform: rotate(90deg); }
}

/* ─── Body: photo + services ─── */
.irrigation-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 880px) {
  .irrigation-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 40px;
    align-items: start;
  }
}
.irrigation-photo {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.irrigation-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.irrigation-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  pointer-events: none;
}
@media (min-width: 880px) {
  .irrigation-photo { aspect-ratio: auto; height: 100%; min-height: 460px; }
}

.irrigation-services {
  display: grid; gap: 16px;
}
@media (min-width: 540px) and (max-width: 879px) {
  .irrigation-services { grid-template-columns: 1fr 1fr; }
}
.irr-service {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s;
}
.irr-service:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(56,166,59,0.3);
}
.irr-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(56,166,59,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.irr-service strong {
  display: block; font-size: 15px;
  color: var(--white); margin-bottom: 4px;
}
.irr-service p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.55; margin: 0;
}

.irrigation-cta { text-align: center; margin-top: 8px; }
.irrigation-cta .btn-hero { display: inline-flex; }

/* ─── PLANS ─── */
.plans { background: var(--green-900); color: var(--white); }
.plans-header { text-align: center; margin-bottom: 56px; }
.plans-header .section-desc { margin: 0 auto; color: rgba(255,255,255,0.7); }
.plans-header .section-label { color: var(--green-400); }
.plans-header h2 { color: var(--white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.plan-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 8px 40px rgba(56,166,59,0.15);
}
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--white); font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(56,166,59,0.3);
}
.plan-name {
  font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 8px;
}
.plan-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 6px;
}
.plan-desc {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 28px; line-height: 1.6;
}
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.plan-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600); font-size: 11px; font-weight: 900;
}
.plan-cta {
  display: block; width: 100%; text-align: center;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px;
  transition: all 0.2s; cursor: pointer;
  border: 2px solid var(--green-500);
  color: var(--green-600); background: transparent;
}
.plan-cta:hover {
  background: var(--green-500); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(56,166,59,0.25);
}
.plan-card.featured .plan-cta {
  background: var(--green-500); color: var(--white);
}
.plan-card.featured .plan-cta:hover {
  background: var(--green-400);
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-desc { margin: 0 auto; }
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 900px; margin: 0 auto;
  position: relative;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(30,70,32,0.25);
  position: relative; z-index: 2;
}
.step h3 {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.3px; margin-bottom: 10px;
}
.step p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; max-width: 240px;
  margin: 0 auto;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
  color: #f59e0b; font-size: 16px;
}
.testimonial-text {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  color: var(--green-600);
}
.testimonial-name {
  font-weight: 700; font-size: 14px;
}
.testimonial-loc {
  font-size: 12px; color: var(--text-muted);
}

/* ─── CTA / CONTACT ─── */
.cta-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(56,166,59,0.1), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}
.cta-section .section-eyebrow { color: var(--green-400); }
.cta-section .section-heading { color: var(--white); }
.cta-section .section-desc {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}
.cta-form {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 480px; margin: 0 auto;
}
.cta-form input, .cta-form textarea, .cta-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit; font-size: 14px;
  transition: all 0.2s;
  outline: none;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus {
  border-color: var(--green-400);
  background: rgba(255,255,255,0.12);
}
.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.cta-form select option { background: var(--green-900); color: var(--white); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .cta-row { grid-template-columns: 1fr; } }
.cta-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green-500); color: var(--white);
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(56,166,59,0.3);
  margin-top: 8px;
}
.cta-submit:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56,166,59,0.4);
}
.cta-note {
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.6);
  padding: 64px 24px 32px;
}
@media (min-width: 768px) { footer { padding: 64px 48px 32px; } }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .nav-brand-name {
  font-size: 20px; margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 14px; line-height: 1.7;
  max-width: 320px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--green-600); color: var(--white);
}
.footer-col h4 {
  font-size: 13px; font-weight: 800;
  color: var(--white); letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px; padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 32px;
}
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-location {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-location svg { width: 14px; height: 14px; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .hero { min-height: auto; padding: 120px 20px 60px; }
  .hero-stats { gap: 20px; }
  section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 100%; }
  .plans-grid { grid-template-columns: 1fr; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center; justify-content: center;
  padding: 40px;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); border: none;
  color: var(--white); font-size: 28px;
  width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--green-500); color: var(--white);
  padding: 12px 24px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 14px; z-index: 10001;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus ring for all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, .plan-cta:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 2px;
}
nav a:focus-visible, .nav-cta:focus-visible {
  outline-color: var(--green-300);
}

/* Fix select default state appearance */
.cta-form select { color: rgba(255,255,255,0.4); }
.cta-form select:valid { color: var(--white); }

/* ─── SCARCITY BANNER ─── */
.scarcity-banner {
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}
.scarcity-banner.hidden {
  transform: translateY(-100%);
}
.scarcity-banner strong {
  color: var(--gold-light);
}
.scarcity-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 8px;
  animation: scarcityPulse 2s ease infinite;
}
@keyframes scarcityPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── STICKY CTA BAR ─── */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 999;
  background: rgba(10, 31, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible {
  bottom: 0;
}
.sticky-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.sticky-cta-text strong {
  color: var(--gold-light);
  font-weight: 700;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(56,166,59,0.3);
  white-space: nowrap;
}
.sticky-cta-btn:hover {
  background: var(--green-400);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .sticky-cta { gap: 10px; padding: 10px 16px; }
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta-btn { padding: 8px 16px; font-size: 12px; }
}

/* ─── PLANS TEASER (after trust bar) ─── */
.plans-teaser {
  background: var(--green-950);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plans-teaser-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.plans-teaser-text strong {
  color: var(--white);
  font-weight: 700;
}
.plans-teaser-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-400);
  letter-spacing: -0.5px;
}
.plans-teaser-price span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.plans-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-400);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid var(--green-400);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.plans-teaser-cta:hover {
  background: var(--green-400);
  color: var(--green-950);
}
.plans-teaser-cta svg {
  width: 14px; height: 14px;
}

/* ─── WHY MONTHLY ─── */
.why-monthly {
  background: var(--green-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-monthly::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(56,166,59,0.08), transparent 60%);
  pointer-events: none;
}
.why-monthly-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.why-monthly-header .section-eyebrow { color: var(--green-400); }
.why-monthly-header .section-heading { color: var(--white); }
.why-monthly-header .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(56,166,59,0.2);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(56,166,59,0.15), rgba(56,166,59,0.05));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── PLAN PRICING ─── */
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--green-600);
  letter-spacing: -2px;
  line-height: 1;
}
.plan-price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.plan-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  color: #dc2626;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.plan-spots-dot {
  width: 6px; height: 6px;
  background: #dc2626;
  border-radius: 50%;
  animation: scarcityPulse 2s ease infinite;
}

/* ─── SPOTS TRACKER ─── */
.spots-tracker {
  max-width: 400px; margin: 0 auto 48px;
  text-align: center;
}
.spots-tracker-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; font-weight: 600;
}
.spots-tracker-label strong { color: var(--gold-light); }
.spots-bar {
  width: 100%; height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.spots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-400), #ef4444);
  border-radius: 100px;
  width: 62.5%; /* 5 of 8 filled */
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.spots-tracker-count {
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-top: 8px; font-weight: 500;
}

/* ─── MOBILE FLOATING CALL ─── */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 998;
  width: 56px; height: 56px;
  background: var(--green-500);
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(56,166,59,0.4), 0 2px 8px rgba(0,0,0,0.2);
  border: none; cursor: pointer;
  transition: all 0.3s;
  animation: callPulse 3s ease infinite;
}
@media (max-width: 768px) { .mobile-call-btn { display: flex; } }
.mobile-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(56,166,59,0.5);
}
.mobile-call-btn svg { width: 24px; height: 24px; }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(56,166,59,0.4); }
  50% { box-shadow: 0 4px 20px rgba(56,166,59,0.4), 0 0 0 8px rgba(56,166,59,0.15); }
}
/* Hide call btn when sticky cta is visible */
.sticky-cta.visible ~ .mobile-call-btn { bottom: 72px; }

/* ─── MONTHLY VS ONE-TIME ─── */
.comparison {
  background: var(--cream-warm);
  text-align: center;
}
.comparison-header { margin-bottom: 40px; }
.comparison-header .section-desc { margin: 0 auto; }
.comparison-table {
  max-width: 700px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-col {
  padding: 32px 24px;
}
.comparison-col.old {
  background: #f3f0e8;
}
.comparison-col.new {
  background: var(--green-900);
  color: var(--white);
}
.comparison-col-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.comparison-col.old .comparison-col-label { color: var(--text-muted); }
.comparison-col.new .comparison-col-label { color: var(--green-400); border-color: rgba(255,255,255,0.1); }
.comparison-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 8px 0;
  text-align: left;
}
.comparison-col.old .comparison-item { color: var(--text-muted); }
.comparison-col.new .comparison-item { color: rgba(255,255,255,0.85); }
.comparison-x { color: #dc2626; font-weight: 800; font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }
.comparison-check { color: var(--green-400); font-weight: 800; font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }

/* ─── RESULTS STRIP ─── */
.results-strip {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(56,166,59,0.08), transparent 70%);
  pointer-events: none;
}
.results-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
@media (max-width: 600px) {
  .results-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.result-item {}
.result-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--green-400);
  letter-spacing: -1px;
  line-height: 1;
}
.result-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── MINI TESTIMONIAL (inline) ─── */
.mini-testimonial {
  max-width: 500px;
  margin: 32px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: left;
}
.mini-testimonial-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.mini-testimonial-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-style: italic;
}
.mini-testimonial-text strong {
  color: rgba(255,255,255,0.85);
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

/* ─── URGENCY BANNER (above contact) ─── */
.urgency-banner {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.urgency-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── FAQ ACCORDION ─── */
.faq {
  background: var(--white);
}
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: rgba(56,166,59,0.2);
  box-shadow: 0 4px 20px rgba(56,166,59,0.08);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px; font-weight: 700;
  color: var(--text);
  background: none; border: none;
  width: 100%; text-align: left;
  font-family: inherit;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-600); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px; color: var(--green-600);
  transition: all 0.3s;
  font-weight: 400;
}
.faq-item.active .faq-icon {
  background: var(--green-500);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── GUARANTEE BADGE ─── */
.guarantee-badge {
  display: flex; align-items: center; gap: 14px;
  max-width: 400px; margin: 32px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
}
.guarantee-shield {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.guarantee-text strong {
  color: var(--green-400);
  font-weight: 700;
  display: block;
  font-size: 14px;
}

/* ─── COMPARISON CTA ─── */
.comparison-cta {
  margin-top: 32px;
}
.comparison-cta .btn-hero {
  font-size: 14px;
  padding: 14px 32px;
}

/* ─── CARD GLOW HOVER ─── */
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(56,166,59,0.15), 0 4px 16px rgba(0,0,0,0.08);
}
.plan-card.featured:hover {
  box-shadow: 0 12px 48px rgba(56,166,59,0.25), 0 4px 16px rgba(0,0,0,0.1);
}

/* ─── NUMBER COUNTER ANIMATION ─── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stat-value[data-counted] {
  animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
