:root {
  --ink: #0e1c2a;
  --ink-soft: #1a3148;
  --teal: #1a7a62;
  --teal-deep: #145c4a;
  --teal-bright: #2a9b7c;
  --sand: #f3efe6;
  --mist: #e8eef2;
  --paper: #fafbfc;
  --white: #ffffff;
  --muted: #5a6b7a;
  --line: rgba(14, 28, 42, 0.08);
  --shadow: 0 18px 50px rgba(14, 28, 42, 0.12);
  --radius: 18px;
  --header-h: 74px;
  --topbar-h: 46px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-head--light h2,
.section-head--light p {
  color: var(--white);
}

.section-head--light .eyebrow {
  color: #8fd9c2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(26, 122, 98, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(26, 122, 98, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--outline {
  background: transparent;
  border-color: rgba(14, 28, 42, 0.18);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: rgba(26, 122, 98, 0.06);
}

.btn--lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

/* ========== SITE TOP ========== */
.site-top {
  position: relative;
  height: var(--topbar-h);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  background:
    linear-gradient(105deg, #0a1622 0%, #12283a 48%, #0f3d34 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 120% at 0% 50%, rgba(42, 155, 124, 0.18), transparent 55%),
    radial-gradient(ellipse 30% 100% at 100% 50%, rgba(42, 155, 124, 0.1), transparent 50%);
  pointer-events: none;
}

.site-top__row {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-top__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
  white-space: nowrap;
}

.site-top__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.site-top__item i {
  font-size: 0.72rem;
  color: #7ed4b8;
  width: 1em;
  text-align: center;
}

.site-top__item--accent {
  color: #c8f0e2;
}

.site-top__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.site-top__dot {
  display: none;
}

.site-top__contacts {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.site-top__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.7rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.site-top__link i {
  font-size: 0.75rem;
  color: #7ed4b8;
}

.site-top__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-top__link:hover i {
  color: #a8ebd4;
}

.site-top__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #b8f5d0 !important;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.site-top__wa i {
  color: #25d366;
  font-size: 0.85rem;
}

.site-top__wa:hover {
  background: rgba(37, 211, 102, 0.28);
  border-color: rgba(37, 211, 102, 0.55);
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .site-top__item--hide-md {
    display: none;
  }

  .site-top__sep--hide-md {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-top__link span {
    display: none;
  }

  .site-top__link {
    padding: 0.35rem 0.55rem;
  }

  .site-top__link i {
    font-size: 0.85rem;
  }

  .site-top__wa span {
    display: none;
  }

  .site-top__wa {
    padding: 0.35rem 0.65rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(14, 28, 42, 0.07);
  box-shadow: 0 10px 28px rgba(14, 28, 42, 0.04);
  background: #fff;
}

.site-header__row {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  color: var(--teal);
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.12rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Footer logo compatibility */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--teal);
}

.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo__mark svg {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.logo__text small {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.site-nav {
  margin-left: auto;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav__link {
  position: relative;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
  opacity: 0.9;
}

.site-nav__link:hover {
  color: var(--ink);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.site-nav__link.active::after {
  transform: scaleX(1);
}

.site-nav__link.is-active,
.site-nav__link.active {
  color: var(--ink);
  font-weight: 600;
}

.site-nav__top,
.site-nav__close,
.site-nav__title,
.site-nav__foot {
  display: none;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  margin-left: 0.35rem;
}

.site-header__call {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  padding: 0.2rem 0.35rem;
}

.site-header__call-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header__call-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.site-header__call:hover .site-header__call-num {
  color: var(--teal-deep);
}

.site-header__cta {
  flex-shrink: 0;
  border-radius: 12px;
  padding: 0.72rem 1.15rem;
  font-size: 0.88rem;
}

.site-header__phone-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(26, 122, 98, 0.1);
  color: var(--teal-deep);
  border: 1px solid rgba(26, 122, 98, 0.18);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 28, 42, 0.1);
  border-radius: 12px;
  background: var(--white);
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  border-color: rgba(26, 122, 98, 0.35);
  background: rgba(26, 122, 98, 0.04);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav__backdrop {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  color: var(--white);
  overflow: hidden;
  background: #0b1722;
}

.hero__slider {
  position: relative;
  min-height: inherit;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
}

.hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(8, 16, 24, 0.94) 0%, rgba(10, 28, 36, 0.82) 42%, rgba(12, 40, 36, 0.72) 100%),
    var(--hero-img) center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.hero__slide.is-active .hero__bg {
  transform: scale(1);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 18% 40%, rgba(42, 155, 124, 0.2), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 20%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(8, 16, 24, 0.45) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
  padding: 4.25rem 0 6.5rem;
}

.hero__content .eyebrow {
  color: #9ee0cb;
  margin-bottom: 0.55rem;
}

.hero__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.05;
}

.hero__content h1 {
  margin: 0 0 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 15ch;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.hero__content h1 span {
  color: #9ee0cb;
}

.hero__lead {
  margin: 0 0 1.65rem;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__actions .btn--primary {
  border-radius: 12px;
  padding: 0.9rem 1.45rem;
}

.hero__actions .btn--ghost {
  border-radius: 12px;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero__trust {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero__trust i {
  color: #9ee0cb;
  font-size: 0.78rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}

.hero__stage {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scene {
  position: relative;
  width: 88%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  z-index: 1;
}

.scene__glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 224, 203, 0.32), transparent 68%);
  filter: blur(10px);
  animation: pulseGlow 4.5s ease-in-out infinite;
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(143, 217, 194, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.float-orb--1 {
  width: 64px;
  height: 64px;
  top: 9%;
  right: 11%;
  animation: floatY 5.2s ease-in-out infinite;
}

.float-orb--2 {
  width: 40px;
  height: 40px;
  bottom: 14%;
  left: 10%;
  animation: floatY 6.5s ease-in-out infinite reverse;
}

/* Isometric 3D scenes */
.iso {
  position: relative;
  width: 260px;
  height: 220px;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(-28deg);
  animation: floatScene 7s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.iso--truck .iso__body {
  position: absolute;
  left: 40px;
  top: 70px;
  width: 160px;
  height: 70px;
  background: linear-gradient(160deg, #3bb892, #145c4a);
  border-radius: 10px;
  box-shadow: 18px 24px 0 rgba(0, 0, 0, 0.2);
}

.iso--truck .iso__cab {
  position: absolute;
  left: 160px;
  top: 55px;
  width: 70px;
  height: 55px;
  background: linear-gradient(160deg, #eef3f6, #b8c8d4);
  border-radius: 8px 14px 8px 8px;
  box-shadow: 12px 20px 0 rgba(0, 0, 0, 0.14);
}

.iso--truck .iso__cab::after {
  content: "";
  position: absolute;
  inset: 10px 12px 14px 10px;
  background: #16324a;
  border-radius: 4px;
}

.iso__wheel {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0e1c2a;
  border: 4px solid #8fd9c2;
  bottom: 55px;
}

.iso__wheel--1 { left: 60px; }
.iso__wheel--2 { left: 175px; }

.iso__box {
  position: absolute;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #d4a574, #b8895a);
  border-radius: 6px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.15);
}

.iso__box--1 { left: 55px; top: 35px; animation: bob 3s ease-in-out infinite; }
.iso__box--2 { left: 110px; top: 28px; width: 36px; height: 36px; animation: bob 3.4s ease-in-out infinite 0.3s; }

.iso--office .iso__desk {
  position: absolute;
  left: 40px;
  top: 110px;
  width: 180px;
  height: 28px;
  background: linear-gradient(160deg, #c4a882, #9a7a55);
  border-radius: 6px;
  box-shadow: 16px 22px 0 rgba(0, 0, 0, 0.15);
}

.iso--office .iso__monitor {
  position: absolute;
  left: 90px;
  top: 50px;
  width: 80px;
  height: 60px;
  background: #16324a;
  border-radius: 8px;
  border: 4px solid #b8c8d4;
  box-shadow: 10px 14px 0 rgba(0, 0, 0, 0.12);
}

.iso--office .iso__chair {
  position: absolute;
  left: 110px;
  top: 145px;
  width: 50px;
  height: 35px;
  background: #1a7a62;
  border-radius: 8px 8px 4px 4px;
}

.iso--office .iso__plant {
  position: absolute;
  left: 45px;
  top: 70px;
  width: 24px;
  height: 40px;
  background: #2a9b7c;
  border-radius: 50% 50% 8px 8px;
  animation: bob 4s ease-in-out infinite;
}

.iso--safe .iso__shield {
  position: absolute;
  left: 70px;
  top: 30px;
  width: 120px;
  height: 140px;
  background: linear-gradient(160deg, #2a9b7c, #145c4a);
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  box-shadow: 16px 20px 0 rgba(0, 0, 0, 0.15);
}

.iso--safe .iso__crate {
  position: absolute;
  left: 95px;
  top: 70px;
  width: 70px;
  height: 55px;
  background: linear-gradient(145deg, #d4a574, #b8895a);
  border-radius: 6px;
}

.iso--safe .iso__check {
  position: absolute;
  left: 112px;
  top: 85px;
  width: 36px;
  height: 20px;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(-45deg);
}

.iso--map .iso__mapbase {
  position: absolute;
  left: 30px;
  top: 50px;
  width: 200px;
  height: 130px;
  background: linear-gradient(160deg, #2a4a62, #16324a);
  border-radius: 18px;
  box-shadow: 18px 24px 0 rgba(0, 0, 0, 0.18);
}

.iso--map .iso__route {
  position: absolute;
  left: 70px;
  top: 100px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8fd9c2, #2a9b7c);
  border-radius: 4px;
  transform: rotate(-12deg);
}

.iso__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #2a9b7c;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: bob 3s ease-in-out infinite;
}

.iso__pin--a { left: 60px; top: 70px; }
.iso__pin--b { left: 175px; top: 95px; animation-delay: 0.4s; }

.iso--warehouse .iso__rack {
  position: absolute;
  left: 50px;
  top: 40px;
  width: 160px;
  height: 130px;
  background: linear-gradient(160deg, #3a556b, #1a3148);
  border-radius: 10px;
  box-shadow: 16px 22px 0 rgba(0, 0, 0, 0.18);
}

.iso--warehouse .iso__rack::before,
.iso--warehouse .iso__rack::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 28px;
  background: rgba(143, 217, 194, 0.2);
  border-radius: 4px;
}

.iso--warehouse .iso__rack::before { top: 24px; }
.iso--warehouse .iso__rack::after { top: 68px; }

.iso--warehouse .iso__pallet {
  position: absolute;
  left: 70px;
  top: 150px;
  width: 70px;
  height: 24px;
  background: #b8895a;
  border-radius: 4px;
}

.iso--warehouse .iso__crate2 {
  position: absolute;
  left: 145px;
  top: 120px;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #2a9b7c, #145c4a);
  border-radius: 6px;
  animation: bob 3.2s ease-in-out infinite;
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 1.85rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 5;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero__index {
  min-width: 3.2rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.hero__index strong {
  color: #9ee0cb;
  font-weight: 700;
}

.hero__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(158, 224, 203, 0.45);
  transform: scale(1.04);
}

.hero__dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s, border-radius 0.3s;
}

.hero__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: #9ee0cb;
}

.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 6;
}

.hero__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #9ee0cb, #2a9b7c);
  box-shadow: 0 0 12px rgba(158, 224, 203, 0.45);
}

.hero__slide.is-active .hero__content {
  animation: riseIn 0.85s var(--ease) both;
}

.hero__slide.is-active .hero__visual {
  animation: riseIn 0.95s var(--ease) 0.08s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatScene {
  0%, 100% { transform: rotateX(18deg) rotateY(-28deg) translateY(0); }
  50% { transform: rotateX(18deg) rotateY(-22deg) translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

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

/* PROCESS */
.process {
  position: relative;
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(42, 155, 124, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(14, 28, 42, 0.04), transparent 50%),
    linear-gradient(180deg, #f7f9fa 0%, #ffffff 55%, #f7f9fa 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.process__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.process__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  letter-spacing: -0.025em;
  color: var(--ink);
}

.process__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 122, 98, 0.22) 12%, rgba(26, 122, 98, 0.22) 88%, transparent);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.15rem 0.5rem;
}

.process__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26, 122, 98, 0.18);
  color: var(--teal);
  font-size: 1.25rem;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 14px 32px rgba(14, 28, 42, 0.08);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, color 0.3s;
}

.process__step:hover .process__icon {
  transform: translateY(-4px);
  border-color: rgba(26, 122, 98, 0.4);
  color: var(--teal-deep);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.95),
    0 18px 36px rgba(26, 122, 98, 0.14);
}

.process__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.45rem;
}

.process__step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.process__step p {
  margin: 0;
  max-width: 22ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.process__footer {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.process__footer .btn--primary {
  border-radius: 12px;
}

.process__call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.process__call i {
  color: var(--teal);
  font-size: 0.9rem;
}

.process__call:hover {
  color: var(--teal-deep);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* SERVICES */
.services {
  position: relative;
  padding: 5.5rem 0 5.75rem;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(42, 155, 124, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
  overflow: hidden;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.services__grid--six {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(14, 28, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal-deep));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(14, 28, 42, 0.1);
  border-color: rgba(26, 122, 98, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__hit {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.65rem 1.5rem 1.5rem;
  color: inherit;
}

.service-card__index {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(14, 28, 42, 0.18);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(42, 155, 124, 0.14), rgba(26, 122, 98, 0.05));
  border: 1px solid rgba(26, 122, 98, 0.12);
  color: var(--teal);
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(145deg, var(--teal-bright), var(--teal-deep));
  border-color: transparent;
  color: #fff;
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-card h3 a {
  color: inherit;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-deep);
  transition: gap 0.25s var(--ease), color 0.2s;
}

.service-card:hover .service-card__link {
  gap: 0.7rem;
  color: var(--teal);
}

.services__footer {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.services__footer .btn {
  border-radius: 12px;
}

.services__footer .btn--outline {
  background: #fff;
}

/* ABOUT */
.about {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(42, 155, 124, 0.1), transparent),
    var(--sand);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about__content > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.about__list i {
  color: var(--teal);
  margin-top: 0.25rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about__stats div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  border: 1px solid rgba(14, 28, 42, 0.06);
}

.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-deep);
  line-height: 1.2;
}

.about__stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-3d {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.about-3d__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px dashed rgba(26, 122, 98, 0.35);
  animation: spinSlow 28s linear infinite;
}

.about-3d__core {
  width: 150px;
  height: 150px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--ink-soft), var(--ink));
  color: #8fd9c2;
  font-size: 3rem;
  box-shadow:
    0 30px 60px rgba(14, 28, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: rotateX(12deg) rotateY(-16deg);
  animation: floatY 5.5s ease-in-out infinite;
}

.about-3d__badge {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow);
  font-size: 1.25rem;
}

.about-3d__badge--1 {
  top: 12%;
  right: 8%;
  animation: floatY 4.5s ease-in-out infinite;
}

.about-3d__badge--2 {
  bottom: 18%;
  left: 6%;
  animation: floatY 5s ease-in-out infinite 0.4s;
}

.about-3d__badge--3 {
  bottom: 10%;
  right: 16%;
  animation: floatY 6s ease-in-out infinite 0.2s;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* QUOTE */
.quote {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(42, 155, 124, 0.25), transparent 55%),
    linear-gradient(160deg, #0e1c2a, #16324a 50%, #145c4a);
}

.quote-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(14, 28, 42, 0.12);
  border-radius: 12px;
  background: #f7f9fb;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 122, 98, 0.12);
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.choice {
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1.5px solid rgba(14, 28, 42, 0.12);
  background: #f7f9fb;
  font-weight: 700;
  transition: 0.2s;
}

.choice input:checked + span {
  border-color: var(--teal);
  background: rgba(26, 122, 98, 0.08);
  color: var(--teal-deep);
  box-shadow: 0 0 0 4px rgba(26, 122, 98, 0.1);
}

.choice span i {
  color: var(--teal);
}

.is-hidden {
  display: none !important;
}

.km-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 122, 98, 0.1), rgba(26, 122, 98, 0.04));
  border: 1.5px dashed rgba(26, 122, 98, 0.35);
  color: var(--teal-deep);
  font-weight: 700;
}

.km-box.is-loading {
  opacity: 0.7;
}

.km-box.is-ready {
  border-style: solid;
  background: rgba(26, 122, 98, 0.12);
}

.quote-form__submit {
  width: 100%;
}

.form-note {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 600;
  min-height: 1.4em;
}

.form-note.is-success {
  color: var(--teal-deep);
}

.form-note.is-error {
  color: #b42318;
}

/* GALLERY */
.gallery {
  padding: 6rem 0;
  background: var(--paper);
}

.gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.gallery__viewport {
  overflow: hidden;
  border-radius: 22px;
}

.gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s var(--ease);
}

.gallery__item {
  flex: 0 0 calc((100% - 2rem) / 3);
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(14, 28, 42, 0.75));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 20px rgba(14, 28, 42, 0.06);
}

.gallery__nav:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* BLOG */
.blog {
  padding: 6rem 0 7rem;
  background:
    linear-gradient(180deg, var(--mist), var(--sand));
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

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

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-card h3 a:hover {
  color: var(--teal-deep);
}

.blog-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-deep);
}

.blog-card__more i {
  transition: transform 0.25s;
}

.blog-card__more:hover i {
  transform: translateX(4px);
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 4.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand .logo {
  margin-bottom: 1rem;
}

.footer__brand .logo__text strong {
  color: #fff;
}

.footer__brand p {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.65);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}

.footer__social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer__col h4 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__col h4 i {
  color: #8fd9c2;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.7rem;
}

.footer__col a,
.footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #8fd9c2;
}

.footer__col a i,
.footer__contact i {
  width: 1rem;
  color: #8fd9c2;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  display: flex;
  gap: 1.15rem;
}

.footer__legal a:hover {
  color: #8fd9c2;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Mobile app shell */
.app-tabbar {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --app-tabbar-h: 64px;
  }

  body {
    padding-bottom: calc(var(--app-tabbar-h) + env(safe-area-inset-bottom, 0px));
  }

  .site-top {
    display: none;
  }

  .site-header {
    top: 0;
    height: 52px;
    background: #fff;
  }

  .site-header__row {
    gap: 0.5rem;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .site-header__call,
  .site-header__cta {
    display: none;
  }

  .site-header__phone-btn {
    display: grid;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    margin: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .site-nav.is-open {
    pointer-events: auto;
  }

  .site-nav__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(14, 28, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), visibility 0.28s;
  }

  .site-nav.is-open .site-nav__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__panel {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px) + 66px);
    z-index: 2;
    display: flex;
    width: min(248px, 78vw);
    height: auto;
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0.7rem 0.85rem;
    background: #fff;
    border: 1px solid rgba(14, 28, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(14, 28, 42, 0.18);
    transform: translateX(calc(100% + 1rem));
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s var(--ease), visibility 0.28s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open .site-nav__panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    padding: 0 0.15rem 0.55rem;
    border-bottom: 1px solid rgba(14, 28, 42, 0.06);
  }

  .site-nav__title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .site-nav__close {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: #eef1f4;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
  }

  .site-nav__close:active {
    background: #e4e8ec;
  }

  .site-nav__link {
    padding: 0.62rem 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-bottom: 0;
    border-radius: 9px;
    color: var(--ink-soft);
  }

  .site-nav__link + .site-nav__link {
    margin-top: 0.1rem;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link.is-active,
  .site-nav__link.active,
  .site-nav__link:active {
    color: var(--teal-deep);
    background: rgba(26, 122, 98, 0.08);
  }

  .site-nav__foot {
    display: grid;
    gap: 0.4rem;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(14, 28, 42, 0.06);
  }

  .site-nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(14, 28, 42, 0.08);
    border-radius: 10px;
    background: #f7f9fa;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--ink);
  }

  .site-nav__phone i {
    font-size: 0.75rem;
    color: var(--teal);
  }

  .site-nav__foot .btn {
    min-height: 38px;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: calc(100svh - 64px - var(--app-tabbar-h));
    border-radius: 0 0 28px 28px;
  }

  .hero__grid {
    padding: 2.25rem 0 5.25rem;
  }

  .hero__controls {
    bottom: 1.15rem;
    gap: 0.55rem;
    padding: 0.35rem 0.45rem;
  }

  .hero__index {
    display: none;
  }

  .hero__stage {
    width: min(340px, 92%);
    border-radius: 22px;
  }

  .services,
  .about,
  .quote,
  .gallery,
  .blog,
  .faq,
  .process {
    padding-left: 0;
    padding-right: 0;
  }

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

  .service-card,
  .quote-form,
  .faq__item,
  .blog-card {
    border-radius: 20px;
  }

  .quote {
    border-radius: 28px 28px 0 0;
    margin-top: 0.5rem;
  }

  .whatsapp-float {
    display: none;
  }

  .app-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    z-index: 300;
    height: 58px;
    padding: 0.3rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(14, 28, 42, 0.08);
    box-shadow: 0 12px 40px rgba(14, 28, 42, 0.16);
    backdrop-filter: blur(16px);
  }

  .app-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-width: 0;
    padding: 0.35rem 0.15rem;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
  }

  .app-tabbar__item i {
    font-size: 1.15rem;
    line-height: 1;
  }

  .app-tabbar__item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-tabbar__item.is-active,
  .app-tabbar__item:active {
    color: var(--teal-deep);
    background: rgba(26, 122, 98, 0.08);
  }

  .app-tabbar__item--cta {
    color: var(--teal-deep);
  }

  .app-tabbar__item--cta i {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(26, 122, 98, 0.28);
    margin-bottom: 0.05rem;
  }

  .page-hero {
    padding-top: 2.5rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* RESPONSIVE */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.faq {
  padding: 5rem 0 6rem;
  background: var(--paper);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.25rem 1.15rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 1rem 0;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(42, 155, 124, 0.2), transparent),
    linear-gradient(145deg, #0e1c2a, #16324a 55%, #1a4d42);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.page-hero p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: #8fd9c2;
}

.breadcrumb span[aria-hidden] {
  opacity: 0.5;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  margin: 2rem 0 0.75rem;
  font-size: 1.45rem;
}

.prose h3 {
  font-family: var(--font-display);
  margin: 1.5rem 0 0.55rem;
  font-size: 1.15rem;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.7;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.prose th {
  background: var(--mist);
  color: var(--ink);
}

.content-figure {
  margin: 1.75rem 0 2rem;
  max-width: 100%;
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--mist);
}

.content-figure figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.page-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

.listing-grid {
  margin-top: 0.5rem;
}

.listing-grid .service-card,
.hub-grid .service-card {
  padding: 1.5rem 1.35rem;
}

.listing-grid .service-card h3 {
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .services__grid,
  .services__grid--six,
  .blog__grid,
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item {
    flex-basis: calc((100% - 1rem) / 2);
  }

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

@media (max-width: 700px) {
  .services__grid--six,
  .hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) {
  .site-header__call {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }

  .process__steps::before {
    display: block;
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(26, 122, 98, 0.22) 10%, rgba(26, 122, 98, 0.22) 90%, transparent);
  }

  .process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 0 0 1.5rem;
  }

  .process__step:last-child {
    padding-bottom: 0;
  }

  .process__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }

  .process__step p {
    max-width: none;
  }

  .about__stats {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .quote-form {
    padding: 1.25rem;
  }

  .quote-form__grid,
  .choice-group,
  .services__grid,
  .blog__grid,
  .footer__grid,
  .about__stats {
    grid-template-columns: 1fr;
  }

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

  .gallery__item {
    flex-basis: 100%;
  }

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

  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .gallery__nav--prev { left: 0.5rem; }
  .gallery__nav--next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1.5rem), 1160px);
  }

  .hero__content h1 {
    font-size: 1.9rem;
  }
}

/* Contact & utility inner-page blocks */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(14, 28, 42, 0.06);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list i {
  color: var(--teal);
  margin-top: 0.2rem;
}

.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  min-height: 320px;
  box-shadow: 0 8px 24px rgba(14, 28, 42, 0.08);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related-links h2 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
}

.related-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}

.related-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.related-links a i {
  color: var(--teal);
}

.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  margin: 0;
  color: var(--teal);
  line-height: 1;
}

.error-page p {
  color: var(--muted);
  max-width: 42ch;
  margin: 1rem auto 1.5rem;
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 1rem 1.15rem;
  background: var(--mist);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .contact-grid,
  .related-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE APP SHELL — professional compact UI
   ========================================================= */
@media (max-width: 900px) {
  :root {
    --app-tabbar-h: 70px;
    --header-h: 52px;
    --m-gutter: 1rem;
    --m-radius: 14px;
    --m-surface: #ffffff;
    --m-canvas: #f2f4f6;
  }

  body {
    background: var(--m-canvas);
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    width: 100% !important;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 1.35rem !important;
    box-sizing: border-box;
  }

  .hero__grid {
    padding-top: 1.1rem !important;
    padding-bottom: 3.35rem !important;
    padding-left: 1.35rem !important;
    padding-right: 1.35rem !important;
  }

  .hero__content {
    padding-inline: 0;
    min-width: 0;
    max-width: 100%;
  }

  /* ---- Top chrome ---- */
  .site-top {
    display: none !important;
  }

  .site-header {
    height: 52px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 0;
    box-shadow: 0 0.5px 0 rgba(14, 28, 42, 0.08);
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(14, 28, 42, 0.06);
  }

  .site-header .container,
  .site-header__row {
    height: 100%;
  }

  .site-header__row {
    gap: 0.5rem !important;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand__mark {
    width: 28px !important;
    height: 28px !important;
  }

  .brand__mark svg rect {
    rx: 7;
  }

  .brand__name {
    font-size: 0.95rem !important;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .brand__tag {
    font-size: 0.52rem !important;
    letter-spacing: 0.12em;
  }

  .brand__copy {
    gap: 0.06rem;
  }

  .site-header__call,
  .site-header__cta {
    display: none !important;
  }

  .site-header__actions {
    gap: 2px !important;
    margin-left: auto;
    padding: 2px;
    border-radius: 11px;
    background: #eef1f4;
  }

  .site-header__phone-btn,
  .menu-toggle {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: transparent !important;
  }

  .site-header__phone-btn {
    color: var(--teal-deep);
    font-size: 0.84rem;
  }

  .site-header__phone-btn:active,
  .menu-toggle:active {
    background: #fff !important;
  }

  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    width: 13px;
    height: 1.5px;
  }

  .menu-toggle__bars::before { top: -4px; }
  .menu-toggle__bars::after { top: 4px; }

  /* ---- Hero ---- */
  .hero {
    min-height: 0 !important;
    border-radius: 0 0 20px 20px !important;
    margin-bottom: 0.35rem;
    overflow: hidden;
  }

  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 0;
    text-align: left !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero__visual {
    display: none !important;
  }

  .hero__brand {
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(158, 224, 203, 0.9) !important;
    margin: 0 0 0.35rem !important;
  }

  .hero__content .eyebrow {
    display: inline-flex;
    margin: 0 0 0.4rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .hero__content h1 {
    max-width: 100% !important;
    margin: 0 0 0.5rem !important;
    font-size: 1.35rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
  }

  .hero__lead {
    max-width: 100% !important;
    margin: 0 0 0.9rem !important;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
  }

  .hero__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem !important;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 42px;
    border-radius: 11px;
    padding: 0.6rem 0.55rem;
    font-size: 0.8rem;
  }

  .hero__trust {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
    margin-top: 0.75rem !important;
    overflow: visible;
    max-width: 100%;
  }

  .hero__trust li {
    flex: 0 1 auto;
    border-radius: 999px;
    padding: 0.32rem 0.55rem;
    font-size: 0.66rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    max-width: 100%;
  }

  .hero__controls {
    left: var(--m-gutter);
    right: var(--m-gutter);
    bottom: 0.55rem;
    transform: none;
    width: auto;
    max-width: calc(100% - (var(--m-gutter) * 2));
    justify-content: space-between;
    padding: 0.22rem 0.3rem;
    border-radius: 999px;
    background: rgba(8, 16, 24, 0.55);
    box-sizing: border-box;
  }

  .hero__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .hero__dot {
    width: 6px;
    height: 6px;
  }

  .hero__dot.is-active {
    width: 18px;
  }

  .hero__index {
    display: none;
  }

  .hero__progress {
    height: 2px;
  }

  /* ---- Sections ---- */
  .process,
  .services,
  .about,
  .gallery,
  .blog,
  .faq {
    padding: 2.25rem 0 !important;
    background: transparent;
  }

  .quote {
    padding: 2.25rem 0 1.5rem !important;
    background:
      radial-gradient(ellipse 60% 50% at 10% 0%, rgba(42, 155, 124, 0.25), transparent 55%),
      linear-gradient(160deg, #0e1c2a, #16324a 50%, #145c4a) !important;
    border-radius: 22px 22px 0 0;
    margin-top: 0.75rem;
    overflow: hidden;
  }

  .section-head--light {
    text-align: left !important;
  }

  .section-head--light h2,
  .section-head--light p {
    color: #fff !important;
  }

  .section-head--light .eyebrow {
    color: #9ee0cb !important;
  }

  .services,
  .blog,
  .faq {
    background: transparent !important;
  }

  .process {
    background: var(--m-surface) !important;
    border-radius: 20px;
    margin: 0 var(--m-gutter);
    padding: 1.35rem !important;
    width: auto;
    max-width: calc(100% - (var(--m-gutter) * 2));
    box-sizing: border-box;
    border: 1px solid rgba(14, 28, 42, 0.06);
    box-shadow: 0 8px 24px rgba(14, 28, 42, 0.04);
    overflow: hidden;
  }

  .process .container {
    width: 100%;
    max-width: none;
  }

  .section-head,
  .process__head {
    text-align: left !important;
    max-width: none;
    margin: 0 0 1.25rem !important;
  }

  .section-head h2,
  .process__head h2 {
    font-size: 1.35rem !important;
    letter-spacing: -0.03em;
  }

  .section-head p,
  .process__head p {
    font-size: 0.88rem;
    margin-top: 0.35rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  /* Process timeline denser */
  .process__steps {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    max-width: none !important;
  }

  .process__steps::before {
    display: block !important;
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(26, 122, 98, 0.2) 8%, rgba(26, 122, 98, 0.2) 92%, transparent);
  }

  .process__step {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0.9rem !important;
    padding: 0 0 1.25rem !important;
  }

  .process__step:last-child {
    padding-bottom: 0 !important;
  }

  .process__icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    font-size: 1rem;
    box-shadow: 0 0 0 5px #fff, 0 8px 18px rgba(14, 28, 42, 0.08) !important;
  }

  .process__num {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
  }

  .process__step h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .process__step p {
    font-size: 0.84rem;
    max-width: none !important;
  }

  .process__footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .process__footer .btn,
  .process__call {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 12px;
  }

  .process__call {
    background: #f7f9fa;
    border: 1px solid rgba(14, 28, 42, 0.08);
    padding: 0.7rem 1rem;
  }

  /* Services as clean list cards */
  .services__grid,
  .services__grid--six,
  .hub-grid,
  .listing-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  .service-card {
    border-radius: 14px !important;
    border-color: rgba(14, 28, 42, 0.07) !important;
    box-shadow: 0 4px 14px rgba(14, 28, 42, 0.03);
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:active {
    transform: scale(0.99);
  }

  .service-card::before {
    width: 2px;
  }

  .service-card__hit {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title arrow"
      "icon desc arrow";
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: center;
    padding: 1rem !important;
    min-width: 0;
  }

  .service-card__index {
    display: none;
  }

  .service-card__icon {
    grid-area: icon;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 11px;
    font-size: 1rem;
  }

  .service-card h3 {
    grid-area: title;
    margin: 0;
    font-size: 0.98rem;
  }

  .service-card p {
    grid-area: desc;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-card__link {
    grid-area: arrow;
    margin: 0;
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 122, 98, 0.08);
    font-size: 0;
    gap: 0;
  }

  .service-card__link i {
    font-size: 0.75rem;
  }

  .services__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .services__footer .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.85rem;
    padding: 0.7rem 0.6rem;
  }

  /* About */
  .about {
    background: var(--m-surface) !important;
    border-radius: 20px;
    margin: 0.5rem var(--m-gutter) 0;
    padding: 1.35rem !important;
    max-width: calc(100% - (var(--m-gutter) * 2));
    box-sizing: border-box;
    border: 1px solid rgba(14, 28, 42, 0.06);
  }

  .about .container {
    width: 100%;
    max-width: none;
  }

  .about__grid {
    gap: 1.25rem !important;
    text-align: left !important;
  }

  .about__visual {
    display: none !important;
  }

  .about__content h2 {
    font-size: 1.35rem !important;
  }

  .about__content > p {
    font-size: 0.9rem;
  }

  .about__list {
    margin-bottom: 1.15rem;
  }

  .about__list li {
    justify-content: flex-start !important;
    font-size: 0.88rem;
    padding: 0.35rem 0;
  }

  .about__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem !important;
  }

  .about__actions .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .about__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem;
  }

  .about__stats > div,
  .about__stats div {
    padding: 0.7rem 0.35rem !important;
    text-align: center;
    border-radius: 12px;
    min-width: 0;
  }

  .about__stats strong {
    font-size: 0.85rem;
  }

  .about__stats span {
    font-size: 0.68rem;
  }

  /* Quote form */
  .quote-form {
    padding: 1rem !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  .quote-form__grid,
  .choice-group {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  .field input,
  .field select,
  .field textarea,
  .choice {
    min-height: 46px;
    font-size: 16px;
    border-radius: 12px;
  }

  .quote-form .btn,
  .quote-form button[type="submit"] {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
  }

  /* Gallery / blog / faq */
  .gallery,
  .blog,
  .faq {
    background: transparent !important;
  }

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

  .gallery__item {
    flex-basis: 100% !important;
    border-radius: 14px;
    overflow: hidden;
  }

  .blog__grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .blog-card {
    border-radius: 14px !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(14, 28, 42, 0.06);
  }

  .faq__item {
    border-radius: 12px !important;
    background: #fff;
  }

  /* Footer */
  .footer {
    margin-top: 0.5rem;
    border-radius: 20px 20px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  /* Inner pages */
  .page-hero {
    padding: 1.5rem 0 1.15rem !important;
  }

  .page-hero h1 {
    font-size: 1.45rem;
  }

  .page-content {
    padding: 1.15rem 0 3rem !important;
  }

  .content-figure img {
    max-height: 200px;
    border-radius: 12px;
  }

  .contact-grid,
  .related-links {
    grid-template-columns: 1fr !important;
  }

  /* ---- Floating tab dock ---- */
  .app-tabbar {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    height: 58px;
    padding: 0.3rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(14, 28, 42, 0.08);
    box-shadow: 0 12px 40px rgba(14, 28, 42, 0.16);
    backdrop-filter: blur(16px);
  }

  .app-tabbar__item {
    gap: 0.12rem;
    font-size: 0.58rem;
    font-weight: 700;
    border-radius: 12px;
    min-height: 0;
    height: 100%;
    color: #7a8794;
  }

  .app-tabbar__item i {
    font-size: 1.05rem;
  }

  .app-tabbar__item.is-active {
    color: var(--teal-deep);
    background: rgba(26, 122, 98, 0.08);
  }

  .app-tabbar__item--cta {
    color: var(--teal-deep);
  }

  .app-tabbar__item--cta i {
    width: 1.85rem;
    height: 1.85rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--teal-bright), var(--teal-deep));
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 6px 14px rgba(26, 122, 98, 0.3);
  }

  .app-tabbar__item--cta.is-active {
    background: transparent;
  }

  .whatsapp-float {
    display: none !important;
  }
}

@media (max-width: 480px) {
  :root {
    --m-gutter: 0.85rem;
  }

  .hero__content h1 {
    font-size: 1.25rem !important;
  }

  .hero__lead {
    font-size: 0.78rem;
  }

  .services__footer,
  .about__actions {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr !important;
  }
}
