/* ============================================================
   SolarPro — Brand tokens
   ============================================================ */
:root {
  --navy-deep: #041C3C;
  --navy: #003B8E;
  --navy-700: #06286B;
  --aqua: #00B5E2;
  --sky: #57D6FF;
  --gold: #FDB813;
  --gold-700: #E5A300;
  --orange: #FF9F1C;
  --white: #F8FBFF;
  --ink: #0A1B36;
  --ink-2: #1f3357;
  --muted: #5b6b88;
  --line: rgba(0, 59, 142, 0.10);
  --line-strong: rgba(0, 59, 142, 0.18);

  --container: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(4, 28, 60, 0.06), 0 1px 3px rgba(4, 28, 60, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(4, 28, 60, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(4, 28, 60, 0.22);
  --shadow-gold: 0 14px 40px -12px rgba(253, 184, 19, 0.55);

  --grad-brand: linear-gradient(135deg, #003B8E 0%, #00B5E2 60%, #57D6FF 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(0, 181, 226, 0.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(253, 184, 19, 0.15), transparent 60%),
    linear-gradient(180deg, #041C3C 0%, #062554 55%, #041C3C 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* clip is stronger than hidden for descendants like position:fixed FABs whose
     ::before pulse-rings get transformed past the viewport edge on mobile. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: clip;
  overflow-y: visible;
}

/* ============================================================
   First-paint splash — logo with soft blurred glow behind
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  opacity: 1;
  transition: opacity .6s ease, visibility .6s ease;
  isolation: isolate;
}

#splash .splash-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(253, 184, 19, 0.45) 0%, rgba(255, 159, 28, 0.28) 35%, rgba(255, 255, 255, 0) 70%);
  filter: blur(70px);
  animation: splash-pulse 2.6s ease-in-out infinite;
  z-index: -1;
}

#splash .splash-logo {
  position: relative;
  width: clamp(180px, 32vw, 320px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(4, 28, 60, 0.12));
  animation: splash-rise .9s cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes splash-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes splash-rise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#splash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prevent body scroll under the splash */
html.splash-locked,
html.splash-locked body {
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  #splash .splash-glow {
    animation: none;
  }

  #splash .splash-logo {
    animation: none;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-deep);
  text-wrap: balance;
}

h1 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 .line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 520px) {
  h1 .line {
    white-space: normal;
  }
}

h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--ink-2);
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow .dot {
  display: none;
}

.section-eyebrow-dark {
  color: var(--sky);
}

.section-eyebrow-dark::before {
  background: var(--gold);
}

.hero-eyebrow {
  color: var(--sky);
}

.hero-eyebrow::before {
  background: var(--gold);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bg: var(--gold);
  --fg: var(--navy-deep);
  --bd: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -12px rgba(253, 184, 19, 0.7);
}

.btn .arrow {
  transition: transform .3s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-ghost {
  --bg: transparent;
  --fg: var(--white);
  --bd: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-navy {
  --bg: var(--navy);
  --fg: #fff;
  --bd: var(--navy);
  box-shadow: 0 14px 40px -12px rgba(0, 59, 142, 0.45);
}

.btn-navy:hover {
  box-shadow: 0 22px 50px -12px rgba(0, 59, 142, 0.6);
}

.btn-outline {
  --bg: transparent;
  --fg: var(--navy);
  --bd: var(--line-strong);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 14px 40px -12px rgba(0, 59, 142, 0.45);
}

.btn-whatsapp {
  --bg: #25D366;
  --fg: #ffffff;
  --bd: #25D366;
  box-shadow: 0 14px 40px -14px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp:hover {
  box-shadow: 0 22px 50px -14px rgba(37, 211, 102, 0.75);
  background: #1FB855;
  border-color: #1FB855;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(248, 251, 255, 0.92);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.nav-brand img {
  height: 96px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-brand img {
    height: 64px;
  }
}

.nav-brand .pro {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}

.nav-links a:hover {
  color: var(--navy-deep);
}

.nav-links a:hover::after {
  left: 0;
  right: 0;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

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

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 0%, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  color: #fff;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #FDB813 0%, #FF9F1C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-eyebrow {
  color: var(--sky);
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-stat-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(253, 184, 19, 0.14);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid rgba(253, 184, 19, 0.32);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  animation: orbit-spin 60s linear infinite;
}

.hero-orbit.r2 {
  inset: 8%;
  animation-duration: 90s;
  animation-direction: reverse;
  border-color: rgba(87, 214, 255, 0.18);
}

.hero-orbit.r3 {
  inset: 18%;
  animation-duration: 120s;
  border-color: rgba(253, 184, 19, 0.18);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-sun {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFE7A8 0%, #FDB813 35%, #FF9F1C 75%, #C97900 100%);
  box-shadow:
    0 0 60px 0 rgba(253, 184, 19, 0.55),
    0 0 120px 20px rgba(253, 184, 19, 0.35),
    inset -16px -16px 40px rgba(180, 110, 0, 0.45);
  animation: sun-pulse 5s ease-in-out infinite;
}

@keyframes sun-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 60px 0 rgba(253, 184, 19, 0.55), 0 0 120px 20px rgba(253, 184, 19, 0.35), inset -16px -16px 40px rgba(180, 110, 0, 0.45);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 80px 0 rgba(253, 184, 19, 0.7), 0 0 160px 30px rgba(253, 184, 19, 0.45), inset -16px -16px 40px rgba(180, 110, 0, 0.45);
  }
}

.hero-rays {
  position: absolute;
  inset: 0;
  animation: orbit-spin 80s linear infinite;
}

.hero-panel {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 38%;
  transform: perspective(900px) rotateX(58deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  border-radius: 8px;
  background: linear-gradient(180deg, #0a4ca3 0%, #062b73 100%);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-panel .cell {
  background: linear-gradient(135deg, #1a6dd8 0%, #0a3a8c 60%, #062055 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-panel .cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.4s ease-in-out infinite;
}

.hero-panel .cell:nth-child(3n)::after {
  animation-delay: 0.6s;
}

.hero-panel .cell:nth-child(5n)::after {
  animation-delay: 1.2s;
}

@keyframes shimmer {

  0%,
  60% {
    transform: translateX(-100%);
  }

  80% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(87, 214, 255, 0.85);
  animation: spark-fade 3s ease-in-out infinite;
}

.spark.s2 {
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(253, 184, 19, 0.9);
}

.spark.s3 {
  width: 4px;
  height: 4px;
}

@keyframes spark-fade {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-meter {
  position: absolute;
  left: -10px;
  bottom: 18%;
  background: rgba(4, 28, 60, 0.7);
  border: 1px solid rgba(87, 214, 255, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.hero-meter .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 181, 226, 0.22);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% {
    box-shadow: 0 0 0 8px rgba(0, 181, 226, 0.12);
  }
}

.hero-meter .meter-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meter .meter-value {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.hero-meter .meter-up {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.hero-badge {
  position: absolute;
  right: -10px;
  top: 14%;
  background: linear-gradient(135deg, #FDB813, #FF9F1C);
  color: var(--navy-deep);
  font-family: "Montserrat";
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: 0 20px 40px -10px rgba(253, 184, 19, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge .big {
  font-size: 22px;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero {
    padding: 60px 0 80px;
  }
}

/* ============================================================
   Trust bar (marquee)
   ============================================================ */
.trustbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 36s linear infinite;
}

.trust-group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.trust-item .icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(253, 184, 19, 0.15);
  color: var(--gold);
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Section primitives
   ============================================================ */
section.surface {
  padding: 110px 0;
  position: relative;
}

section.surface-tint {
  background: linear-gradient(180deg, #F3F8FF 0%, #F8FBFF 100%);
}

section.surface-dark {
  background: var(--navy-deep);
  color: #fff;
}

section.surface-dark h2 {
  color: #fff;
}

section.surface-dark p {
  color: rgba(255, 255, 255, 0.75);
}

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

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
}

.section-lead {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
}

section.surface-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   Why it matters
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.why-li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}

.why-li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.why-li .check {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #00B5E2, #003B8E);
  color: #fff;
  flex-shrink: 0;
}

.why-li strong {
  font-family: "Montserrat";
  font-weight: 600;
  color: var(--navy-deep);
  display: block;
  font-size: 15px;
}

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

.why-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 44px;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 181, 226, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(253, 184, 19, 0.10), transparent 60%);
  z-index: -1;
}

.why-card .eyebrow-mini {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.why-card .eyebrow-mini::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.why-card .big-stat {
  font-family: "Montserrat";
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(135deg, #FDB813 0%, #FF9F1C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-card .big-stat .pct {
  font-size: 0.5em;
}

.why-card .stat-label {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
  line-height: 1.55;
}

.why-card .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 36px 0 28px;
}

/* Clean horizontal bar comparison */
.bar-compare {
  display: grid;
  gap: 22px;
}

.bar-row {
  display: grid;
  gap: 10px;
}

.bar-row .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Montserrat";
}

.bar-row .meta .name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.bar-row .meta .val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(.2, .7, .2, 1);
}

.bar-row.dirty .bar-fill {
  background: linear-gradient(90deg, #9b6a2f 0%, #c98c46 100%);
}

.bar-row.clean .bar-fill {
  background: linear-gradient(90deg, #FDB813 0%, #FF9F1C 100%);
  box-shadow: 0 0 18px rgba(253, 184, 19, 0.5);
}

.why-card.in .bar-row.dirty .bar-fill {
  width: 58%;
}

.why-card.in .bar-row.clean .bar-fill {
  width: 100%;
}

@media (max-width: 880px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Before & After — static comparison image
   ============================================================ */
.ba-static {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  background: #0b1a3a;
}

.ba-static img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 36px auto 0;
}

.ba-stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ba-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ba-stat .v {
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.ba-stat .v .pct {
  color: var(--gold);
}

.ba-stat .l {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 700px) {
  .ba-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.svc-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 181, 226, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 181, 226, 0.35);
}

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

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #003B8E 0%, #00B5E2 100%);
  color: #fff;
  margin-bottom: 22px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.svc-card:hover .svc-icon {
  transform: rotate(-6deg) scale(1.05);
}

.svc-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 15px;
  color: var(--muted);
}

.svc-card .more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
}

.svc-card .more svg {
  transition: transform .25s ease;
}

.svc-card:hover .more svg {
  transform: translateX(4px);
}

@media (max-width: 880px) {
  .svc-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .svc-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ============================================================
   Pricing
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--navy);
  background: linear-gradient(180deg, #041C3C 0%, #052563 100%);
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(4, 28, 60, 0.5);
}

.price-card.featured h3,
.price-card.featured .price {
  color: #fff;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.featured ul li {
  color: rgba(255, 255, 255, 0.85);
}

.price-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}

.price-card h3 {
  font-size: 22px;
}

.price-card .sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.price {
  margin-top: 26px;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price .unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.price-card.featured .price .unit {
  color: rgba(255, 255, 255, 0.6);
}

.price ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.price-card li svg {
  color: var(--aqua);
  flex-shrink: 0;
}

.price-card.featured li svg {
  color: var(--gold);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.price-note {
  margin: 28px auto 0;
  max-width: 920px;
  text-align: center;
  padding: 18px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-note .btn {
  padding: 10px 18px;
  font-size: 13.5px;
}

@media (max-width: 720px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}

.steps::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  text-align: center;
  z-index: 1;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease, border-color .25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 181, 226, 0.35);
}

.step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003B8E 0%, #00B5E2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 14px 30px -10px rgba(0, 59, 142, 0.55);
}

.step:hover .step-num {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--navy-deep);
  transform: scale(1.06) rotate(-4deg);
  box-shadow: var(--shadow-gold);
}

.step-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.step:hover .step-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }
}

/* ============================================================
   Why choose us
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feat {
  background: var(--navy-deep);
  padding: 36px 32px;
  transition: background .3s ease;
  position: relative;
}

.feat:hover {
  background: #052563;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(253, 184, 19, 0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s ease;
}

.feat:hover .feat-icon {
  transform: translateY(-3px) rotate(-4deg);
}

.feat h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}

.feat p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Areas
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: "Montserrat";
  font-weight: 500;
  color: var(--navy-deep);
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}

.area-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--aqua);
}

.area-chip svg {
  color: var(--aqua);
}

/* ============================================================
   Areas — Leaflet map override
   ============================================================ */
.areas-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.areas-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #e7eff8;
  font-family: "Montserrat", sans-serif;
}

.areas-map .sp-pin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(253, 184, 19, 0.4), 0 0 0 1px rgba(0, 59, 142, 0.18);
}

.areas-map .sp-pin.main {
  width: 28px;
  height: 28px;
  background: var(--navy);
  box-shadow: 0 6px 16px rgba(0, 59, 142, 0.5), 0 0 0 1px rgba(0, 59, 142, 0.22);
  position: relative;
}

.areas-map .sp-pin.main::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--aqua);
  animation: pulse-ring 2.4s ease-out infinite;
}

.areas-map .leaflet-popup-content-wrapper {
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.areas-map .leaflet-popup-content {
  margin: 10px 14px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-deep);
}

/* Hide attribution */
.areas-map .leaflet-control-attribution {
  display: none !important;
}

/* No focus outline on tiles or container */
.areas-map .leaflet-container,
.areas-map .leaflet-container *,
.areas-map .leaflet-container:focus,
.areas-map .leaflet-container *:focus {
  outline: none !important;
}

.areas-map .sp-pin-wrap {
  background: transparent !important;
  border: 0 !important;
}

/* Permanent tooltip styling */
.areas-map .sp-tooltip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-deep);
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 16px -6px rgba(4, 28, 60, 0.18);
  white-space: nowrap;
}

.areas-map .sp-tooltip.main {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-size: 13px;
  padding: 6px 12px;
}

.areas-map .sp-tooltip::before {
  border-top-color: #fff !important;
}

.areas-map .sp-tooltip.main::before {
  border-top-color: var(--navy) !important;
}

.areas-map .leaflet-tooltip-top:before {
  border-top-color: var(--navy) !important;
}

.areas-map .sp-tooltip {
  box-shadow: 0 6px 16px -6px rgba(4, 28, 60, 0.18);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@media (max-width: 880px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
  cursor: pointer;
  transition: padding .2s ease;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .25s ease, color .25s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
}

.faq-item.open .faq-q .plus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2, .7, .2, 1), padding .3s ease;
  color: var(--muted);
  font-size: 15.5px;
  padding-right: 56px;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 14px;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 110px 0;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(0, 181, 226, 0.32), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 90%, rgba(253, 184, 19, 0.22), transparent 70%);
  z-index: -1;
}

.final-cta-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin-top: 20px;
}

.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.final-cta .phone {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.final-cta .phone .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 4px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #020F25;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 56px;
}

.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-brand img {
  height: 168px;
  margin: -22px 0 12px -10px;
  filter: grayscale(1) brightness(1.7) opacity(0.85);
  -webkit-filter: grayscale(1) brightness(1.7) opacity(0.85);
}

@media (max-width: 600px) {
  .footer-brand img {
    height: 130px;
  }
}

.footer-brand .tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer ul a,
.footer .info {
  font-size: 14.5px;
  transition: color .2s ease;
}

.footer ul a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform .25s ease, border-color .25s ease, background .35s ease, color .25s ease;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.socials a svg {
  position: relative;
  z-index: 1;
  transition: color .25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: transparent;
}

.socials a.s-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 28px -8px rgba(220, 39, 67, 0.5);
}

.socials a.s-youtube:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff0000 100%);
  box-shadow: 0 10px 28px -8px rgba(255, 0, 0, 0.5);
}

.socials a.s-facebook:hover {
  background: linear-gradient(135deg, #1877F2 0%, #00B6F0 100%);
  box-shadow: 0 10px 28px -8px rgba(24, 119, 242, 0.5);
}

.socials a.s-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.5);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer-bottom .tagline {
  color: var(--gold);
  font-family: "Montserrat";
  font-weight: 500;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
/* ============================================================
   Floating WhatsApp (icon only)
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px -10px rgba(37, 211, 102, 0.6), 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 50;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 26px 54px -12px rgba(37, 211, 102, 0.78);
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}

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

.reveal.fade-r {
  transform: translateX(28px);
}

.reveal.fade-r.in {
  transform: translateX(0);
}

.reveal.fade-l {
  transform: translateX(-28px);
}

.reveal.fade-l.in {
  transform: translateX(0);
}

.reveal.scale {
  transform: scale(0.96);
}

.reveal.scale.in {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* ============================================================
   Mobile responsive tightening
   ============================================================ */
@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  section.surface {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .nav-inner {
    padding: 6px 16px;
    gap: 12px;
  }

  .nav-cta .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-card {
    padding: 28px;
  }

  .price {
    font-size: 44px;
  }

  .why-card {
    padding: 28px;
  }

  .svc-card {
    padding: 24px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta .ctas {
    gap: 10px;
  }

  .final-cta .ctas .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .footer-bottom {
    align-items: center;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }

  .ba-static {
    border-radius: var(--r-lg);
  }

  .areas-map {
    aspect-ratio: 1 / 1;
  }

  .faq-q {
    font-size: 16px;
    gap: 12px;
  }

  .faq-q .plus {
    width: 30px;
    height: 30px;
  }

  .feat {
    padding: 28px 22px;
  }

  .step {
    padding: 28px 20px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(26px, 7.4vw, 34px);
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .nav-brand img {
    height: 54px;
  }

  .footer-brand img {
    height: 110px;
    margin-left: -8px;
  }

  .price {
    font-size: 38px;
  }

  .why-card .big-stat {
    font-size: 72px;
  }
}