* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #062b21;
  --green: #0f5138;
  --green-soft: #e8f8ef;
  --lime: #9be15d;
  --gold: #e8c547;
  --text: #17211d;
  --muted: #66736d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(6, 43, 33, 0.14);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7fbf8;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 81, 56, 0.08);
  transition: 0.3s;
}

.topbar.scrolled {
  box-shadow: 0 10px 35px rgba(6, 43, 33, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.brand strong {
  display: block;
  font-size: 20px;
  color: var(--green-dark);
  line-height: 1;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
  color: #31433b;
}

nav a {
  transition: 0.25s;
}

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

.nav-call {
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 81, 56, 0.22);
}

.hero {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(155, 225, 93, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(232, 197, 71, 0.28), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.badge,
.mini-title,
.section-title span {
  display: inline-flex;
  background: var(--green-soft);
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  color: var(--green-dark);
}

.hero p {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}

.hero-buttons,
.contact-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s;
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 30px rgba(15, 81, 56, 0.25);
}

.btn.secondary {
  background: white;
  color: var(--green);
  border: 1px solid rgba(15, 81, 56, 0.16);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 81, 56, 0.09);
  border-radius: 20px;
  padding: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  color: var(--green);
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: white;
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(155, 225, 93, 0.18);
  border-radius: 50%;
  right: -90px;
  top: -90px;
}

.hero-card img {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  margin-bottom: 24px;
  position: relative;
}

.hero-card h2 {
  font-size: 32px;
  line-height: 1.1;
  position: relative;
}

.hero-card p {
  color: rgba(255,255,255,0.78);
  margin: 14px 0 22px;
  position: relative;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
}

.hero-card li {
  background: rgba(255,255,255,0.1);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
}

.section {
  padding: 80px 0;
}

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

.section-title h2,
.why h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  color: var(--green-dark);
  margin-top: 14px;
}

.section-title p,
.why p,
.contact p {
  color: var(--muted);
  margin-top: 14px;
}

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

.card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 81, 56, 0.08);
  box-shadow: 0 14px 38px rgba(6, 43, 33, 0.06);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card.highlight {
  background: var(--green);
  color: white;
}

.card.highlight p {
  color: rgba(255,255,255,0.78);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 18px;
  font-size: 25px;
  margin-bottom: 18px;
}

.card.highlight .icon {
  background: rgba(255,255,255,0.14);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.why {
  padding: 80px 0;
  background: var(--green-dark);
  color: white;
}

.why h2 {
  color: white;
}

.why p {
  color: rgba(255,255,255,0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.features {
  display: grid;
  gap: 18px;
}

.features div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  padding: 24px;
}

.features strong {
  color: var(--gold);
  font-size: 22px;
}

.features h3 {
  margin-top: 8px;
  font-size: 22px;
}

.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
}

.contact-info,
.message-card {
  background: white;
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(15, 81, 56, 0.08);
  box-shadow: var(--shadow);
}

.info-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f5faf7;
  border: 1px solid rgba(15, 81, 56, 0.08);
}

.info-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.info-box a,
.info-box p {
  font-weight: 900;
  color: var(--green-dark);
  margin: 0;
}

.message-card h3 {
  font-size: 28px;
  color: var(--green-dark);
}

.message-card p {
  color: var(--muted);
  margin: 10px 0 18px;
}

textarea {
  width: 100%;
  height: 160px;
  resize: none;
  border: 1px solid rgba(15, 81, 56, 0.16);
  border-radius: 20px;
  padding: 16px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}

textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 81, 56, 0.08);
}

button {
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}

button:hover {
  transform: translateY(-3px);
}

small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--green);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(15,81,56,0.35);
  z-index: 200;
}

footer {
  background: #051f18;
  color: white;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

footer p {
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 620px) {
  .nav {
    height: 74px;
  }

  .brand strong {
    font-size: 17px;
  }

  .nav-call {
    padding: 10px 13px;
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .message-card,
  .hero-card {
    padding: 24px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

.local-seo {
  padding: 70px 0;
  background: #f7fbf8;
}

.local-seo-box {
  background: white;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(15, 81, 56, 0.08);
  box-shadow: 0 20px 60px rgba(6, 43, 33, 0.10);
}

.local-seo h2 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 44px);
  color: #062b21;
  line-height: 1.1;
}

.local-seo p {
  margin-top: 14px;
  color: #66736d;
}
