:root {
  --green: #2f7d20;
  --green-dark: #1f5d16;
  --green-soft: #eff8ec;
  --text: #171a16;
  --muted: #656d60;
  --line: #dfe8da;
  --cream: #fbf8ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 56, 24, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 165px;
}

.brand img {
  width: 168px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
  font-weight: 650;
  font-size: 14px;
}

.main-nav a {
  padding: 28px 0 24px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 125, 32, 0.22);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  background: #fff;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 48%, rgba(255,255,255,0.2) 75%),
    radial-gradient(circle at 75% 20%, rgba(255, 206, 99, 0.35), transparent 30%),
    linear-gradient(135deg, #f8fbf5 0%, #fff 45%, #e3f0dc 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 570px;
  align-items: center;
  gap: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #d7ebd0;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero h1 {
  margin: 16px 0 16px;
  max-width: 680px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 span { color: var(--green); }

.hero-services {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}

.hero-text {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.trust-row span {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.image-card {
  display: block;
  background: transparent;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 30px;
}

.image-card img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  display: block;
}

.section { padding: 82px 0; }

.section-soft {
  background: linear-gradient(180deg, var(--cream), #fff);
}

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

.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(29px, 3.2vw, 42px);
  letter-spacing: -0.04em;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--green);
  margin: 12px auto 0;
  border-radius: 999px;
}

.section-title p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.align-left {
  text-align: left;
  margin-inline: 0;
}

.align-left h2::after { margin-left: 0; }

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

.services-grid { grid-template-columns: repeat(4, 1fr); }

.card,
.price-card,
.info-box,
.contact-card,
.gallery-item,
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(32, 56, 24, 0.07);
}

.card {
  padding: 30px 24px;
  text-align: center;
}

.service-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  display: block;
}

.box-icon {
  width: 58px;
  height: 58px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); }

.price-card {
  position: relative;
  padding: 34px 30px;
}

.price-card.featured {
  border: 2px solid var(--green);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--green);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  color: var(--green-dark);
  margin: 0;
}

.subtitle {
  margin: 5px 0 20px;
  color: var(--muted);
  font-weight: 650;
}

.price-card ul,
.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.price-card li,
.info-box li {
  margin: 9px 0;
  color: #333;
}

.price-card li::before,
.info-box li::before {
  content: "✓";
  color: var(--green);
  margin-right: 9px;
  font-weight: 900;
}

.price {
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
  margin: 22px 0;
}

.note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.center-note {
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 34px;
  align-items: start;
}

.price-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(32, 56, 24, 0.07);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child { border-bottom: 0; }

.price-list strong {
  white-space: nowrap;
  font-size: 18px;
}

.info-box {
  padding: 32px;
  background: linear-gradient(180deg, #fff, var(--green-soft));
}

.info-box h3 {
  margin: 12px 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

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

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

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.gallery-item figcaption {
  padding: 16px 18px;
  font-weight: 850;
  color: var(--green-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  text-align: center;
  position: relative;
  padding: 10px 10px;
}

.step span {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 850;
  color: var(--text);
}

.faq-list details[open] summary {
  color: var(--green-dark);
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  color: var(--muted);
  padding: 0 24px 22px;
  margin: 0;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(47, 125, 32, .08), rgba(255,255,255,.95)),
    radial-gradient(circle at right, rgba(255, 196, 59, .25), transparent 30%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.contact-card h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 14px 0 14px;
}

.contact-card p {
  color: var(--muted);
  max-width: 760px;
}

.location {
  font-weight: 800;
  color: var(--text) !important;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 270px;
}

.contact-actions small {
  color: var(--muted);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: var(--green);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(47, 125, 32, .3);
}

.site-footer {
  background: #111611;
  color: #fff;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .9fr;
  gap: 36px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255,255,255,.72);
  margin: 8px 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .main-nav { gap: 14px; font-size: 13px; }
  .brand img { width: 150px; }
}

@media (max-width: 960px) {
  .nav-wrap { min-height: 70px; }
  .nav-toggle { display: block; }

  .main-nav,
  .site-header .btn-small {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .main-nav.is-open a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .two-col,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding: 42px 0; }
  .image-card img { height: 340px; }

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

  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { min-width: 0; }
  .brand img { width: 145px; }

  .hero h1 { font-size: 39px; }
  .hero-services { font-size: 18px; }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .btn { width: 100%; }

  .services-grid,
  .pricing-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-card.featured { transform: none; }
  .section { padding: 58px 0; }
  .contact-card { padding: 28px 20px; }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    text-align: center;
    display: block;
  }
}
