/* ═══════════════════════════════════════
   DESIGN SYSTEM — Navy + Royal Blue
   ═══════════════════════════════════════ */
:root {
  /* 2 Core Brand Colors */
  --navy:        #0D1B2A;
  --navy-mid:    #162540;
  --navy-light:  #1E3355;
  --navy-tint:   #EBF0F7;
  --navy-pale:   #F4F7FB;

  --orange:      #1B4FD8;
  --orange-dark: #1640B0;
  --orange-light:#EEF2FF;
  --orange-pale: #F5F7FF;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --gray-100:    #F5F5F3;
  --gray-200:    #E8E8E4;
  --gray-300:    #C8C8C2;
  --gray-400:    #9A9A94;
  --gray-600:    #5A5A54;
  --gray-800:    #2A2A24;
  --black:       #0A0A08;

  /* Semantic */
  --text-primary:   var(--navy);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --border:         var(--gray-200);
  --bg:             var(--off-white);
  --bg-card:        var(--white);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Shadow */
  --shadow-sm: 0 1px 4px rgba(13,27,42,.06);
  --shadow-md: 0 4px 20px rgba(13,27,42,.10);
  --shadow-lg: 0 12px 40px rgba(13,27,42,.14);
  --shadow-orange: 0 6px 24px rgba(27,79,216,.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .display {
  font-family: 'Anton SC', sans-serif;
  font-weight: 400; /* Anton SC is already ultra-bold */
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.02em; }
h4 { font-size: 0.9rem; letter-spacing: 0.06em; }

p { font-family: 'Roboto', sans-serif; color: var(--text-secondary); }
.lead { font-size: 1.05rem; line-height: 1.75; color: var(--text-secondary); }
.small { font-size: 0.85rem; }
.xs { font-size: 0.75rem; }
strong { font-weight: 700; color: var(--text-primary); }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--r-md);
  border: none; cursor: pointer;
  text-decoration: none; transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27,79,216,.40);
  color: var(--white); text-decoration: none;
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08);
  color: var(--white); text-decoration: none;
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
  text-decoration: none;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  stroke: none;
  flex-shrink: 0;
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.5; }
.logo-wordmark {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.02em;
  color: var(--white); text-transform: uppercase;
}
.logo-wordmark span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-phone {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--orange); text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-cta { padding: 10px 22px; font-size: 0.8rem; }
.nav-mobile-cta { display: none; }

/* Nav Toggle (Hamburger Menu) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--orange);
  padding: 10px 0;
  text-align: center;
}
.announce-bar p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white);
}
.announce-bar span { opacity: .7; margin: 0 10px; }

/* ══════════════════════════════════════
   HERO — CRO OPTIMIZED
   ══════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,79,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,79,216,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Orange glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,79,216,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: end;
  position: relative; z-index: 1;
}

.hero-content { padding-bottom: 4rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,79,216,.15);
  border: 1px solid rgba(27,79,216,.35);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.5rem;
}
.hero-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: livepulse 1.8s infinite;
}
@keyframes livepulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(27,79,216,.6); }
  50% { opacity: .8; box-shadow: 0 0 0 5px rgba(27,79,216,0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.0;
}
.hero h1 span {
  color: var(--orange);
}
.hero h1 .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
/* Underline accent on highlight */
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: .4;
}

.hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.0rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-tagline .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
/* Underline accent on highlight inside tagline */
.hero-tagline .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  opacity: .4;
}

.hero-sub {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-proof {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,.55);
}
.proof-item svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.proof-item strong { color: rgba(255,255,255,.9); }

/* ── HERO VISUAL (MAP CARD) ── */
.hero-visual {
  align-self: center;
  position: relative; z-index: 1;
  margin-bottom: 4rem; /* Lift it above to align with left text content */
}
.map-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: 
    0 24px 48px rgba(13, 27, 42, 0.12), 
    0 8px 16px rgba(27, 79, 216, 0.04);
  position: relative;
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.map-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 64px rgba(13, 27, 42, 0.18), 
    0 12px 30px rgba(27, 79, 216, 0.08);
}
.map-card-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 1rem;
}
.map-card-label svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 2.5; }

.map-search-bar {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.map-search-bar svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; stroke-width: 2; flex-shrink: 0; }

.map-results { display: flex; flex-direction: column; gap: 8px; }
.map-result {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.map-result:hover {
  transform: translateX(6px);
  border-color: rgba(13, 27, 42, 0.15);
}
.map-result.rank1 {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 4px 12px rgba(27,79,216,.08);
}
.map-result.rank1:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(27,79,216,.15);
}
.rank-badge {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton SC', sans-serif;
  font-size: 0.85rem; flex-shrink: 0;
}
.r1 { background: var(--orange); color: #fff; }
.r2, .r3 { background: var(--gray-200); color: var(--gray-600); }
.map-info { flex: 1; min-width: 0; }
.map-biz-name {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.map-result.rank1 .map-biz-name { color: var(--navy); }
.you-chip {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 2px 8px; border-radius: 3px;
}
.map-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.map-result.rank1 .map-meta { color: var(--orange-dark); }
.map-stars { font-size: 0.8rem; color: #F5A623; flex-shrink: 0; }

/* Result counter */
.result-counter {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: .875rem;
  border-top: 1px solid var(--border);
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem; color: var(--text-muted);
}
.result-counter strong { color: var(--orange); }

/* ══════════════════════════════════════
   SOCIAL PROOF BAR
   ══════════════════════════════════════ */
.proof-bar {
  background: var(--navy-mid);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.proof-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Roboto', sans-serif;
}
.proof-stat-num {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.6rem; color: var(--orange);
}
.proof-stat-label {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,.5);
  line-height: 1.3; text-transform: uppercase;
  letter-spacing: .05em;
}
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* ══════════════════════════════════════
   PAIN SECTION
   ══════════════════════════════════════ */
.pain-section { background: var(--white); }
.section-header { margin-bottom: 3rem; }
.section-header .lead { margin-top: 1rem; max-width: 560px; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.pain-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .2s;
}
.pain-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(27,79,216,.08); }
.pain-icon {
  width: 44px; height: 44px;
  background: #EEF2FF;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pain-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.pain-card h3 { color: var(--navy); margin-bottom: .625rem; font-size: 1rem; }
.pain-card p { font-size: 0.9rem; line-height: 1.7; }

.solution-bridge {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--orange);
  border-radius: var(--r-md);
  margin-top: .5rem;
}
.solution-bridge p {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.1rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--white);
}
.solution-bridge svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ══════════════════════════════════════
   WHO WE SERVE
   ══════════════════════════════════════ */
.niches-section { background: var(--navy); padding: 4rem 0; }
.niches-section .eyebrow { color: var(--orange); }
.niches-section h2 { color: var(--white); margin-bottom: 1rem; }
.niches-section .lead { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; }

.niche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 900px) { .niche-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .niche-grid { grid-template-columns: repeat(2, 1fr); } }
.niche-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all .2s; cursor: default;
}
.niche-card:hover {
  background: rgba(27,79,216,.12);
  border-color: rgba(27,79,216,.4);
  transform: translateY(-3px);
}
.niche-icon {
  width: 44px; height: 44px;
  background: rgba(27,79,216,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
  transition: background .2s;
}
.niche-card:hover .niche-icon { background: rgba(27,79,216,.3); }
.niche-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.niche-name {
  font-family: 'Anton SC', sans-serif;
  font-size: 0.9rem; letter-spacing: .04em;
  color: var(--white); text-transform: uppercase;
}

/* ── SERVICES ── */
.services-section { background: var(--bg); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Anton SC', sans-serif;
  font-size: 3rem; color: var(--gray-200);
  line-height: 1; margin-bottom: 1rem;
  transition: color .2s;
}
.service-card:hover .service-num { color: var(--orange-light); }
.service-card h3 { color: var(--navy); margin-bottom: .75rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  margin-top: 1.25rem; transition: gap .15s;
}
.service-link:hover { gap: 10px; text-decoration: none; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--white); }

.steps-wrap { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-left { text-align: center; }
.step-num {
  font-family: 'Anton SC', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: var(--gray-200);
  display: block;
  transition: color .2s;
}
.step:hover .step-num { color: var(--orange-light); }
.step-line {
  width: 2px; height: calc(100% - 60px);
  background: var(--border);
  margin: 8px auto 0;
}
.step:last-child .step-line { display: none; }
.step-right { padding-top: .75rem; }
.step-tag {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(27,79,216,.2);
  border-radius: 3px; padding: 3px 10px;
  margin-bottom: .75rem;
}
.step h3 { color: var(--navy); margin-bottom: .625rem; font-size: 1.1rem; }
.step p { font-size: 0.9rem; line-height: 1.7; max-width: 560px; }

/* ── RESULTS / STATS ── */
.results-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,216,.08) 0%, transparent 70%);
}
.results-inner { position: relative; z-index: 1; }
.results-section .eyebrow { color: var(--orange); }
.results-section h2 { color: var(--white); margin-bottom: 3rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .2s;
}
.stat-card:hover { border-color: rgba(27,79,216,.4); background: rgba(27,79,216,.06); }
.stat-number {
  font-family: 'Anton SC', sans-serif;
  font-size: 3rem; color: var(--orange);
  line-height: 1; display: block; margin-bottom: .5rem;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,.5); line-height: 1.5; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.testi-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: .875rem; }
.testi-quote {
  font-size: 0.95rem; color: rgba(255,255,255,.85);
  line-height: 1.75; margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .875rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton SC', sans-serif;
  font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testi-biz { font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ── WHY US ── */
.why-section { background: var(--bg); }

.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.diff-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .2s;
}
.diff-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.diff-num {
  font-family: 'Anton SC', sans-serif;
  font-size: 0.75rem; letter-spacing: .1em;
  color: var(--orange); margin-bottom: .875rem;
  display: flex; align-items: center; gap: 8px;
}
.diff-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.diff-card h3 { color: var(--navy); margin-bottom: .625rem; font-size: 1rem; }
.diff-card p { font-size: 0.88rem; line-height: 1.7; }

/* ── PRICING ── */
.pricing-section { background: var(--white); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative;
  transition: all .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured {
  background: var(--navy);
  border: none;
  box-shadow: var(--shadow-lg);
}
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 4px;
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}
.plan-tier {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .625rem;
}
.pricing-card.featured .plan-tier { color: rgba(255,255,255,.5); }
.plan-price {
  font-family: 'Anton SC', sans-serif;
  font-size: 2.8rem; color: var(--navy);
  line-height: 1; margin-bottom: .25rem;
}
.pricing-card.featured .plan-price { color: var(--white); }
.plan-freq { font-size: 0.85rem; color: var(--text-muted); margin-bottom: .875rem; }
.pricing-card.featured .plan-freq { color: rgba(255,255,255,.4); }
.plan-tagline {
  font-size: 0.88rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.pricing-card.featured .plan-tagline { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.1); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-feats li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.pricing-card.featured .plan-feats li { color: rgba(255,255,255,.75); }
.plan-feats li svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 1px; }
.plan-btn {
  display: block; width: 100%;
  padding: 14px; text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--r-md); cursor: pointer; border: none;
  transition: all .2s; text-decoration: none;
}
.plan-btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.plan-btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.plan-btn-orange { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.plan-btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; }

/* Pricing Custom Quote Container & Button */
.pricing-custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.btn-pricing {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.guarantee-strip {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--navy-tint);
  border: 1.5px solid rgba(13,27,42,.12);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
}
.guarantee-strip svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 2; flex-shrink: 0; }
.guarantee-strip p { font-size: 0.9rem; color: var(--navy); line-height: 1.65; }
.guarantee-strip strong { color: var(--navy); font-weight: 700; }

/* ── FAQ ── */
.faq-section { background: var(--bg); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: var(--navy); }
.faq-btn {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 1.375rem 1.5rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  cursor: pointer;
}
.faq-q {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); line-height: 1.4;
  text-align: left;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s; margin-top: 1px;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; stroke-width: 2.5; transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-body { display: block; }
.faq-body ol { padding-left: 1.25rem; margin-top: .5rem; }
.faq-body ol li { margin-bottom: .35rem; }

/* ── CTA SECTION — HIGH CONVERSION ── */
.cta-section {
  background: var(--orange);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 50px,
    rgba(255,255,255,.04) 50px, rgba(255,255,255,.04) 51px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: rgba(255,255,255,.8); }
.cta-inner .eyebrow::before { background: rgba(255,255,255,.8); }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner .lead { color: rgba(255,255,255,.85); margin-bottom: 2.5rem; max-width: 560px; }

.cta-scarcity {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; padding: 6px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.cta-scarcity .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: livepulse 1.8s infinite; }

.cta-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }

.cta-benefits { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.cta-benefit {
  display: flex; align-items: flex-start; gap: .875rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
}
.cta-benefit svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.9); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }
.cta-benefit p { font-size: 0.88rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.cta-benefit strong { color: #fff; }

/* FORM */
.audit-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.3rem; color: var(--navy);
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: .25rem;
}
.form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-family: 'Roboto', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: .375rem;
}
.form-input, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem; color: var(--text-primary);
  background: var(--white);
  outline: none; transition: border-color .15s;
}
.form-input:focus, .form-select:focus { border-color: var(--orange); }
.form-input::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: #fff; border: none;
  border-radius: var(--r-md); cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 1.25rem;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-submit svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }
.form-guarantee {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: .875rem; justify-content: center;
}
.form-guarantee svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
}
.footer-main {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; }
.footer-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links li a {
  font-size: 0.875rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .15s;
}
.footer-links li a:hover { color: var(--orange); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,.3); }
.footer-markets { font-size: 0.8rem; color: rgba(255,255,255,.25); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(27,79,216,.35);
}
.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cta-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .nav-cta {
    display: inline-flex;
    order: 2;
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 199;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a:not(.btn) {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    width: 100%;
  }
  .nav-links a:not(.btn):last-of-type {
    border-bottom: none;
  }
}
@media (max-width: 680px) {
  .hero { padding: 3.5rem 0 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .proof-bar-inner { gap: 1.5rem; }
  .proof-divider { display: none; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .audit-form {
    padding: 1.5rem;
  }
  .service-detail-card {
    padding: 2.25rem 1.5rem;
  }
  .contact-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .contact-card svg {
    width: 36px;
    height: 36px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .pricing-custom-card {
    padding: 2.5rem 1.25rem;
    margin-bottom: 2rem;
  }
  .btn-pricing {
    font-size: 0.9rem;
    padding: 12px 20px;
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .logo-wordmark {
    font-size: 1.25rem;
  }
  .nav-cta {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp .7s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-content > *:nth-child(1){animation-delay:.05s}
.hero-content > *:nth-child(2){animation-delay:.15s}
.hero-content > *:nth-child(3){animation-delay:.25s}
.hero-content > *:nth-child(4){animation-delay:.35s}
.hero-content > *:nth-child(5){animation-delay:.45s}

.hero-visual {
  opacity: 0;
  animation: fadeUp .8s .3s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── CONTACT CHOICE MODAL ── */
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
}
.modal-container {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(27, 79, 216, 0.15);
  padding: 2.5rem 2rem;
  z-index: 1001;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--white);
}
.modal.active .modal-container {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 32px; height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: rotate(90deg);
}
.modal-title {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--white);
}
.modal-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 2rem;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-option-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}
.modal-option-btn:hover {
  transform: translateX(4px);
  border-color: rgba(27, 79, 216, 0.3);
}
.modal-option-btn svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.modal-option-btn .btn-text-wrap {
  display: flex;
  flex-direction: column;
}
.modal-option-btn .btn-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.modal-option-btn .btn-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
/* Brand Specific Option Styles */
.modal-option-btn.whatsapp-opt {
  border-left: 4px solid #25D366;
}
.modal-option-btn.whatsapp-opt:hover {
  background: rgba(37, 211, 102, 0.06);
  border-color: #25D366;
}
.modal-option-btn.whatsapp-opt svg {
  fill: #25D366;
}
.modal-option-btn.email-opt {
  border-left: 4px solid var(--orange);
}
.modal-option-btn.email-opt:hover {
  background: rgba(27, 79, 216, 0.06);
  border-color: var(--orange);
}
.modal-option-btn.email-opt svg {
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.modal-option-btn.form-opt {
  border-left: 4px solid var(--white);
}
.modal-option-btn.form-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
}
.modal-option-btn.form-opt svg {
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* Aux styling for CTA button helper links */
.cta-subtext {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}
.cta-subtext a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}
.cta-subtext a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.cta-subtext span.sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── WHATSAPP HERO & FLOATING BUTTONS ── */
.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #25D366;
  border: 2px solid rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-outline svg {
  width: 20px; height: 20px;
  fill: #25D366;
  transition: transform 0.2s;
}
.btn-whatsapp-outline:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  text-decoration: none;
}
.btn-whatsapp-outline:hover svg {
  transform: scale(1.1);
}

/* ── WHATSAPP FLOAT WIDGET ── */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}
.whatsapp-tooltip {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border-left: 3px solid #25D366;
  position: relative;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 3px solid #25D366;
  border-bottom: 3px solid #25D366;
}
.whatsapp-widget:hover .whatsapp-tooltip,
.whatsapp-widget.show-tip .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
  color: #fff;
  animation: none;
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


