/* ═══════════════════════════════════════════════
   LOCALWEBS — World-class landing
   Linear.app meets GoHighLevel
   ═══════════════════════════════════════════════ */

:root {
  /* Dark palette */
  --bg: #0A0E13;
  --bg-2: #111820;
  --bg-3: #0D1117;
  --surface: #111820;
  --surface-hover: #1A2332;

  /* Light palette */
  --light-bg: #F8F9FB;
  --light-surface: #FFFFFF;
  --light-border: rgba(0,0,0,.07);
  --light-text: #111827;
  --light-muted: #6B7280;

  /* Brand */
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --primary-glow: rgba(59,130,246,.12);
  --green: #34D399;
  --green-glow: rgba(52,211,153,.15);

  /* Borders */
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(59,130,246,.25);

  /* Text */
  --text: #F0F2F5;
  --muted: #8A94A6;
  --dim: #5A6477;

  /* Misc */
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s var(--ease), opacity .25s var(--ease); }
ul { list-style: none; }
.container { max-width: 1020px; margin: 0 auto; padding: 0 24px; }

/* ── GRADIENT TEXT ── */
.gradient-text,
.hero h1 em {
  background: linear-gradient(135deg, #FFFFFF 0%, #3B82F6 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── KEYFRAMES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 16px rgba(59,130,246,.3); }
  50% { text-shadow: 0 0 32px rgba(59,130,246,.5); }
}

@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,.35), 0 4px 20px rgba(59,130,246,.15); }
  50% { box-shadow: 0 0 32px rgba(59,130,246,.55), 0 4px 28px rgba(59,130,246,.25); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── FADE IN SYSTEM (IntersectionObserver) ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stat glow on visible */
.fade-in.visible .stat-big {
  animation: glowPulse 2s ease-in-out 1;
}


/* ═══════════════════════════════
   NAV
   ═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 60px;
  background: rgba(10, 14, 19, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(59,130,246,.08);
  border-bottom-color: rgba(59,130,246,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 22px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(59,130,246,.3);
  transition: all .25s var(--ease);
}
.nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 24px rgba(59,130,246,.5);
  transform: translateY(-1px);
}


/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 0 0 20px rgba(59,130,246,.35), 0 4px 20px rgba(59,130,246,.15);
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(59,130,246,.6), 0 8px 32px rgba(59,130,246,.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.btn-ghost:hover { color: var(--text); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(37,211,102,.35), 0 4px 24px rgba(37,211,102,.15);
  transition: all .3s var(--ease);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(37,211,102,.5), 0 8px 32px rgba(37,211,102,.2);
}

/* Secondary CTA (on light backgrounds) */
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(59,130,246,.25);
}
.btn-primary-light:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,.35);
}


/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 0;
}
/* Primary radial glow — top center */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse 70% 55% at center, rgba(59,130,246,.14) 0%, rgba(59,130,246,.04) 50%, transparent 80%);
  pointer-events: none;
}
/* Secondary subtle glow — right side */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; }
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 480px;
}
.hero-anti {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  opacity: .85;
  border-left: 2px solid var(--primary);
  padding-left: 12px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-photo { flex-shrink: 0; position: relative; }
.hero-photo img {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 50px rgba(59,130,246,.12);
  border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .4s var(--ease);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(59,130,246,.15), transparent 50%);
  pointer-events: none;
}


/* ═══════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════ */
.proof-bar {
  padding: 20px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.proof-bar p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .2px;
}
.proof-bar strong {
  color: var(--text);
  font-weight: 700;
}


/* ═══════════════════════════════
   RESULTS
   ═══════════════════════════════ */
.results {
  padding: 80px 0 72px;
  background: var(--bg);
  position: relative;
}
.results::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,130,246,.05) 0%, transparent 70%);
  pointer-events: none;
}
.results h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.results .section-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Cards */
.result-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
/* Colored accent line at top */
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
}
.result-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(59,130,246,.1);
  transform: translateY(-3px);
}
/* Card types — color accent */
.result-card[data-type="marketing"]::before {
  background: linear-gradient(90deg, #34D399, #10B981);
}
.result-card[data-type="seo"]::before {
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.result-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.result-card[data-type="marketing"] .result-badge {
  background: var(--green-glow);
  color: var(--green);
}
.result-card[data-type="seo"] .result-badge {
  background: var(--primary-glow);
  color: var(--primary);
}

.result-client {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.result-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.result-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.result-card h3 { font-size: 20px; font-weight: 800; }
.result-type {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 12px;
}
.result-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.result-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.result-stat {
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
}
.stat-big {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(59,130,246,.3);
}
.stat-small {
  font-size: 11px;
  color: var(--dim);
  display: block;
  margin-top: 2px;
}
.result-quote {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.result-quote p {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.result-quote span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.result-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: opacity .25s var(--ease);
}
.result-link:hover { opacity: .7; }


/* ═══════════════════════════════
   SERVICES (LIGHT)
   ═══════════════════════════════ */
.services {
  padding: 80px 0 72px;
  background: var(--light-bg);
  position: relative;
}
.services h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--light-text);
  letter-spacing: -.5px;
}
.services .section-sub {
  font-size: 15px;
  color: var(--light-muted);
  text-align: center;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  padding: 24px 20px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  background: var(--light-surface);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.service-card:hover {
  border-color: rgba(59,130,246,.25);
  box-shadow: 0 8px 32px rgba(59,130,246,.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--light-text);
}
.service-card p {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.55;
}


/* ═══════════════════════════════
   SECTORS TICKER (LIGHT)
   ═══════════════════════════════ */
.for-who {
  padding: 28px 0;
  background: var(--light-bg);
  overflow: hidden;
  border-top: 1px solid var(--light-border);
}
.for-who-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--light-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sectors-ticker {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 14px;
  font-weight: 600;
  color: #5A6477;
  white-space: nowrap;
}
.ticker-track span:nth-child(even) {
  color: #C0C5CE;
  font-size: 10px;
}


/* ═══════════════════════════════
   PRICING
   ═══════════════════════════════ */
.pricing {
  padding: 80px 0 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 65%);
  pointer-events: none;
}
.pricing h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.pricing .section-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
}

/* Animated gradient border wrapper */
.pricing-glow-wrap {
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(from var(--angle, 0deg), var(--primary), rgba(59,130,246,.15), var(--primary), rgba(52,211,153,.3), var(--primary));
  animation: borderRotate 4s linear infinite;
}
/* Property registration for the angle (fallback: static gradient) */
@supports (background: conic-gradient(from 0deg, red, blue)) {
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
}

.pricing-card-solo {
  background: var(--surface);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pricing-header { margin-bottom: 8px; }
.pricing-amount {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 20%, #3B82F6 70%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 20px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.4;
}
.pricing-list { text-align: left; margin-bottom: 28px; }
.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  list-style: none;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-bottom { margin-top: 16px; }
.pricing-no {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-context {
  text-align: center;
  font-size: 14px;
  color: var(--dim);
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.pricing-urgency {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,59,48,.08);
  color: #ff3b30;
  animation: floatBadge 2.5s ease-in-out infinite;
}


/* ═══════════════════════════════
   FAQ (LIGHT)
   ═══════════════════════════════ */
.faq {
  padding: 80px 0 72px;
  background: var(--light-bg);
}
.faq h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--light-text);
  letter-spacing: -.5px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  padding: 22px 20px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  background: var(--light-surface);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(59,130,246,.2);
  box-shadow: 0 6px 24px rgba(59,130,246,.08);
  transform: translateY(-2px);
}
.faq-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--light-text);
}
.faq-item p {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════
   FINAL CTA
   ═══════════════════════════════ */
.final-cta {
  padding: 80px 0 72px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,.1) 0%, rgba(59,130,246,.03) 35%, transparent 65%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -.5px;
}
.final-cta > .container > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.final-cta-sub {
  margin-top: 16px;
  font-size: 14px;
  color: var(--dim);
  position: relative;
  z-index: 1;
}
.final-cta-sub a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.final-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.final-social a {
  font-size: 13px;
  color: var(--dim);
  font-weight: 500;
  transition: color .25s var(--ease);
}
.final-social a:hover { color: var(--primary); }


/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: var(--dim);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer a { color: var(--muted); transition: color .25s var(--ease); }
.footer a:hover { color: var(--text); }


/* ═══════════════════════════════
   STICKY CTA (mobile)
   ═══════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #25D366;
  padding: 14px 24px;
  text-align: center;
}
.sticky-cta a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}


/* ═══════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}


/* ═══════════════════════════════
   EXIT INTENT
   ═══════════════════════════════ */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.exit-overlay.active { display: flex; }
.exit-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  max-width: 420px;
  text-align: center;
  position: relative;
  animation: modalIn .35s var(--ease);
}
.exit-modal h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.exit-modal p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.exit-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color .25s var(--ease);
}
.exit-close:hover { color: var(--text); }


/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 110px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-photo { display: none; }
  .hero h1 { font-size: 28px; letter-spacing: -1px; }
  .hero-content { max-width: 100%; }
  .hero-trust { flex-direction: column; }
  .results-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .sticky-cta { display: block; }
  .wa-float { bottom: 72px; right: 16px; }
  body { padding-bottom: 52px; }
  .pricing-card-solo { padding: 36px 24px; }
  .pricing-amount { font-size: 48px; }
  .btn-primary { padding: 14px 28px; font-size: 14px; }
  .btn-whatsapp { padding: 16px 28px; font-size: 16px; }
  .final-cta h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 25px; }
  .result-card { padding: 24px 20px; }
  .result-numbers { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service-card { padding: 20px 16px; }
  .faq-item { padding: 18px 16px; }
}
