:root {
  --bg: #f5fbf7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #143126;
  --muted: #597266;
  --primary: #19724f;
  --primary-dark: #0e5738;
  --primary-soft: #e0f4ea;
  --border: rgba(25, 114, 79, 0.14);
  --shadow: 0 20px 50px rgba(19, 81, 55, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(172, 232, 199, 0.22), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(108, 200, 150, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fcf9 0%, #ffffff 48%, #f2faf5 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(25, 114, 79, 0.16);
}

a {
  color: inherit;
}

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

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

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(231, 247, 237, 0.7), rgba(255, 255, 255, 0.88));
}

.orb {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(56px);
  z-index: -1;
  opacity: 0.64;
}

.orb-one {
  top: -6rem;
  left: -8rem;
  background: rgba(131, 221, 171, 0.18);
  animation: drift 12s ease-in-out infinite;
}

.orb-two {
  right: -8rem;
  bottom: -8rem;
  background: rgba(76, 180, 129, 0.16);
  animation: drift 15s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 252, 249, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(16, 74, 49, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  display: block;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(18, 92, 153, 0.12);
  box-shadow: 0 14px 28px rgba(18, 92, 153, 0.14);
}

.brand-logo {
  width: 148px;
  height: 58px;
  padding: 0.35rem 0.55rem;
  border-radius: 18px;
}

.footer-logo {
  width: 120px;
  height: 46px;
  padding: 0.3rem 0.45rem;
  border-radius: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-sub {
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(16, 75, 50, 0.08);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.hero-stats,
.trust-grid,
.service-grid,
.promo-grid,
.pricing-grid,
.why-grid,
.feature-list,
.contact-grid,
.info-list {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.contact-copy h2,
.hero-photo-card h2 {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-photo-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.hero-copy p,
.section-heading p,
.why-copy p,
.contact-copy p,
.card p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(25, 114, 79, 0.14);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.chip.light {
  background: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #31a16f);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(25, 114, 79, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(25, 114, 79, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(25, 114, 79, 0.18);
  color: var(--primary-dark);
}

.card,
.stat-card,
.info-item,
.trust-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.hero-photo-card,
.service-body,
.gallery-copy,
.feature-item,
.form-card,
.info-item,
.trust-grid > div,
.highlight-copy {
  padding: 1.35rem;
}

.stat-card strong,
.service-body h3,
.gallery-copy h3,
.feature-item h3,
.form-card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.hero-photo-card {
  overflow: hidden;
  animation: floatCard 6.5s ease-in-out infinite;
}

.hero-image,
.service-image,
.gallery-image,
.highlight-image {
  object-fit: cover;
}

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
}

.photo-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}

.trust-strip {
  padding: 0 0 1rem;
}

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

.trust-grid > div {
  padding: 1.15rem 1.2rem;
}

.trust-label,
.info-label,
.service-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.pricing-heading {
  max-width: 920px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pricing-heading h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  margin-left: auto;
  margin-right: auto;
}

.pricing-heading p {
  max-width: 640px;
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.promo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.75rem;
}

.promo-card,
.pricing-card,
.pricing-banner {
  padding: 1.45rem;
}

.promo-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 246, 237, 0.92));
  border-top: 4px solid rgba(25, 114, 79, 0.14);
}

.promo-card h3,
.pricing-card h3,
.pricing-banner h3 {
  margin: 0.9rem 0 0.65rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.pricing-card,
.pricing-banner {
  background: rgba(255, 255, 255, 0.97);
  border-top: 4px solid rgba(25, 114, 79, 0.14);
}

.price-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 114, 79, 0.12);
}

.price-row strong {
  display: block;
}

.price-row span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note {
  margin: 1rem 0 0;
}

.pricing-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-points li + li {
  margin-top: 0.45rem;
}

.pricing-banner {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(227, 243, 233, 0.92));
}

.pricing-points.compact {
  margin-top: 0.25rem;
}

.service-card,
.gallery-card,
.highlight-card {
  overflow: hidden;
}

.service-card,
.gallery-card,
.feature-item,
.info-item,
.stat-card,
.trust-grid > div,
.highlight-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.gallery-card:hover,
.feature-item:hover,
.info-item:hover,
.stat-card:hover,
.trust-grid > div:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 80, 54, 0.15);
}

.service-image {
  aspect-ratio: 4 / 3;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: stretch;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card .gallery-image {
  aspect-ratio: 4 / 3;
}

.gallery-card.large .gallery-image {
  aspect-ratio: 4 / 5;
}

.why-grid {
  grid-template-columns: 0.98fr 1.02fr;
  align-items: start;
  gap: 2rem;
}

.feature-list {
  margin-top: 1.5rem;
}

.highlight-card {
  display: grid;
  gap: 0;
}

.highlight-image {
  aspect-ratio: 4 / 4.2;
}

.contact-grid {
  grid-template-columns: 0.98fr 1.02fr;
  align-items: start;
  gap: 2rem;
}

.info-list {
  margin-top: 1.5rem;
}

.info-item {
  display: grid;
  gap: 0.3rem;
  border-radius: var(--radius-lg);
}

.info-item strong,
.info-item a {
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.form-card {
  border-radius: 30px;
}

.quote-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 114, 79, 0.16);
  border-radius: var(--radius-md);
  padding: 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(25, 114, 79, 0.42);
  box-shadow: 0 0 0 4px rgba(25, 114, 79, 0.12);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d9862, #177e50);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(23, 126, 80, 0.28);
  animation: pulse 2.8s ease-in-out infinite;
}

.site-footer {
  padding: 1.4rem 0 2.25rem;
}

.footer-row,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row {
  justify-content: space-between;
  color: var(--muted);
}

.footer-brand p {
  margin: 0;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-sm {
  transition-delay: 0.1s;
}

.reveal-delay,
.reveal-delay-md {
  transition-delay: 0.18s;
}

.reveal-delay-lg {
  transition-delay: 0.26s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -16px, 0) scale(1.05);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-grid,
  .service-grid,
  .promo-grid,
  .pricing-grid,
  .pricing-banner,
  .why-grid,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(100% - 1.2rem, 1160px);
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .why-copy h2,
  .contact-copy h2,
  .hero-photo-card h2 {
    font-size: 2.2rem;
  }

  .pricing-heading h2 {
    max-width: none;
    font-size: 2rem;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 520px) {
  .btn,
  .quote-form button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand-logo {
    width: 122px;
    height: 50px;
  }

  .footer-logo {
    width: 108px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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