/* ProVitals At Home — Header + Hero */

:root {
  --navy: #0b3a6e;
  --navy-deep: #062a52;
  --navy-soft: #1a4f8a;
  --green: #1f9d55;
  --green-dark: #178a47;
  --green-soft: #e8f8ef;
  --text: #1e2a3a;
  --text-muted: #5a6b7d;
  --white: #ffffff;
  --border: #d9e2ec;
  --shadow: 0 12px 32px rgba(11, 58, 110, 0.12);
  --radius: 10px;
  --container: 1600px;
  --header-h: 88px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky header clearance for in-page anchors */
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  overflow-wrap: break-word;
}

img,
video {
  max-width: 100%;
  display: block;
}

iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: 0.4rem;
}

.top-bar__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
}

.top-bar__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar__features svg,
.top-bar__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar__social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.top-bar__social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-bar__social a svg {
  width: 16px;
  height: 16px;
}

.top-bar__social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 58, 110, 0.08);
  box-shadow: 0 2px 12px rgba(11, 58, 110, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.main-nav a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  padding-right: 0.1rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  transform: translateY(6px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 240px;
  padding: 0.55rem 0;
  background: var(--white);
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(11, 58, 110, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown li {
  display: block;
  width: 100%;
}

.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-dropdown a:hover {
  background: #eef3f8;
  color: var(--green);
}

.nav-dropdown li:last-child a {
  border-top: 1px solid rgba(11, 58, 110, 0.08);
  margin-top: 0.25rem;
  color: var(--green);
}

.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
  color: var(--green);
}

.has-dropdown:hover > a svg,
.has-dropdown:focus-within > a svg {
  transform: rotate(180deg);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--green-soft);
  box-shadow: 0 4px 14px rgba(31, 157, 85, 0.18);
  transform: translateY(-1px);
}

.header-cta__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  flex-shrink: 0;
}

.header-cta__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-cta__text strong {
  font-size: 0.8125rem;
  color: var(--green);
  font-weight: 700;
}

.header-cta__text span {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero.png") right center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-out forwards;
}

/* Soft assist only — banner art already fades white on the left */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 34%,
    rgba(255, 255, 255, 0) 58%
  );
  pointer-events: none;
}

/* Same 1600px container as header — left edge matches logo */
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  flex: 0 0 auto;
}

.hero__content {
  max-width: 640px;
  margin: 0;
  padding-block: 3.5rem 4.5rem;
  animation: fadeUp 0.8s ease-out both;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero__title span {
  color: var(--green);
}

.hero__desc {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin-bottom: 1.75rem;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.hero__checks .check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}

.hero__checks .check svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 58, 110, 0.25);
}

.btn--primary:hover {
  background: var(--navy-deep);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(31, 157, 85, 0.28);
}

.btn--whatsapp:hover {
  background: var(--green-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: rgba(11, 58, 110, 0.04);
  box-shadow: 0 6px 16px rgba(11, 58, 110, 0.1);
}

.hero__badge {
  position: absolute;
  right: max(1.5rem, calc((100% - var(--container)) / 2));
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 260px;
  padding: 0.9rem 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.9s 0.2s ease-out both;
}

.hero__badge-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(11, 58, 110, 0.08);
  color: var(--navy);
  flex-shrink: 0;
}

.hero__badge-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero__badge p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.hero__badge strong {
  color: var(--green);
}

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 1.35rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.stats__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: left;
}

.stats__item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats__icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  overflow: hidden;
}

.stats__icon img,
.stats__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: 0;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.stats__item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.stats__item span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ---------- About ---------- */
.about {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 157, 85, 0.08), transparent 42%),
    radial-gradient(circle at 88% 70%, rgba(11, 58, 110, 0.08), transparent 40%),
    #f7f9fc;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.about__media img {
  width: min(100%, 440px);
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 18px;
  background: #eef3f8;
  box-shadow: 0 18px 40px rgba(11, 58, 110, 0.12);
}

.about__badge {
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11, 58, 110, 0.14);
  border: 1px solid rgba(11, 58, 110, 0.06);
  animation: fadeUp 0.8s 0.15s ease-out both;
}

.about__badge strong {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
}

.about__badge span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.about__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.about__content h2 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about__lead {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy);
}

.about__content > p {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38rem;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin: 0 0 1.75rem;
}

.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about__check {
  display: block;
  width: 40px;
  height: 40px;
  margin-top: 0;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.about__check img,
.about__check svg {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about__points strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.about__points span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: 3.5rem 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(31, 157, 85, 0.2), transparent 32%),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #0f4d82 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Soft corner arcs — not concentric around the photo */
.page-hero::before {
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 28px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.page-hero::after {
  right: 6%;
  top: -90px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(31, 157, 85, 0.28);
  border-radius: 50%;
}

.page-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
}

.page-hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  aspect-ratio: 1;
  /* Soft squircle — modern, not an eye iris */
  border-radius: 32% 40% 36% 44% / 40% 34% 42% 36%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  animation: heroVisualFloat 5.5s ease-in-out infinite;
}

.page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.page-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 42, 82, 0.05) 0%,
    transparent 45%,
    rgba(6, 42, 82, 0.28) 100%
  );
  pointer-events: none;
}

.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: heroOrbPulse 4.5s ease-in-out infinite;
  z-index: 2;
}

.page-hero__orb--one {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -14px;
  background: rgba(31, 157, 85, 0.32);
  filter: blur(0.5px);
  border-radius: 40% 60% 55% 45%;
}

.page-hero__orb--two {
  width: 44px;
  height: 44px;
  left: -12px;
  bottom: 18%;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 55% 45% 60% 40%;
  animation-delay: -1.5s;
}

@keyframes heroVisualFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroOrbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__visual,
  .page-hero__orb {
    animation: none;
  }
}

.page-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero__desc {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 54ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero__btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.page-hero__btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-label {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

/* ---------- About page: story ---------- */
.about-story {
  padding: 4.5rem 0;
  background: var(--white);
}

.about-story__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-story__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 20px;
  min-height: 380px;
}

.about-story__visual img {
  width: 100%;
  max-width: 520px;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-story__stat {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  max-width: 180px;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(11, 58, 110, 0.12);
  border: 1px solid rgba(11, 58, 110, 0.06);
}

.about-story__stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-story__stat span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.about-story__copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.about-story__copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---------- Mission / Vision ---------- */
.about-mv {
  padding: 4rem 0;
  background: #f7f9fc;
}

.about-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-mv__card {
  padding: 2rem 1.75rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 58, 110, 0.08);
  box-shadow: 0 10px 28px rgba(11, 58, 110, 0.06);
}

.about-mv__card--mission {
  border-top: 3px solid var(--navy);
}

.about-mv__card--vision {
  border-top: 3px solid var(--green);
}

.about-mv__icon {
  display: inline-flex;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.about-mv__card--vision .about-mv__icon {
  color: var(--green);
}

.about-mv__icon svg {
  width: 40px;
  height: 40px;
}

.about-mv__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.about-mv__card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---------- Values ---------- */
.about-values {
  padding: 4rem 0;
  background: var(--white);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-value {
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
  border: 1px solid rgba(11, 58, 110, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 58, 110, 0.08);
}

.about-value h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.about-value p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Steps ---------- */
.about-steps {
  padding: 4rem 0;
  background: #eef3f8;
}

.about-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: none;
}

.about-steps__list li {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 110, 0.08);
}

.about-steps__num {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.about-steps__list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.about-steps__list p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Promise CTA ---------- */
.about-promise {
  padding: 3.5rem 0;
  background: var(--navy);
  color: var(--white);
}

.about-promise__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-promise__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-promise h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.about-promise p {
  margin: 0;
  max-width: 48ch;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.about-promise__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Services page ---------- */
.svc-intro {
  padding: 3.5rem 0 1.5rem;
  background: var(--white);
}

.svc-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.svc-intro__inner > .section-label {
  margin: 0;
}

.svc-intro h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.svc-intro h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--green);
  border-radius: 2px;
}

.svc-intro__inner > p:not(.section-label) {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

.svc-list {
  padding: 1.5rem 0 4rem;
  background: var(--white);
}

.svc-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.svc-detail {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 16px;
  background: #f7f9fc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 58, 110, 0.1);
}

.svc-detail__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: transparent;
  color: var(--navy);
  overflow: hidden;
}

.svc-detail__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.svc-detail__icon svg {
  width: 40px;
  height: 40px;
}

.svc-detail__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.svc-detail__body h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.svc-detail__body > p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
}

.svc-detail__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.svc-detail__body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.svc-detail__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.svc-detail__cta {
  align-self: stretch;
  margin-top: 0.35rem;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.svc-who {
  padding: 4rem 0;
  background: #f7f9fc;
}

.svc-who__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.svc-who__grid article {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 110, 0.08);
}

.svc-who__grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.svc-who__grid p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Equipment page ---------- */
.equip-page {
  padding: 1.5rem 0 4rem;
  background: var(--white);
}

.container.equip-page__grid {
  width: min(100% - 2rem, 1300px);
}

.equip-page__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.equip-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 16px;
  background: #f7f9fc;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.equip-item:hover {
  box-shadow: 0 12px 28px rgba(11, 58, 110, 0.08);
  transform: translateY(-2px);
}

/* Zigzag: 2nd, 4th… — text left, image right */
.equip-item:nth-child(even) .equip-item__media {
  order: 2;
}

.equip-item:nth-child(even) .equip-item__body {
  order: 1;
}

.equip-item__media {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #eef3f8;
  display: block;
}

.equip-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  max-width: none;
  min-width: 0;
  padding: 2.5rem 2.75rem;
  background: #f7f9fc;
}

.equip-item__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center;
  display: block;
  padding: 0;
}

.equip-item__body h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.equip-item__body > p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}

.equip-item__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equip-item__body li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
}

.equip-item__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.equip-item__body .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
  min-width: 11rem;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.equip-process {
  padding: 4rem 0;
  background: #eef3f8;
}

.equip-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.equip-process__list li {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 110, 0.08);
}

.equip-process__list span {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}

.equip-process__list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.equip-process__list p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Service Areas page ---------- */
.areas-page-list {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(31, 157, 85, 0.06), transparent 55%),
    #f4f7fb;
}

.areas-page-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}

.area-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 168px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 4px 14px rgba(11, 58, 110, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.area-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 58, 110, 0.2);
  box-shadow: 0 14px 28px rgba(11, 58, 110, 0.1);
}

.area-tile__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(31, 157, 85, 0.12);
  color: var(--green);
}

.area-tile__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.area-tile__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.areas-page-map {
  padding: 4rem 0;
  background: #eef3f8;
}

.areas-page-map__frame {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 110, 0.1);
  box-shadow: 0 12px 32px rgba(11, 58, 110, 0.1);
  background: #dde5ee;
}

.areas-page-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.areas-page-benefits {
  padding: 4rem 0;
  background: var(--white);
}

.areas-page-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.areas-page-benefits__grid article {
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid rgba(11, 58, 110, 0.08);
}

.areas-page-benefits__grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.areas-page-benefits__grid p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Why Choose Us page ---------- */
.why-page-list {
  padding: 1.5rem 0 4.5rem;
  background: var(--white);
}

.why-page-list .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: min(100% - 2rem, 1100px);
}

.why-page-list .container::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 50%;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(31, 157, 85, 0.15),
    var(--green) 12%,
    var(--green) 88%,
    rgba(31, 157, 85, 0.15)
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

.why-detail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border: none;
  background: transparent;
  animation: fadeUp 0.55s ease both;
}

.why-detail:nth-child(1) { animation-delay: 0.05s; }
.why-detail:nth-child(2) { animation-delay: 0.12s; }
.why-detail:nth-child(3) { animation-delay: 0.19s; }
.why-detail:nth-child(4) { animation-delay: 0.26s; }
.why-detail:nth-child(5) { animation-delay: 0.33s; }
.why-detail:nth-child(6) { animation-delay: 0.4s; }

.why-detail__icon {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  flex: none;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  color: var(--navy);
  overflow: visible;
  box-shadow: 0 0 0 6px rgba(31, 157, 85, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-detail:nth-child(odd) .why-detail__body {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.why-detail:nth-child(even) .why-detail__body {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.why-detail__body {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 16px;
  background: #f7f9fc;
  text-align: left;
  box-shadow: 0 8px 22px rgba(11, 58, 110, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.why-detail:nth-child(odd):hover .why-detail__body {
  transform: translateX(-6px) translateY(-3px);
}

.why-detail:nth-child(even):hover .why-detail__body {
  transform: translateX(6px) translateY(-3px);
}

.why-detail:hover .why-detail__body {
  border-color: rgba(31, 157, 85, 0.35);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(11, 58, 110, 0.1);
}

.why-detail:hover .why-detail__icon {
  transform: scale(1.08);
  border-color: var(--green);
  box-shadow:
    0 0 0 8px rgba(31, 157, 85, 0.16),
    0 8px 18px rgba(31, 157, 85, 0.2);
}

.why-detail__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.why-detail:hover .why-detail__icon img {
  transform: scale(1.06);
}

.why-detail__icon svg {
  width: 32px;
  height: 32px;
}

.why-detail__body h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.why-detail__body > p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
}

.why-detail__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-detail__body li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.why-detail__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.why-page-compare {
  padding: 4rem 0;
  background: #f7f9fc;
}

.why-page-compare__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-page-compare__grid article {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 110, 0.08);
}

.why-page-compare__grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.why-page-compare__grid p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Section head (shared) ---------- */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.section-head__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--green);
  border-radius: 2px;
}

.section-head--compact {
  margin-bottom: 0;
}

/* ---------- Services ---------- */
.services {
  padding: 4.5rem 0 4rem;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.85rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(11, 58, 110, 0.22);
  box-shadow: 0 10px 28px rgba(11, 58, 110, 0.08);
  transform: translateY(-3px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--navy);
}

.service-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-card__icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
}

.services__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.services__cta .btn svg {
  width: 16px;
  height: 16px;
  fill: none;
}

/* ---------- Equipment ---------- */
.section-head__eyebrow--navy {
  color: var(--navy-soft);
}

.equipment {
  padding: 1rem 0 4.5rem;
  background: var(--white);
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.equip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.equip-card:hover {
  border-color: rgba(11, 58, 110, 0.22);
  box-shadow: 0 10px 28px rgba(11, 58, 110, 0.08);
  transform: translateY(-3px);
}

.equip-card__media {
  display: block;
  width: 100%;
  height: 500px;
  margin-bottom: 1rem;
  background: #eef3f8;
  overflow: hidden;
}

.equip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
}

.equip-card h3 {
  margin: 0 0 0.55rem;
  padding: 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.equip-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s ease, gap 0.2s ease;
}

.equip-card__link svg {
  width: 14px;
  height: 14px;
}

.equip-card__link:hover {
  color: var(--green);
  gap: 0.4rem;
}

.equipment__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.equipment__cta .btn svg {
  width: 16px;
  height: 16px;
  fill: none;
}

/* ---------- Why Choose Us ---------- */
.why-us {
  padding: 3rem 0;
  background: #eef3f8;
  color: var(--navy);
}

.why-us__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.why-us__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 1rem;
  min-height: 72px;
}

.why-us__item:not(:last-child) {
  border-right: 1px solid rgba(11, 58, 110, 0.15);
}

.why-us__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--navy);
}

.why-us__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.why-us__icon svg {
  width: 40px;
  height: 40px;
}

.why-us__item p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

/* ---------- Service Areas ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.areas {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
}

.areas__map {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: #e8eef4;
}

.areas__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

.areas__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(300px, 380px);
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  min-height: 520px;
  padding-block: 0;
  pointer-events: none;
}

.areas__panel,
.areas__form-wrap {
  pointer-events: auto;
}

.areas__panel {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2.5rem 2.25rem 2.5rem 0;
  color: var(--white);
  background: var(--navy);
  margin-left: calc(-1 * max(1rem, (100vw - var(--container)) / 2));
  padding-left: max(1rem, (100vw - var(--container)) / 2);
  clip-path: polygon(
    0 0,
    88% 0,
    100% 18%,
    92% 50%,
    100% 82%,
    88% 100%,
    0 100%
  );
}

.areas__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.areas__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.areas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin: 0 0 1.5rem;
  max-width: 340px;
}

.areas__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.areas__list-item--featured {
  grid-column: 1 / -1;
}

.areas__stars {
  margin-left: 0.15rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: #e8c547;
}

.areas__list svg {
  width: 15px;
  height: 15px;
  fill: var(--green);
  flex-shrink: 0;
}

.btn--ghost-light {
  align-self: flex-start;
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.areas__form-wrap {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 2.5rem;
}

.areas__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 58, 110, 0.14);
}

.areas__form h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.areas__form > p {
  margin: -0.35rem 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.areas__form input,
.areas__form select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.areas__form input::placeholder {
  color: #8a97a8;
}

.areas__form input:focus,
.areas__form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.1);
}

.areas__select {
  position: relative;
}

.areas__select::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.areas__form select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  color: #8a97a8;
}

.areas__form select:valid {
  color: var(--text);
}

.areas__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.areas__submit svg {
  width: 16px;
  height: 16px;
  fill: none;
}

.areas__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
}

.areas__call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.areas__call:hover {
  color: var(--green-dark);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 4.5rem 0 0;
  background: #f7f9fc;
  overflow: hidden;
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 1.5rem;
  align-items: end;
}

.testimonials__main {
  min-width: 0;
  padding-bottom: 3.5rem;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 58, 110, 0.08);
  border: 1px solid rgba(11, 58, 110, 0.06);
}

.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.testimonial-card__quote {
  font-size: 2.75rem;
  line-height: 0.7;
  font-weight: 800;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card__stars {
  color: #f5b400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.testimonial-card > p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
}

.testimonial-card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__author span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-card__author strong {
  color: var(--navy);
  font-weight: 800;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.testimonials__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #c5d0dc;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonials__dots button.is-active {
  width: 22px;
  background: var(--green);
}

.testimonials__visual {
  position: relative;
  align-self: end;
  margin-bottom: 0;
  line-height: 0;
  background: transparent;
}

.testimonials__visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  background: transparent;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr minmax(200px, 0.95fr);
  gap: 2rem 1.5rem;
  padding-bottom: 2.75rem;
}

.site-footer__logo img {
  height: 64px;
  width: auto;
  margin-bottom: 0.85rem;
  background: transparent;
}

.site-footer__brand p {
  margin: 0 0 1.15rem;
  max-width: 260px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.site-footer__social .social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social .social:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.site-footer__social .social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social--fb {
  background: #1877f2;
}

.social--ig {
  background: #e1306c;
}

.social--wa {
  background: var(--green);
}

.site-footer__col h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__col a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--white);
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.site-footer__contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.9;
}

.site-footer__support {
  background: var(--white);
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
  color: var(--text);
  align-self: start;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.site-footer__support h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
}

.site-footer__support p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.site-footer__support .btn {
  width: 100%;
}

.site-footer__support .btn svg:last-child {
  width: 14px;
  height: 14px;
  fill: none;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__credit a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__credit a:hover {
  color: var(--green);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.float-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(31, 157, 85, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(31, 157, 85, 0.55);
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ---------- Motion ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__content,
  .hero__badge {
    animation: none;
  }

  .why-detail {
    animation: none;
  }

  .why-detail:nth-child(odd):hover .why-detail__body,
  .why-detail:nth-child(even):hover .why-detail__body,
  .why-detail:hover .why-detail__icon,
  .why-detail:hover .why-detail__icon img {
    transform: none;
  }

  .btn:hover,
  .header-cta:hover,
  .service-card:hover,
  .equip-card:hover {
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav > ul {
    gap: 0.1rem 0.85rem;
  }

  .main-nav a {
    font-size: 0.875rem;
  }

  .logo img {
    height: 56px;
  }

  .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .equipment__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-us__item p {
    font-size: 0.82rem;
  }

  .about__layout {
    gap: 2rem;
  }

  .about__content h2 {
    max-width: none;
  }

  .about-story__layout {
    gap: 2rem;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-who__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equip-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .areas-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .svc-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .areas-page-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-detail__body ul {
    grid-template-columns: unset;
  }

  .why-page-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials__track .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }

  .site-footer__support {
    grid-column: 1 / -1;
    max-width: 320px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 0.5rem);
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .header-cta__icon {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(11, 58, 110, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 720px;
    opacity: 1;
    overflow-y: auto;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(11, 58, 110, 0.06);
  }

  .main-nav a.is-active::after {
    display: none;
  }

  .main-nav a.is-active {
    color: var(--green);
  }

  .has-dropdown {
    position: static;
  }

  .has-dropdown > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .has-dropdown > a svg {
    transition: transform 0.2s ease;
  }

  .has-dropdown.is-submenu-open > a svg {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0 0 0 0.75rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
    flex-direction: column;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav-dropdown::before {
    display: none;
  }

  .has-dropdown.is-submenu-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 480px;
    pointer-events: auto;
    margin-bottom: 0.35rem;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    pointer-events: none;
    transform: none;
  }

  .has-dropdown.is-submenu-open:hover > .nav-dropdown,
  .has-dropdown.is-submenu-open:focus-within > .nav-dropdown,
  .has-dropdown.is-submenu-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 480px;
    pointer-events: auto;
  }

  .nav-dropdown a {
    padding: 0.55rem 0;
    font-size: 0.875rem;
    white-space: normal;
  }

  .nav-dropdown li:last-child a {
    border-top: none;
    margin-top: 0;
  }

  .stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .hero__badge {
    right: 1rem;
    bottom: 1.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .equipment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equip-card__media {
    height: 360px;
  }

  .why-us__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .why-us__item:not(:last-child) {
    border-right: 1px solid rgba(11, 58, 110, 0.15);
  }

  .why-us__item:nth-child(3n) {
    border-right: none;
  }

  .why-us__item:nth-child(n + 4) {
    border-top: 1px solid rgba(11, 58, 110, 0.12);
    padding-top: 1.25rem;
  }

  .areas__layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding-block: 0;
  }

  .areas__panel {
    grid-column: 1 / -1;
    margin-left: 0;
    padding: 2rem 1.5rem;
    clip-path: none;
    border-radius: 0;
  }

  .areas__list {
    max-width: none;
  }

  .areas__form-wrap {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: end;
    padding-block: 1.5rem 2rem;
  }

  .about {
    padding: 3.5rem 0;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__media {
    min-height: 0;
    order: -1;
  }

  .about__media img {
    width: 100%;
    height: 360px;
  }

  .about__badge {
    left: 1rem;
    right: auto;
    transform: none;
    bottom: 1rem;
  }

  .about-story__layout {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    min-height: 340px;
    order: -1;
  }

  .about-mv__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-hero__visual {
    justify-self: center;
    width: min(72vw, 280px);
    max-width: 280px;
    margin-inline: auto;
    order: -1;
    border-radius: 28% 36% 32% 40% / 36% 30% 38% 32%;
  }

  .page-hero::before {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -100px;
    border-width: 22px;
  }

  .page-hero::after {
    width: 160px;
    height: 160px;
    right: 8%;
    top: -50px;
  }

  .testimonials {
    padding-top: 3.5rem;
  }

  .testimonials__layout {
    grid-template-columns: 1fr;
  }

  .testimonials__visual {
    max-width: 280px;
    margin-inline: auto;
    order: -1;
  }

  .testimonials__visual img {
    max-height: 300px;
  }

  .testimonials__main {
    padding-bottom: 2.5rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__support {
    grid-column: 1 / -1;
    max-width: 360px;
  }

  :root {
    --header-h: 72px;
  }

  .main-nav.is-open {
    max-height: min(70vh, 720px);
  }

  .page-hero__actions {
    flex-wrap: wrap;
  }

  .page-hero__actions .btn {
    flex: 1 1 auto;
  }

  .equip-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .equip-item:nth-child(even) .equip-item__media,
  .equip-item:nth-child(even) .equip-item__body {
    order: unset;
  }

  .equip-item__media {
    min-height: 0;
    height: auto;
  }

  .equip-item__media img {
    padding: 0;
  }

  .equip-item__body {
    padding: 1.5rem 1.35rem 1.6rem;
  }

  .equip-item__body .btn {
    width: 100%;
    align-self: stretch;
  }

  .areas-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-page-list .container {
    max-width: min(100% - 2rem, 720px);
  }

  .why-page-list .container::before {
    left: 36px;
    transform: none;
  }

  .why-detail {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }

  .why-detail__icon {
    grid-column: 1;
    width: 64px;
    height: 64px;
  }

  .why-detail:nth-child(odd) .why-detail__body,
  .why-detail:nth-child(even) .why-detail__body {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    max-width: none;
  }

  .why-detail:nth-child(odd):hover .why-detail__body,
  .why-detail:nth-child(even):hover .why-detail__body {
    transform: translateY(-3px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .top-bar__features li:nth-child(n + 2) {
    display: none;
  }

  .header-cta__text span {
    font-size: 0.8125rem;
  }

  .header-cta {
    padding: 0.45rem 0.65rem;
  }

  .logo img {
    height: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    background-position: 72% center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }

  .hero__content {
    max-width: none;
    padding-block: 2.5rem 7.5rem;
  }

  .hero__checks {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__badge {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item:last-child {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 0.5rem;
  }

  .services {
    padding: 3rem 0;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment {
    padding-bottom: 3rem;
  }

  .equipment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-us {
    padding: 2.5rem 0;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .why-us__item {
    padding: 1rem 0.75rem;
  }

  .why-us__item:nth-child(3n) {
    border-right: 1px solid rgba(11, 58, 110, 0.15);
  }

  .why-us__item:nth-child(2n) {
    border-right: none;
  }

  .why-us__item:nth-child(n + 3) {
    border-top: 1px solid rgba(11, 58, 110, 0.12);
  }

  .why-us__item:nth-child(n + 4) {
    padding-top: 1rem;
  }

  .about__actions {
    flex-direction: column;
  }

  .about__actions .btn {
    width: 100%;
  }

  .about-values__grid,
  .about-steps__list {
    grid-template-columns: 1fr;
  }

  .svc-list__grid {
    grid-template-columns: 1fr;
  }

  .svc-detail {
    display: flex;
    flex-direction: column;
  }

  .svc-detail__icon {
    width: 56px;
    height: 56px;
  }

  .svc-detail__icon img {
    width: 56px;
    height: 56px;
  }

  .svc-detail__icon svg {
    width: 32px;
    height: 32px;
  }

  .svc-detail__cta {
    width: 100%;
  }

  .svc-who__grid {
    grid-template-columns: 1fr;
  }

  .equip-page__grid {
    display: flex;
    flex-direction: column;
  }

  .equip-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .equip-item:nth-child(even) .equip-item__media,
  .equip-item:nth-child(even) .equip-item__body {
    order: unset;
  }

  .equip-item__media {
    min-height: 0;
    height: auto;
  }

  .equip-item__body {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .equip-card__media {
    height: 280px;
  }

  .equip-process__list {
    grid-template-columns: 1fr;
  }

  .areas-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .area-tile {
    min-height: 140px;
    padding: 1.25rem 0.75rem;
  }

  .areas-page-benefits__grid {
    grid-template-columns: 1fr;
  }

  .why-page-list .container::before {
    left: 36px;
    transform: none;
  }

  .why-detail {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }

  .why-detail__icon {
    grid-column: 1;
    width: 64px;
    height: 64px;
  }

  .why-detail:nth-child(odd) .why-detail__body,
  .why-detail:nth-child(even) .why-detail__body {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    max-width: none;
  }

  .why-detail__icon img {
    width: 34px;
    height: 34px;
  }

  .why-detail__icon svg {
    width: 28px;
    height: 28px;
  }

  .why-detail:nth-child(odd):hover .why-detail__body,
  .why-detail:nth-child(even):hover .why-detail__body {
    transform: translateY(-3px);
  }

  .why-detail__body {
    padding: 1.25rem 1.1rem;
  }

  .why-detail__body ul,
  .why-page-compare__grid {
    grid-template-columns: 1fr;
  }

  .areas-page-map__frame {
    height: 280px;
  }

  .about-promise__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .areas {
    min-height: 640px;
  }

  .areas__layout {
    grid-template-columns: 1fr;
    padding-block: 0;
    min-height: 640px;
  }

  .areas__form-wrap {
    max-width: none;
    justify-self: stretch;
    padding: 1.25rem 0 2rem;
  }

  .testimonials__track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonials__visual {
    display: none;
  }

  .site-footer {
    padding-top: 2.75rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__support {
    max-width: none;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .float-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .top-bar__social span {
    display: none;
  }

  .header-cta__text strong {
    display: none;
  }

  .top-bar__features {
    display: none;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats__item {
    justify-content: flex-start;
  }

  .stats__item:last-child {
    grid-column: auto;
    padding-left: 0;
  }

  .services__grid,
  .equipment__grid,
  .why-us__grid,
  .areas-page-grid,
  .svc-list__grid {
    grid-template-columns: 1fr;
  }

  .why-us__item:not(:last-child),
  .why-us__item:nth-child(3n),
  .why-us__item:nth-child(2n) {
    border-right: none;
  }

  .why-us__item:nth-child(n + 2) {
    border-top: 1px solid rgba(11, 58, 110, 0.12);
    padding-top: 1rem;
  }

  .area-tile {
    min-height: 120px;
  }

  .equip-item__media {
    min-height: 0;
    height: auto;
  }

  .equip-item__body h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .equip-item__body > p,
  .equip-item__body li {
    font-size: 0.95rem;
  }

  .equip-card__media {
    height: 220px;
  }

  .page-hero__visual {
    width: min(78vw, 240px);
    max-width: 240px;
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .page-hero__actions .btn {
    width: 100%;
  }

  .svc-intro {
    padding: 2.25rem 0 1rem;
  }

  .svc-intro h2,
  .section-head__title {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .contact-form-card {
    padding: 1.35rem 1.15rem;
  }

  .why-page-list .container::before {
    left: 28px;
  }

  .why-detail {
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
  }

  .why-detail__icon {
    width: 56px;
    height: 56px;
  }

  .why-detail__icon img {
    width: 28px;
    height: 28px;
  }

  .float-whatsapp {
    width: 48px;
    height: 48px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

/* ---------- Contact page ---------- */
.contact-page {
  padding: 3.5rem 0 2rem;
  background: var(--white);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
}

.contact-info__lead {
  margin: 0 0 1.75rem;
  max-width: 42ch;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.7;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-info__list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-info__list img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-info__list strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-info__list a,
.contact-info__list span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.contact-info__list a:hover {
  color: var(--green);
}

.contact-form-card {
  padding: 1.75rem 1.6rem;
  border: 1px solid rgba(11, 58, 110, 0.1);
  border-radius: 16px;
  background: linear-gradient(165deg, #f4f8fc 0%, #ffffff 55%);
  box-shadow: 0 12px 32px rgba(11, 58, 110, 0.06);
}

.contact-form-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-form-card > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(11, 58, 110, 0.15);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 157, 85, 0.35);
  border-color: var(--green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.contact-form__note {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form__note a {
  color: var(--navy);
  font-weight: 700;
}

.contact-map {
  padding: 2rem 0 4rem;
  background: #eef3f8;
}

.contact-map__frame {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 110, 0.1);
  box-shadow: 0 12px 32px rgba(11, 58, 110, 0.1);
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero--compact {
  padding-block: 2.75rem;
}

.page-hero--compact .page-hero__layout {
  grid-template-columns: 1fr;
}

.page-hero--compact .page-hero__visual {
  display: none;
}

.page-hero--compact .page-hero__desc {
  margin-bottom: 0;
}

.legal-page {
  padding: 2.5rem 0 4rem;
  background: var(--white);
}

.legal-page__inner {
  max-width: 760px;
}

.legal-page__inner h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.legal-page__inner p,
.legal-page__inner li {
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.7;
}

.legal-page__inner ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-page__inner a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-bar__features img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .contact-map__frame {
    height: 320px;
  }
}
