/* =============================================
   WIDE OPEN LAWN & LANDSCAPE — styles.css
   Des Moines, Iowa
   ============================================= */

:root {
  --green-dark:   #061a09;
  --green-mid:    #0f3d1a;
  --green-light:  #1a6128;
  --green-bright: #2d8c40;
  --gold:         #f5c518;
  --gold-dark:    #d4a010;
  --gold-pale:    #fff7d6;
  --white:        #ffffff;
  --off-white:    #f4f2ea;
  --text-dark:    #111111;
  --text-mid:     #3d4a52;
  --text-light:   #ffffff;
  --border:       #dde4ea;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.13);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.17);
  --shadow-xl:    0 24px 60px rgba(0,0,0,0.22);
  --radius:       14px;
  --radius-lg:    22px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', system-ui, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.65; }
h1,h2,h3,h4 { font-family: 'Montserrat', system-ui, sans-serif; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,26,9,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(245,197,24,0.25);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  transition: background .3s;
}
.nav-container {
  max-width: 1360px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.logo-mark {
  width: 46px; height: 46px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); letter-spacing: .03em;
}
.logo-secondary {
  font-size: .62rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: .4rem 0; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover::after { width: 100%; }
.btn-nav-cta {
  background: var(--gold); color: var(--green-dark);
  padding: .6rem 1.4rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 700;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(245,197,24,.4);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,197,24,.5); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 5rem;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(6,26,9,.87) 0%, rgba(15,61,26,.78) 60%, rgba(6,26,9,.92) 100%);
}
.hero-content { position: relative; z-index: 5; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  letter-spacing: -.01em;
}
.hero-title .highlight { color: var(--gold); }
.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin: 0 auto 2.5rem;
  max-width: 600px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem;
  background: var(--gold); color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(245,197,24,.45);
  transition: all .3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,197,24,.55); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 1rem;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--gold); color: var(--gold);
}
.hero-nav {
  position: absolute; bottom: 110px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer; transition: all .3s;
}
.hero-dot.active {
  background: var(--gold); border-color: var(--gold);
  transform: scale(1.3);
}
.scroll-cue {
  position: absolute; bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; color: rgba(255,255,255,.65); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; z-index: 20;
}
.scroll-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(18px);opacity:0} }

/* ── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: #061a09;
  border-bottom: 3px solid var(--gold);
  padding: 1rem 2rem;
}
.trust-bar-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION HELPERS ─────────────────────── */
.section-container { max-width: 1360px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .9rem;
}
.section-title { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--green-dark); margin-bottom: .75rem; }
.section-subtitle { font-size: 1.08rem; color: var(--text-mid); }
.section-title-light { color: var(--white); }
.section-subtitle-light { color: rgba(255,255,255,.75); }

/* ── GAME SECTION ────────────────────────── */
.game-section {
  padding: 5.5rem 0;
  background: #0a1f0e;
  position: relative; overflow: hidden;
}
.game-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(245,197,24,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(26,92,42,.35) 0%, transparent 55%);
}
.game-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.game-header .eyebrow { color: var(--gold); }
.game-header .section-title { color: var(--white); }
.game-header .section-subtitle { color: rgba(255,255,255,.65); }
.game-wrapper {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.75rem; position: relative; z-index: 1;
}
.game-outer {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,58,24,.28);
  border: 4px solid var(--green-mid);
}
#lawnGame { display: block; background: #3d6b4f; }
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(13,58,24,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; backdrop-filter: blur(4px);
}
.game-start-box { text-align: center; padding: 2rem 2.5rem; }
.promo-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 1.2rem 2.5rem;
  border-radius: 14px; margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(245,197,24,.4);
}
.promo-label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--green-dark); text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: .2rem;
}
.promo-amount {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem; font-weight: 800;
  color: var(--green-dark); line-height: 1;
}
.promo-sub { display: block; font-size: .85rem; color: var(--green-dark); opacity: .85; }
.game-instr { color: rgba(255,255,255,.9); font-size: .95rem; margin-bottom: 1.5rem; }
.btn-start-game {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white); border: none;
  padding: 1rem 2.5rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 16px rgba(26,92,42,.5);
}
.btn-start-game:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,92,42,.6); }
.game-complete {
  position: absolute; inset: 0;
  background: rgba(13,58,24,.96);
  display: none; align-items: center; justify-content: center;
  z-index: 10;
}
.code-box { text-align: center; padding: 2rem; }
.code-label { display: block; color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: .75rem; }
.code-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem; font-weight: 800;
  color: var(--gold);
  background: rgba(245,197,24,.1);
  padding: .75rem 2rem; border-radius: 12px;
  border: 3px dashed var(--gold);
  margin-bottom: .9rem; letter-spacing: .2em;
}
.code-note { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 1.5rem; }
.btn-copy {
  background: var(--gold); color: var(--green-dark);
  border: none; padding: .75rem 2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .3s;
}
.btn-copy:hover { background: var(--gold-dark); transform: scale(1.04); }
.game-controls {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.ctrl-hint {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; justify-content: center;
}
.key {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--white);
  border: 2px solid var(--green-mid);
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600;
  color: var(--green-mid);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.ctrl-label { color: rgba(255,255,255,.7); font-size: .88rem; margin-left: .4rem; font-weight: 500; }
.progress-track {
  width: 320px; height: 18px;
  background: var(--white); border-radius: 9px;
  overflow: hidden; box-shadow: inset 0 2px 4px rgba(0,0,0,.08);
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  border-radius: 9px; transition: width .25s ease;
}
.progress-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8);
}
/* Mobile joystick */
.mobile-joystick {
  display: none;
  flex-direction: column; align-items: center; gap: 4px; margin-top: .5rem;
}
.joy-row { display: flex; gap: 4px; }
.joy-btn {
  width: 52px; height: 52px;
  background: var(--green-mid); color: var(--white);
  border: none; border-radius: 10px;
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  user-select: none; -webkit-user-select: none;
  box-shadow: var(--shadow-md); transition: background .1s;
  touch-action: manipulation;
}
.joy-btn:active { background: var(--green-dark); }
.joy-spacer { width: 52px; height: 52px; }

/* ── SERVICES ────────────────────────────── */
.services {
  padding: 6.5rem 0;
  background: linear-gradient(170deg, #0f3d1a 0%, #061a09 100%);
  position: relative;
}
.services::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 10%, rgba(245,197,24,.12) 0%, transparent 45%),
              radial-gradient(ellipse at 80% 90%, rgba(255,255,255,.04) 0%, transparent 45%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  position: relative; z-index: 2;
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card.featured {
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-dark) 100%);
}
.service-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gold); color: var(--green-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: 50px;
  text-transform: uppercase;
}
.service-icon {
  width: 64px; height: 64px;
  background: #e8f4eb; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card.featured .service-icon { background: rgba(255,255,255,.15); }
.service-icon svg { width: 32px; height: 32px; }
.service-name {
  font-size: 1.35rem; color: var(--green-dark); margin-bottom: .75rem;
}
.service-card.featured .service-name { color: var(--white); }
.service-desc { color: var(--text-mid); line-height: 1.72; margin-bottom: 1.4rem; font-size: .95rem; }
.service-card.featured .service-desc { color: rgba(255,255,255,.8); }
.service-list { display: flex; flex-direction: column; gap: .5rem; }
.service-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; color: var(--text-dark);
  padding: .45rem 0; border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border: none; }
.service-card.featured .service-list li { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.15); }
.service-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
}
.service-card.featured .service-list li::before { background: var(--gold); }

/* ── ABOUT ───────────────────────────────── */
.about { padding: 7rem 0; background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-eyebrow { display: block; margin-bottom: 1rem; }
.about-title { font-size: clamp(1.8rem,3.5vw,2.75rem); color: var(--green-dark); margin-bottom: 1.25rem; }
.about-lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2.25rem; }
.about-checks { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.about-check {
  display: flex; gap: 1rem; align-items: flex-start;
}
.check-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: linear-gradient(135deg, #0f3d1a, #1a6128);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem; font-weight: 800;
  margin-top: .1rem;
}
.check-text strong { display: block; color: var(--green-dark); font-size: .98rem; margin-bottom: .1rem; }
.check-text span { font-size: .9rem; color: var(--text-mid); }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,58,24,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,197,24,.4);
  border-radius: 12px; padding: 1rem 1.4rem;
  color: var(--white);
}
.badge-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.badge-text { font-size: .78rem; color: rgba(255,255,255,.8); margin-top: .15rem; display: block; }

/* ── SERVICE AREAS ───────────────────────── */
.areas {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, #061a09 0%, #0f3d1a 100%);
}
.areas-inner { display: flex; align-items: center; gap: 5rem; }
.areas-text { flex: 1; }
.areas-text .eyebrow { color: var(--gold); }
.areas-title { color: var(--white); font-size: clamp(1.9rem,3.5vw,2.8rem); margin-bottom: 1rem; }
.areas-sub { color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 2.5rem; }
.radius-pill {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(245,197,24,.35);
  padding: 1rem 1.75rem; border-radius: 50px; margin-bottom: 2.5rem;
}
.radius-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.radius-desc { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.4; }
.cities-wrap { display: flex; flex-wrap: wrap; gap: .6rem; }
.city-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .85rem; color: rgba(255,255,255,.88); font-weight: 500;
  transition: all .25s; cursor: default;
}
.city-pill:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.areas-map {
  flex: 0 0 380px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.areas-map svg { width: 100%; max-width: 280px; margin: 0 auto 1rem; opacity: .9; }
.areas-map-note { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ── CONTACT ─────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-eyebrow { display: block; margin-bottom: .9rem; }
.contact-title { font-size: clamp(1.9rem,3.5vw,2.75rem); color: var(--green-dark); margin-bottom: 1rem; }
.contact-sub { color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  transition: all .3s; box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  border-color: var(--green-light); box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #eef7f0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap svg { width: 22px; height: 22px; color: var(--green-mid); }
.contact-card-label { font-size: .8rem; color: var(--text-mid); margin-bottom: .15rem; }
.contact-card-val { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.response-note { margin-top: 1.25rem; font-size: .85rem; color: var(--text-mid); }
.response-note strong { color: var(--green-mid); }
/* Form side */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.3rem; color: var(--green-dark); margin-bottom: 1.75rem;
  padding-bottom: .75rem; border-bottom: 2px solid #eef7f0;
}
.form-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--green-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'Open Sans', sans-serif; font-size: .95rem;
  color: var(--text-dark); background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26,92,42,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .3s; margin-top: .5rem;
  box-shadow: 0 4px 16px rgba(26,92,42,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,42,.45); }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: #030d05;
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-logo .logo-primary { font-size: 1.15rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,.45); font-size: .82rem; text-align: center; margin-top: 1.5rem; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 1.5rem 0 1rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { order: -1; }
  .areas-inner { flex-direction: column; gap: 3rem; }
  .areas-map { flex: none; width: 100%; max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 78px; left: 0; right: 0;
    background: linear-gradient(180deg, #0f3d1a, #061a09);
    flex-direction: column; padding: 2rem;
    gap: 1.5rem; z-index: 999;
    transform: translateY(-110%); opacity: 0;
    transition: all .35s ease;
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .btn-nav-cta { width: 100%; text-align: center; justify-content: center; }
  .trust-bar-inner { gap: 1.25rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .mobile-joystick { display: flex; }
  .ctrl-hint { display: none; }
}
@media (max-width: 480px) {
  .nav-container { height: 68px; padding: 0 1rem; }
  .logo-primary { font-size: 1.1rem; }
  .game-outer { width: 100%; }
  #lawnGame { width: 100%; height: auto; }
  .progress-track { width: 260px; }
}
