/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF7;
  --bg-alt: #F0F4EE;
  --fg: #1A1A1A;
  --fg-muted: #5C6B5E;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --white: #FFFFFF;
  --border: #D6E4D4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
}
.hero-card--accent {
  border-color: var(--amber);
  background: #FFF8EC;
}
.hero-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.hero-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
/* Lawn stripes art */
.hero-lawn-art {
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 40px;
}
.lawn-stripes {
  display: flex;
  gap: 8px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
}
.lawn-stripe {
  flex: 1;
  border-radius: 8px;
}
.lawn-stripe--1 { background: #4CAF50; }
.lawn-stripe--2 { background: #43A047; }
.lawn-stripe--3 { background: #388E3C; }
.lawn-stripe--4 { background: #43A047; }
.lawn-stripe--5 { background: #4CAF50; }
.lawn-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

/* ===== SHARED SECTION STYLES ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== HOW IT WORKS ===== */
.howitworks { padding: 100px 40px; background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { padding: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--bg-alt);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--border);
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== FOR PROS ===== */
.forpros { padding: 100px 40px; background: var(--bg-alt); }
.forpros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.forpros-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.forpros-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.forpros-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.check-icon { flex-shrink: 0; margin-top: 2px; }
/* Pro card */
.pro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
}
.pro-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pro-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.pro-location {
  font-size: 13px;
  color: var(--fg-muted);
}
.pro-badge {
  margin-left: auto;
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.pro-stats {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
}
.pro-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
}
.pro-stat + .pro-stat {
  border-left: 1px solid var(--border);
}
.pro-stat-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.pro-stat-lbl {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.pro-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pro-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}
.pro-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pro-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.pro-avail {
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  background: #DCFCE7;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== FOR BRANDS ===== */
.forbrands { padding: 100px 40px; background: var(--green); }
.forbrands-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.brand-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.forbrands-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.5px;
}
.forbrands-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.brand-targets { display: flex; flex-direction: column; gap: 24px; }
.brand-target {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.brand-target-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-target-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.brand-target-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===== PHILOSOPHY ===== */
.philosophy { padding: 100px 40px; background: var(--bg); }
.philosophy-quote {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 48px 0;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.3px;
  font-style: italic;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 14px;
  color: var(--fg-muted);
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.pillar-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing { padding: 100px 40px; background: var(--bg-alt); }
.closing-content {
  max-width: 640px;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.closing-vision {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green);
  padding: 64px 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  cursor: default;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .forpros-grid,
  .forbrands-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .hero-visual { display: none; }
}

@media (max-width: 600px) {
  .hero, .howitworks, .forpros, .forbrands, .philosophy, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .navbar { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .hero-lawn-art { padding: 0 24px; }
  .stat-divider { margin: 0 16px; }
  .hero-stats { gap: 0; }
  .stat-value { font-size: 20px; }
}