/* ============================================================
   DELTA DESENTUPIDORA — Landing Page de Alta Conversão
   ============================================================ */

:root {
  /* Brand */
  --c-blue:        oklch(0.45 0.15 245);
  --c-blue-deep:   oklch(0.32 0.13 245);
  --c-blue-dark:   oklch(0.22 0.08 245);
  --c-blue-soft:   oklch(0.95 0.025 245);
  --c-orange:      oklch(0.72 0.18 45);
  --c-orange-deep: oklch(0.62 0.20 38);
  --c-green:       oklch(0.62 0.16 150);
  --c-green-soft:  oklch(0.95 0.04 150);
  --c-red:         oklch(0.58 0.20 25);

  /* Neutrals */
  --c-bg:          oklch(0.99 0.003 245);
  --c-surface:     #ffffff;
  --c-ink:         oklch(0.18 0.02 245);
  --c-ink-soft:    oklch(0.42 0.02 245);
  --c-ink-faint:   oklch(0.60 0.015 245);
  --c-border:      oklch(0.92 0.008 245);
  --c-border-strong: oklch(0.85 0.012 245);

  /* Type */
  --f-head: "Archivo", system-ui, -apple-system, sans-serif;
  --f-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Radii / shadows */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --sh-sm: 0 1px 2px rgba(15, 25, 50, 0.06), 0 1px 1px rgba(15, 25, 50, 0.04);
  --sh-md: 0 4px 12px rgba(15, 25, 50, 0.08), 0 2px 4px rgba(15, 25, 50, 0.04);
  --sh-lg: 0 18px 40px -12px rgba(15, 25, 50, 0.18), 0 8px 16px -8px rgba(15, 25, 50, 0.08);
  --sh-cta: 0 8px 20px -4px oklch(0.72 0.18 45 / 0.45), 0 2px 6px oklch(0.62 0.20 38 / 0.25);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5 { font-family: var(--f-head); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0; color: var(--c-ink); text-wrap: balance; overflow-wrap: break-word; word-wrap: break-word; }
p { margin: 0; text-wrap: pretty; overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }

/* ============================================================
   TOP URGENCY BAR (sticky)
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, var(--c-blue-deep), var(--c-blue));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 100;
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.urgency-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.78 0.18 145);
  box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0.7); }
  70% { box-shadow: 0 0 0 10px oklch(0.78 0.18 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0); }
}
.urgency-bar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.urgency-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  transition: background 0.15s;
}
.urgency-bar a:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 90;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.05em;
  box-shadow: var(--sh-sm);
}
.brand__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__logo--footer {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
@media (min-width: 1024px) {
  .brand__logo { width: 64px; height: 64px; }
}
.brand__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__name span {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--c-ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a { font-weight: 600; font-size: 14px; color: var(--c-ink-soft); }
.nav a:hover { color: var(--c-blue); }
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.header__phone small {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header__phone a {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-blue-deep);
  letter-spacing: -0.01em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.15s;
  white-space: nowrap;
}
.btn--cta {
  background: linear-gradient(180deg, var(--c-orange), var(--c-orange-deep));
  color: #fff;
  box-shadow: var(--sh-cta);
}
.btn--cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -4px oklch(0.72 0.18 45 / 0.55), 0 4px 8px oklch(0.62 0.20 38 / 0.3); }
.btn--cta:active { transform: translateY(0); }
.btn--wpp {
  background: oklch(0.65 0.18 145);
  color: #fff;
  box-shadow: 0 6px 14px -4px oklch(0.55 0.17 145 / 0.45);
}
.btn--wpp:hover { background: oklch(0.6 0.18 145); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--c-blue-deep);
  border: 2px solid var(--c-border-strong);
}
.btn--ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn--lg { padding: 18px 28px; font-size: 17px; }
.btn--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 0%, oklch(0.55 0.16 245 / 0.18), transparent 55%),
    radial-gradient(ellipse at 110% 50%, oklch(0.72 0.18 45 / 0.08), transparent 50%),
    linear-gradient(180deg, var(--c-blue-dark), var(--c-blue-deep));
  color: #fff;
  padding: 64px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: oklch(0.78 0.18 145 / 0.15);
  border: 1px solid oklch(0.78 0.18 145 / 0.4);
  color: oklch(0.85 0.14 145);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.78 0.18 145);
  box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0.7);
  animation: pulse 1.8s infinite;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  margin: 18px 0 18px;
  letter-spacing: -0.025em;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--c-orange) 0%, oklch(0.82 0.16 70) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: oklch(0.92 0.02 245);
  max-width: 540px;
  margin-bottom: 26px;
}
.hero__sub strong { color: #fff; font-weight: 700; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: oklch(0.88 0.02 245);
}
.trust-item__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: oklch(0.85 0.14 145);
}
.trust-item strong { display: block; color: #fff; font-weight: 700; font-size: 15px; line-height: 1.2; }
.trust-item span { font-size: 12px; color: oklch(0.78 0.02 245); }

/* Hero form */
.lead-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-lg);
  color: var(--c-ink);
  position: relative;
}
.lead-card__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--c-orange);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.lead-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.lead-card__sub {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px oklch(0.45 0.15 245 / 0.15);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field--error input, .field--error select { border-color: var(--c-red); }
.field__err { color: var(--c-red); font-size: 12px; margin-top: 4px; }
.lead-card__legal {
  font-size: 11px;
  color: var(--c-ink-faint);
  margin-top: 12px;
  text-align: center;
  line-height: 1.45;
}
.lead-card__or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--c-ink-faint);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lead-card__or::before, .lead-card__or::after {
  content: ""; flex: 1; height: 1px; background: var(--c-border);
}

.lead-success {
  text-align: center;
  padding: 16px 8px;
}
.lead-success__icon {
  width: 68px; height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--c-green-soft);
  color: var(--c-green);
  display: grid; place-items: center;
}
.lead-success h3 { font-size: 24px; margin-bottom: 8px; }
.lead-success p { color: var(--c-ink-soft); }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.proof-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-stat__num {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-blue-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-stat__lbl {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.3;
  font-weight: 600;
}
.proof-stat .stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 2px;
  color: oklch(0.78 0.16 75);
}

/* ============================================================
   SECTION basics
   ============================================================ */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-orange-deep);
  padding: 6px 14px;
  background: oklch(0.95 0.04 50);
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 17px;
  color: var(--c-ink-soft);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--c-bg);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-grid > .svc-card:nth-child(4),
.svc-grid > .svc-card:nth-child(5) {
  /* Last row of 2 cards stays balanced — 5 items total */
}
@media (min-width: 1025px) {
  .svc-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .svc-grid > .svc-card { grid-column: span 2; }
  .svc-grid > .svc-card:nth-child(4) { grid-column: 2 / span 2; }
  .svc-grid > .svc-card:nth-child(5) { grid-column: span 2; }
}
.svc-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-blue);
}
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-blue-soft);
  color: var(--c-blue);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.svc-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.svc-card p {
  color: var(--c-ink-soft);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--c-border-strong);
}
.svc-card__price {
  font-size: 12px;
  color: var(--c-ink-faint);
}
.svc-card__price strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  color: var(--c-blue-deep);
  font-size: 18px;
}
.svc-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   WHY US — value props
   ============================================================ */
.why {
  background: linear-gradient(180deg, var(--c-blue-dark), var(--c-blue-deep));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, oklch(0.55 0.16 245 / 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, oklch(0.72 0.18 45 / 0.12), transparent 50%);
  pointer-events: none;
}
.why .section-head h2 { color: #fff; }
.why .section-head p { color: oklch(0.88 0.02 245); }
.why .section-head__eyebrow {
  background: oklch(0.72 0.18 45 / 0.18);
  color: oklch(0.85 0.16 60);
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.why-card__num {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(180deg, var(--c-orange), oklch(0.62 0.20 38));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.why-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
.why-card p {
  color: oklch(0.85 0.02 245);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process-step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
}
.process-step__badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-deep));
  color: #fff;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 18px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: var(--sh-sm);
}
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--c-ink-soft); font-size: 14.5px; }
.process-step__time {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 11px;
  color: var(--c-green);
  background: var(--c-green-soft);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   GALLERY (antes/depois placeholders)
   ============================================================ */
.gallery {
  background: var(--c-blue-soft);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gal-item {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.gal-item__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  aspect-ratio: 16/9;
}
.gal-placeholder {
  background:
    repeating-linear-gradient(45deg, oklch(0.92 0.02 245) 0 10px, oklch(0.88 0.02 245) 10px 20px);
  position: relative;
  display: grid;
  place-items: center;
}
.gal-placeholder span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-ink-soft);
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 4px;
}
.gal-placeholder--after {
  background:
    repeating-linear-gradient(45deg, oklch(0.95 0.04 150) 0 10px, oklch(0.92 0.04 150) 10px 20px);
}
.gal-item__cap {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gal-item__cap h5 { font-family: var(--f-head); font-weight: 700; font-size: 15px; margin: 0;}
.gal-item__cap small { color: var(--c-ink-faint); font-size: 12px; }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage {
  background: var(--c-bg);
}
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.coverage h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.coverage > .container > .coverage__grid > div > p {
  font-size: 16.5px;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}
.cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  margin-bottom: 24px;
}
.cities li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-ink);
}
.cities li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage-map {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
  display: grid;
  place-items: center;
}
.coverage-map svg { width: 100%; height: auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-surface);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
}
.testi-card__stars {
  display: inline-flex;
  gap: 2px;
  color: oklch(0.78 0.16 75);
  margin-bottom: 12px;
}
.testi-card__quote {
  font-size: 15.5px;
  color: var(--c-ink);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.testi-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-deep));
  color: #fff;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 16px;
  display: grid; place-items: center;
}
.testi-card__name {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
}
.testi-card__name small {
  display: block;
  font-weight: 500;
  color: var(--c-ink-faint);
  font-size: 12px;
  margin-top: 2px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-soft);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  background: linear-gradient(135deg, var(--c-orange-deep), var(--c-orange));
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.1), transparent 40%);
}
.guarantee__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.guarantee__seal {
  width: 160px; height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.5);
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 900;
  line-height: 1;
  padding: 16px;
}
.guarantee__seal strong { font-size: 38px; display: block; }
.guarantee__seal span { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; display: block; opacity: 0.95; }
.guarantee h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.guarantee p { font-size: 17px; line-height: 1.55; opacity: 0.95; max-width: 640px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--c-bg);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq__item[open] {
  border-color: var(--c-blue);
  box-shadow: var(--sh-sm);
}
.faq__item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--c-blue);
  transition: transform 0.18s ease;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  padding: 0 24px 22px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(ellipse at 50% 100%, oklch(0.55 0.16 245 / 0.4), transparent 60%),
    var(--c-blue-dark);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  max-width: 800px;
  margin: 0 auto 16px;
}
.final-cta h2 .hl {
  background: linear-gradient(120deg, var(--c-orange), oklch(0.82 0.16 70));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta p {
  font-size: 18px;
  color: oklch(0.88 0.02 245);
  max-width: 600px;
  margin: 0 auto 32px;
}
.final-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta__phone {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  padding-bottom: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: oklch(0.14 0.02 245);
  color: oklch(0.78 0.02 245);
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: oklch(0.55 0.02 245);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-wpp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: oklch(0.65 0.18 145);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 80;
  box-shadow: 0 12px 28px -6px oklch(0.55 0.17 145 / 0.55), 0 4px 8px rgba(0,0,0,0.12);
  transition: transform 0.15s;
}
.fab-wpp:hover { transform: scale(1.08); }
.fab-wpp::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid oklch(0.65 0.18 145 / 0.6);
  animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile sticky call bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 10px 12px;
  z-index: 75;
  box-shadow: 0 -8px 20px -4px rgba(15,25,50,0.12);
  gap: 8px;
}
.mobile-cta-bar .btn { flex: 1; padding: 12px; font-size: 14px; }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.14 0.02 245 / 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: 20px;
  animation: exit-fade-in 0.25s ease-out;
}
@keyframes exit-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.exit-popup {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 12px 30px -8px rgba(0,0,0,0.3);
  animation: exit-pop-in 0.32s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes exit-pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-popup__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--c-ink-soft);
  font-size: 24px;
  line-height: 1;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  box-shadow: var(--sh-sm);
}
.exit-popup__close:hover {
  background: var(--c-ink);
  color: #fff;
  transform: rotate(90deg);
}
.exit-popup__ribbon {
  background: linear-gradient(135deg, var(--c-orange-deep), var(--c-orange));
  color: #fff;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.exit-popup__ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 10px, transparent 10px 20px);
  pointer-events: none;
}
.exit-popup__ribbon-icon {
  font-size: 22px;
  animation: exit-pulse 1.4s ease-in-out infinite;
}
@keyframes exit-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}
.exit-popup__body {
  padding: 28px 26px 24px;
  text-align: center;
}
.exit-popup__body h3 {
  font-size: clamp(22px, 5vw, 26px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.exit-popup__sub {
  font-size: 15px;
  color: var(--c-ink-soft);
  margin-bottom: 22px;
  line-height: 1.5;
}
.exit-popup__coupon {
  background: var(--c-blue-soft);
  border: 2px dashed var(--c-blue);
  border-radius: var(--r-md);
  padding: 18px 16px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.exit-popup__coupon-label {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-blue-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.exit-popup__coupon > div:first-child {
  flex: 1;
}
.exit-popup__coupon-code {
  display: flex;
  align-items: center;
  gap: 10px;
}
.exit-popup__coupon-code span {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--c-blue-dark);
}
.exit-popup__copy {
  background: var(--c-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.exit-popup__copy:hover { background: var(--c-blue-deep); }
.exit-popup__copy:active { transform: scale(0.96); }
.exit-popup__coupon-disc {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  color: var(--c-orange-deep);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.exit-popup__coupon-disc small {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.exit-popup__fineprint {
  font-size: 11.5px;
  color: var(--c-ink-faint);
  margin-top: 14px;
  line-height: 1.45;
}

@media (max-width: 420px) {
  .exit-popup__body { padding: 22px 18px 20px; }
  .exit-popup__ribbon { font-size: 15px; padding: 12px 18px; }
  .exit-popup__coupon { padding: 14px 14px 14px 16px; gap: 8px; }
  .exit-popup__coupon-code span { font-size: 20px; }
  .exit-popup__coupon-disc { font-size: 32px; }
  .exit-popup__copy { padding: 5px 10px; font-size: 11px; }
}

/* ============================================================
   RESPONSIVE — mobile-first overrides
   The base styles above are the desktop layout. These queries
   collapse them down for tablets and phones, and the few
   mobile-specific rules at the bottom scale things UP from base.
   ============================================================ */

/* TABLET — below 1024px: collapse multi-column grids */
@media (max-width: 1024px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(28px, 6vw, 44px); }
  .hero__sub { font-size: 16.5px; }
  .svc-grid, .why-grid, .process-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .coverage__grid { grid-template-columns: 1fr; gap: 32px; }
  .guarantee__grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .guarantee__seal { margin: 0 auto; }
  .nav { display: none; }
  .site-header__inner { padding: 14px 0; }
}

/* SMALL TABLET / LARGE PHONE — below 768px */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(24px, 6vw, 32px); }
  .section-head p { font-size: 15.5px; }
  .header__cta .btn { padding: 10px 14px; font-size: 13px; }
  .header__phone small { display: none; }
  .header__phone a { font-size: 16px; }
  .urgency-bar__inner { padding: 8px 14px; font-size: 12.5px; }
  .urgency-bar__right { display: none; }
  .hero__trust { gap: 12px 20px; }
  .lead-card { padding: 22px; }
  .lead-card h3 { font-size: 20px; }
  .why-card { padding: 24px; }
  .why-card__num { font-size: 46px; }
  .testi-card { padding: 22px; }
  .testi-card__quote { font-size: 14.5px; }
  .guarantee { padding: 48px 0; }
  .guarantee__seal { width: 130px; height: 130px; }
  .guarantee__seal strong { font-size: 32px; }
}

/* PHONE — below 560px: single column everything */
@media (max-width: 560px) {
  section { padding: 44px 0; }
  .hero { padding: 32px 0 44px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .hero__sub { font-size: 15.5px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__ctas .btn { width: 100%; }
  .header__cta .header__phone { display: none; }
  .svc-grid, .why-grid, .process-grid, .testi-grid, .footer__grid { grid-template-columns: 1fr; }
  .proof-strip__inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .proof-stat__num { font-size: 24px; }
  .proof-stat__lbl { font-size: 11.5px; }
  body { padding-bottom: 72px; }
  .mobile-cta-bar { display: flex; }
  .fab-wpp { display: none; }
  .lead-card { padding: 18px; }
  .field--row { grid-template-columns: 1fr; }
  .brand__logo { width: 44px; height: 44px; }
  .brand__name { font-size: 16px; }
  .brand__name span { font-size: 10px; }
  .footer { padding: 36px 0 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .final-cta__ctas { flex-direction: column; align-items: stretch; }
  .final-cta__ctas .btn { width: 100%; }
}

/* ULTRA NARROW — below 380px: emergency squeeze */
@media (max-width: 380px) {
  .urgency-bar__inner { padding: 8px 10px; font-size: 11.5px; gap: 8px; }
  .urgency-bar__left { gap: 8px; }
  .container { padding: 0 12px; }
  .hero { padding: 24px 0 36px; }
  .hero h1 { font-size: 24px; }
  .btn { padding: 12px 16px; font-size: 14px; }
  .btn--lg { padding: 14px 20px; font-size: 15px; }
  .header__cta .btn { padding: 8px 12px; font-size: 12px; }
  .brand__name span { display: none; }
}
