* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #050805;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(132, 190, 48, 0.25);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 190px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: #8cc63f;
}

.header-phone {
  font-weight: 900;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 2rem;
}

.hero {
  min-height: 100vh;
  padding: 130px 0 70px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.48), rgba(0,0,0,.8)),
    url("images/hero-mower.png") center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 50px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: #8cc63f;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #8cc63f;
}

.hero-subtext {
  max-width: 570px;
  font-size: 1.15rem;
  color: #e8e8e8;
  margin-bottom: 28px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #8cc63f;
  color: #061006;
}

.btn-primary:hover {
  background: #a7e24f;
}

.btn-outline {
  border-color: rgba(255,255,255,.65);
  color: white;
  background: rgba(0,0,0,.25);
}

.btn-outline:hover {
  border-color: #8cc63f;
  color: #8cc63f;
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #f1f1f1;
  font-size: 0.92rem;
  font-weight: 700;
}

.estimate-card {
  background: rgba(5, 8, 5, 0.92);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
}

.estimate-card h2 {
  font-size: 2rem;
  line-height: 1.05;
}

.estimate-card h2 span {
  color: #8cc63f;
}

.estimate-card p {
  margin: 10px 0 18px;
  color: #d7d7d7;
}

form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.22);
  background: #111;
  color: white;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

small {
  display: block;
  margin-top: 14px;
  color: #bdbdbd;
}

.trust-bar {
  background: #090d09;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.trust-grid div {
  border-left: 2px solid #8cc63f;
  padding-left: 18px;
}

.trust-grid h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.trust-grid p {
  color: #cfcfcf;
  font-size: 0.9rem;
}

.section {
  padding: 80px 0;
}

.dark-section {
  background: radial-gradient(circle at top, #111a11, #050805 65%);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 38px;
}

.section-label {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #151a15, #090c09);
  border: 1px solid rgba(255,255,255,.14);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #8cc63f;
}

.service-card h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #d1d1d1;
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
  background: #050805;
}

.about-image {
  background:
    linear-gradient(90deg, rgba(0,0,0,.1), rgba(0,0,0,.8)),
    url("images/about-lawn.png") center/cover no-repeat;
}

.about-content {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-content p {
  color: #d4d4d4;
  margin-bottom: 18px;
}

.about-content .btn {
  align-self: flex-start;
  margin-top: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  min-height: 190px;
  background: #111;
}

.work-card img {
  height: 100%;
  object-fit: cover;
}

.work-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.75);
  color: white;
  padding: 5px 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.split-section {
  background: #f4f5f1;
  color: #111;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.split-section .section-label {
  text-align: left;
}

.split-grid h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li::before {
  content: "✓";
  color: #78b82a;
  font-weight: 900;
  margin-right: 9px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.area-list span {
  background: white;
  padding: 12px 14px;
  border-radius: 5px;
  border-left: 4px solid #8cc63f;
  font-weight: 700;
}

.extra-fee-note {
  padding: 16px;
  background: #e6eedb;
  border-left: 4px solid #8cc63f;
}

.contact-section {
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.7)),
    url("images/hero-mower.png") center/cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 60px;
  align-items: center;
}

.contact-grid .section-label {
  text-align: left;
}

.contact-grid h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.contact-grid p {
  color: #e3e3e3;
  margin-bottom: 24px;
}

.contact-form {
  background: rgba(5,8,5,.94);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
}

.footer {
  background: #050805;
  padding-top: 60px;
  border-top: 1px solid rgba(132,198,63,.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #cfcfcf;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer h3 {
  color: #8cc63f;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  background: #6ba321;
  color: #071007;
  font-weight: 700;
}

.mobile-call-btn {
  display: none;
}

@media (max-width: 950px) {
  .nav-menu,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.active {
    display: grid;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #050805;
    padding: 22px;
    border-top: 1px solid rgba(132,198,63,.3);
  }

  .hero-content,
  .contact-grid,
  .split-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    order: -1;
  }

  .trust-grid,
  .services-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .header-inner {
    height: 68px;
  }

  .logo img {
    max-width: 155px;
  }

  .hero {
    padding-top: 95px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .work-grid,
  .footer-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .estimate-card,
  .contact-form {
    padding: 22px;
  }

  .section {
    padding: 58px 0;
  }

  .mobile-call-btn {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2000;
    background: #8cc63f;
    color: #061006;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
  }
}

/* Pricing Preview */

.pricing-preview {
  background: #f4f5f1;
  color: #111;
  padding: 70px 0;
}

.pricing-box {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.pricing-preview .section-label {
  text-align: left;
}

.pricing-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 15px;
}

.pricing-box p {
  color: #333;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border-left: 5px solid #8cc63f;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.price-card h3 {
  margin-bottom: 10px;
}

.price-card strong {
  display: block;
  color: #5f961f;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.pricing-box .btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 10px;
}

@media (max-width: 950px) {
  .pricing-box {
    grid-template-columns: 1fr;
  }

  .price-cards {
    grid-template-columns: 1fr;
  }
}