﻿:root {
  --green: #2e7d32;
  --green-strong: #1f5a24;
  --anthracite: #1a1c1e;
  --off-white: #f7f8f6;
  --white: #ffffff;
  --text: #202324;
  --muted: #5e6661;
  --glass-light: rgba(255, 255, 255, 0.66);
  --glass-dark: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.28);
  --radius-lg: 24px;
  --radius-asym: 34px 10px 34px 10px;
  --shadow-soft: 0 14px 34px rgba(14, 17, 14, 0.12);
  --shadow-strong: 0 18px 46px rgba(8, 10, 9, 0.2);
  --wrap: min(1160px, 92vw);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--off-white);
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  color: var(--anthracite);
}

h1,
h2 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 0.85rem;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
}

.section-soft {
  background:
    linear-gradient(150deg, rgba(46, 125, 50, 0.07), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(45deg, rgba(26, 28, 30, 0.035) 0 1px, transparent 1px 12px);
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.45rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(46, 125, 50, 0.2), transparent 44%),
    radial-gradient(circle at 72% 20%, rgba(46, 125, 50, 0.14), transparent 38%),
    linear-gradient(145deg, #0f1412 0%, #171a1c 52%, #101514 100%);
  transition: opacity 0.45s ease;
}

#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 14px);
  opacity: 0.5;
}

#preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-core {
  position: relative;
  z-index: 5;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateZ(0);
}

.preloader-logo {
  width: 399px;
  height: 399px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  animation: logoPulse 1.25s ease-in-out infinite;
}

.preloader-tag {
  display: inline-block;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--green-strong), var(--green));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.preloader-core strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2.6vw, 1.9rem);
}

.preloader-core p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.blast-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 50, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.28);
  z-index: 2;
}

.ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(79, 170, 87, 0.4);
}

.ring-3 {
  width: 280px;
  height: 280px;
  border-color: rgba(112, 196, 120, 0.28);
}

.blast-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.blast-particles span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(94, 196, 102, 0.95);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.blast-particles span:nth-child(1) { --x: 160px; --y: 0px; }
.blast-particles span:nth-child(2) { --x: 112px; --y: -112px; }
.blast-particles span:nth-child(3) { --x: 0px; --y: -160px; }
.blast-particles span:nth-child(4) { --x: -112px; --y: -112px; }
.blast-particles span:nth-child(5) { --x: -160px; --y: 0px; }
.blast-particles span:nth-child(6) { --x: -112px; --y: 112px; }
.blast-particles span:nth-child(7) { --x: 0px; --y: 160px; }
.blast-particles span:nth-child(8) { --x: 112px; --y: 112px; }

#preloader.is-open .blast-ring {
  animation: ringBlast 0.82s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}

#preloader.is-open .ring-2 {
  animation-delay: 0.06s;
}

#preloader.is-open .ring-3 {
  animation-delay: 0.12s;
}

#preloader.is-open .blast-particles span {
  animation: particleBlast 0.8s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
}

#preloader.is-open .blast-particles span:nth-child(odd) {
  animation-delay: 0.08s;
}

#preloader.is-open .blast-particles span:nth-child(even) {
  animation-delay: 0.14s;
}

#preloader.is-open .preloader-core {
  animation: coreFade 0.72s ease-out forwards;
}

@keyframes ringBlast {
  0% { opacity: 0.82; transform: translate(-50%, -50%) scale(0.28); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.35); }
}

@keyframes particleBlast {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  18% { opacity: 0.95; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.06); }
}

@keyframes coreFade {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(1.07); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 620px) {
  .preloader-logo {
    width: 220px;
    height: 220px;
  }

  .blast-ring {
    width: 140px;
    height: 140px;
  }

  .ring-2 {
    width: 180px;
    height: 180px;
  }

  .ring-3 {
    width: 230px;
    height: 230px;
  }

  .blast-particles span:nth-child(n+5) {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  backdrop-filter: blur(10px);
  background: rgba(247, 248, 246, 0.88);
  border-bottom: 1px solid rgba(26, 28, 30, 0.08);
}

.header-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--anthracite);
  white-space: nowrap;
}

.logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transform: scale(1.32);
  transform-origin: left center;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2f3431;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.66rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transform: translateZ(0);
}

.btn:hover {
  transform: translate3d(0, -2px, 0);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.62) 50%, transparent 80%);
  transform: translate3d(-160%, 0, 0);
  animation: shimmer 3s linear infinite;
}

.btn-main {
  color: var(--white);
  background: linear-gradient(120deg, var(--green-strong), var(--green));
  box-shadow: 0 10px 24px rgba(18, 86, 27, 0.26);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

@keyframes shimmer {
  to {
    transform: translate3d(160%, 0, 0);
  }
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(26, 28, 30, 0.14);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.6rem 0.55rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--anthracite);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
  z-index: 905;
}

.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 86vw);
  height: 100dvh;
  background: rgba(247, 248, 246, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
  border-left: 1px solid rgba(26, 28, 30, 0.1);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  z-index: 920;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer.is-open {
  transform: translate3d(0, 0, 0);
}

.menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(26, 28, 30, 0.14);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 0.9rem;
}

.drawer-nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid rgba(26, 28, 30, 0.08);
}

.drawer-cta {
  margin-top: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) + 110px);
  padding-bottom: 1.4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(46, 125, 50, 0.28), transparent 42%),
    linear-gradient(140deg, #121715 0%, #1a1c1e 48%, #222a25 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(46, 125, 50, 0.26), transparent 44%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 4.2rem 0 2rem;
  display: grid;
  gap: 1rem 2.2rem;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "copy visual"
    "actions visual";
  align-items: center;
}

.hero-copy {
  grid-area: copy;
}

.kicker {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--green-strong), var(--green));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.05rem, 4.2vw, 3.4rem);
  max-width: 20ch;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.hero-visual {
  grid-area: visual;
  justify-self: end;
  width: min(510px, 100%);
  transform: translate3d(0, 0, 0);
}

.hero-visual img {
  width: 100%;
  height: min(470px, 52vw);
  border-radius: var(--radius-asym);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.hero-actions {
  grid-area: actions;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.floating-benefits {
  position: relative;
  z-index: 3;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.floating-benefits article {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--glass-dark);
  backdrop-filter: blur(11px);
  box-shadow: var(--shadow-soft);
}

.floating-benefits strong {
  display: block;
  color: var(--white);
}

.floating-benefits span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.bento-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.bento {
  border-radius: var(--radius-asym);
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(26, 28, 30, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.bento-media {
  width: 100%;
  height: 132px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(26, 28, 30, 0.08);
}

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

.why-prefab {
  background:
    linear-gradient(145deg, rgba(15, 23, 18, 0.96), rgba(8, 16, 12, 0.98)),
    radial-gradient(circle at 15% 20%, rgba(46, 125, 50, 0.3), transparent 40%);
  color: var(--white);
}

.why-prefab .section-head {
  text-align: center;
  margin-inline: auto;
}

.why-prefab .section-head h2 {
  color: var(--white);
}

.why-panel {
  border-radius: var(--radius-asym);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(140deg, rgba(10, 29, 18, 0.82), rgba(7, 18, 12, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px);
  box-shadow: var(--shadow-strong);
  padding: 1.25rem;
}

.why-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-item {
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 0.85rem;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 125, 50, 0.45);
  background: rgba(46, 125, 50, 0.14);
  display: grid;
  place-items: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: #8ae293;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  gap: 1rem;
  border-left: 4px solid var(--green);
  border-radius: 0 22px 22px 0;
  background: var(--white);
  padding: 0.75rem 0.95rem 0.75rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.timeline img {
  width: 100%;
  height: 128px;
  border-radius: 14px;
  object-fit: cover;
}

.timeline li h3 {
  margin-top: 0.15rem;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.area-copy {
  background:
    linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(255, 255, 255, 0.95)),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-asym);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.area-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.area-highlights span {
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.28);
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.glass-card {
  border-radius: var(--radius-asym);
  padding: 1.2rem;
  background: var(--glass-light);
  border: 1px solid rgba(46, 125, 50, 0.22);
  backdrop-filter: blur(9px);
  box-shadow: var(--shadow-soft);
}

.works-swiper {
  border-radius: var(--radius-asym);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.swiper-slide img {
  width: 100%;
  height: min(430px, 55vw);
  object-fit: cover;
}

.works-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background: #101514;
}

.works-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.78);
  transform: scale(1.08);
}

.works-swiper .swiper-slide img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.testimonials-swiper {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 245, 0.98));
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0.55rem 1.35rem;
  max-width: 1060px;
  margin: 0 auto;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  padding: 0.35rem;
}

.testimonial-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.05rem 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.94)),
    #ffffff;
  border: 1px solid rgba(46, 125, 50, 0.14);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.7), rgba(46, 125, 50, 0.08));
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonial-card .testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 999px;
  border: 1px solid rgba(46, 125, 50, 0.16);
  box-shadow: 0 4px 10px rgba(20, 22, 20, 0.1);
  object-fit: cover;
}

.testimonial-meta h3 {
  margin: 0 0 0.16rem;
  font-size: 1.03rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.quote {
  margin: 0;
  color: #2a312c;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (min-width: 921px) {
  .testimonial-card {
    min-height: 198px;
    padding: 0.95rem 0.95rem 0.9rem;
    gap: 0.8rem;
  }

  .quote {
    font-size: 0.93rem;
    line-height: 1.52;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--white);
}

.swiper-pagination-bullet-active {
  background: var(--green);
}

.testimonials-pagination {
  bottom: 4px !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 999px;
  opacity: 1;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border-radius: 18px;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(26, 28, 30, 0.1);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  background: #eff3ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: center;
}

.nap-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 28, 30, 0.08);
  border-radius: var(--radius-asym);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.nap-company {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.phone-link {
  color: var(--green-strong);
  text-decoration: none;
  font-weight: 700;
}

.phone-link:hover {
  text-decoration: underline;
}

.nap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(120deg, #222629, #353c42);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(26, 28, 30, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-wrap {
  padding: 0.55rem;
  border-radius: var(--radius-asym);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 28, 30, 0.08);
  box-shadow: var(--shadow-soft);
}

.floating {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 910;
  text-decoration: none;
  box-shadow: var(--shadow-strong);
  transform: translate3d(0, 0, 0);
}

.floating svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp {
  right: 16px;
  bottom: 88px;
  background: #25d366;
  animation: pulse 1.9s infinite;
}

.instagram {
  right: 16px;
  bottom: 16px;
  background: linear-gradient(140deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.58);
  }

  70% {
    box-shadow: 0 0 0 17px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

[data-aos] {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 18px), 0) scale(var(--reveal-scale, 0.98));
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), opacity 760ms ease;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

[data-aos].reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    padding-top: 3.6rem;
  }

  .floating-benefits,
  .authority-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .kicker {
    margin-inline: auto;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .timeline li {
    grid-template-columns: 1fr;
    padding: 0.8rem;
  }

  .timeline img {
    height: 180px;
  }

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

  .bento-media {
    height: 155px;
  }

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

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

  .logo {
    gap: 0;
  }

  .logo img {
    width: 92px;
    height: 92px;
    transform: scale(1.22);
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  }

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

  .bento-media {
    height: 190px;
  }

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

  .hero-visual img {
    height: 260px;
  }

  .map-wrap iframe {
    min-height: 280px;
  }

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