:root {
  --blue: #00a8ff;
  --deep-blue: #0077bd;
  --green: #7ed321;
  --deep-green: #47a600;
  --dark: #07131f;
  --white: #ffffff;
  --light: #f2fbff;
  --muted: #617384;
  --shadow: 0 20px 45px rgba(7, 19, 31, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(7, 19, 31, .08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-wrap img {
  width: 145px;
}

nav {
  display: flex;
  gap: 22px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--deep-blue);
}

.phone {
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  padding: 13px 18px;
  border-radius: 999px;
}

.hero {
  min-height: 780px;
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.30), transparent 30%),
    linear-gradient(135deg, var(--blue), var(--green));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -145px;
  height: 260px;
  background: var(--white);
  transform: rotate(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.badge.blue {
  background: rgba(0,168,255,.12);
  color: var(--deep-blue);
}

.badge.green {
  background: var(--green);
  color: var(--dark);
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .92;
  text-shadow: 0 7px 24px rgba(0,0,0,.18);
}

.hero p {
  max-width: 720px;
  font-size: 1.2rem;
  line-height: 1.65;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.btn {
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--white);
  color: var(--dark);
}

.hero small {
  font-weight: 800;
}

.hero-panel {
  background: rgba(255,255,255,.96);
  color: var(--dark);
  padding: 28px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-panel img {
  border-radius: 20px;
  margin-bottom: 18px;
}

.service-strip {
  display: grid;
  gap: 10px;
}

.service-strip span {
  background: var(--light);
  border-left: 6px solid var(--green);
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 900;
}

.hero-panel a {
  display: block;
  margin-top: 18px;
  text-align: center;
  background: var(--green);
  padding: 15px;
  border-radius: 18px;
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: 90px 0;
}

.section-title {
  max-width: 830px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  margin: 14px 0 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.step,
.plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 35px rgba(7,19,31,.09);
}

.card {
  border: 2px solid rgba(0,168,255,.14);
}

.icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,168,255,.18), rgba(126,211,33,.25));
  font-size: 2.2rem;
}

.card h3,
.step h3,
.plan h3 {
  font-size: 1.45rem;
  margin: 20px 0 8px;
}

.card p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(126,211,33,.25), transparent 22%),
    linear-gradient(135deg, #07131f, #0b2840);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan {
  position: relative;
}

.plan.featured {
  border: 5px solid var(--green);
  transform: translateY(-16px);
}

.best {
  position: absolute;
  top: -18px;
  left: 22px;
  background: var(--green);
  color: var(--dark);
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.price {
  color: var(--deep-blue);
  font-size: 2.6rem;
  font-weight: 900;
  margin: 12px 0 18px;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.plan ul {
  padding-left: 18px;
  margin: 0;
  line-height: 1.85;
}

.process {
  background: var(--light);
}

.step span {
  color: var(--deep-green);
  font-size: 2.2rem;
  font-weight: 900;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.showcase-card {
  min-height: 270px;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: white;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.showcase-card.detail {
  background-image: linear-gradient(180deg, rgba(0,168,255,.05), rgba(7,19,31,.82)), url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1200&q=80");
}

.showcase-card.lawn {
  background-image: linear-gradient(180deg, rgba(126,211,33,.05), rgba(7,19,31,.82)), url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1200&q=80");
}

.showcase-card.wash {
  background-image: linear-gradient(180deg, rgba(0,168,255,.05), rgba(7,19,31,.82)), url("https://images.unsplash.com/photo-1625097200227-965f1b8fd86d?auto=format&fit=crop&w=1200&q=80");
}

.contact {
  background: linear-gradient(135deg, rgba(0,168,255,.12), rgba(126,211,33,.18));
}

.contact-box {
  text-align: center;
  background: var(--white);
  border-radius: 34px;
  padding: 55px 35px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  margin: 16px 0 10px;
}

.contact-box p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 22px;
}

.big-phone {
  display: inline-flex;
  margin: 8px 0 18px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 999px;
}

.fine-print {
  font-size: .88rem;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 22px;
}

footer img {
  width: 110px;
  background: white;
  border-radius: 16px;
  padding: 6px;
}

footer p {
  color: rgba(255,255,255,.72);
  margin: 4px 0 0;
}

footer a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid,
  .cards.three,
  .plans,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel,
  .plan.featured {
    transform: none;
  }
  .footer-grid {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav {
    flex-direction: column;
    padding: 14px 0;
  }
  .logo-wrap img { width: 135px; }
  .phone { width: 100%; text-align: center; }
  .hero h1 { font-size: 3rem; }
  .btn { width: 100%; }
}
