:root {
  --green: #25d366;
  --green-dark: #128c4a;
  --ink: #141817;
  --muted: #5f6966;
  --line: #dce6e2;
  --soft: #f4f8f6;
  --white: #ffffff;
  --accent: #f6b23c;
  --accent-soft: #fff3d8;
  --shadow: 0 18px 50px rgba(17, 36, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 226, 0.8);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  text-decoration: none;
  color: #28312e;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn-sm {
  min-height: 40px;
  padding: 10px 14px;
}

.btn-lg {
  min-height: 52px;
  padding: 15px 22px;
}

.btn-whatsapp {
  color: var(--white) !important;
  background: var(--green-dark);
  box-shadow: 0 10px 22px rgba(18, 140, 74, 0.24);
}

.btn-whatsapp:hover {
  background: #0d733c;
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.10), rgba(246, 178, 60, 0.08) 45%, rgba(255, 255, 255, 0.95)),
    var(--white);
}

.hero-grid,
.split-grid,
.area-grid,
.estimate-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.split-grid p,
.area-grid p,
.estimate-grid p,
.visual-cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-list i,
.service-card i,
.info-card i {
  color: var(--green-dark);
}

.hero-media {
  position: relative;
}

.hero-media img,
.cta-image img,
.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 16 / 9;
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: -24px;
  max-width: 260px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

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

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

.feature-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card,
.service-card,
.testimonial,
.step,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 36, 28, 0.06);
}

.info-card,
.service-card,
.testimonial {
  padding: 24px;
}

.info-card i,
.service-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.14);
  font-size: 23px;
}

.info-card p,
.service-card p,
.testimonial p,
.step p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.gallery-section {
  background: linear-gradient(180deg, var(--white), #f9fbfa);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 36, 28, 0.08);
}

.gallery-item img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: 3 / 4;
}

.gallery-item-wide img {
  aspect-ratio: 16 / 9;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 22, 20, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.section-split {
  background: linear-gradient(180deg, var(--white), #fbfcfb);
}

.goods-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px;
  border-radius: 8px;
  background: var(--ink);
}

.goods-panel span,
.area-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  font-weight: 800;
}

.goods-panel span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-tags span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 390px;
  border: 0;
}

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

.step {
  padding: 20px;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 900;
}

.estimate-section {
  color: var(--white);
  background: linear-gradient(135deg, #111816, #143826);
}

.estimate-section .section-kicker,
.estimate-section p {
  color: #d8efe3;
}

.price-factors {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-factors li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial strong {
  display: block;
  margin-top: 16px;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  min-height: 56px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  padding: 0 20px 18px;
}

.visual-cta {
  color: var(--white);
  background: var(--green-dark);
}

.visual-cta p {
  color: #e8fff1;
}

.cta-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 14px;
}

.cta-image {
  margin: 0;
}

.cta-image img {
  max-height: 440px;
}

.cta-image-secondary img {
  max-height: 360px;
}

.site-footer {
  padding: 54px 0 100px;
  color: #e7efeb;
  background: #101614;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer small {
  color: #b8c7c0;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(18, 140, 74, 0.34);
  text-decoration: none;
  font-weight: 900;
  animation: pulse 2.2s infinite;
}

.floating-wa i {
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.46); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1080px) {
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    aspect-ratio: 1;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 8px 0;
  }

  .hero-grid,
  .split-grid,
  .area-grid,
  .estimate-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-badge {
    position: static;
    margin: -18px 16px 0;
  }

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

  .gallery-item img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item-wide img {
    aspect-ratio: 16 / 9;
  }

  .gallery-item figcaption {
    position: static;
    border-radius: 0;
  }

  .cta-photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 24px, 1120px);
  }

  .brand span:last-child {
    max-width: 210px;
    line-height: 1.2;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .hero-actions .btn,
  .visual-cta .btn,
  .estimate-section .btn {
    width: 100%;
  }

  .trust-list,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-photo-stack {
    grid-template-columns: 1fr;
  }

  .cta-image img,
  .cta-image-secondary img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
    width: 56px;
    aspect-ratio: 1;
    padding: 0;
    border-radius: 50%;
  }

  .floating-wa span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
