/* ================================================
   CatchAI — Styles v3.0
   Brand: Dark premium tech · Outfit font
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0B0E14;
  --bg-2:         #0F1319;
  --bg-3:         #131820;
  --surface:      #161C26;
  --surface-2:    #1C2333;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(43,107,243,0.4);
  --ink:          #F0F2F7;
  --muted:        #6B7280;
  --muted-2:      #9CA3AF;
  --accent:       #2B6BF3;
  --accent-2:     #1A4FD0;
  --accent-glow:  rgba(43,107,243,0.15);
  --accent-light: rgba(43,107,243,0.1);
  --sans:         'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(11,14,20,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(11,14,20,0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  border-bottom-color: rgba(43,107,243,0.2);
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 42px; width: auto;
  filter: brightness(1);
  transition: opacity 0.2s;
}
.logo-link:hover .logo-img { opacity: 0.85; }
.nav-links {
  display: flex; gap: 8px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--muted);
  text-decoration: none; padding: 6px 14px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-cta {
  font-size: 14px; font-weight: 500; color: white;
  background: var(--accent); text-decoration: none;
  padding: 11px 26px; border-radius: 9px; margin-left: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 101;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: 0.3s; }

/* Mobile nav dropdown */
.nav-mobile-open {
  position: fixed;
  top: 88px;
  left: 0; right: 0;
  background: rgba(11,14,20,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  padding: 16px 20px 24px;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.nav-mobile-open li { width: 100%; }
.nav-mobile-open a {
  display: block; width: 100%;
  font-size: 16px; padding: 12px 16px;
  border-radius: 8px;
}
.nav-mobile-open .nav-cta {
  margin: 8px 0 0; width: 100%; text-align: center;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(43,107,243,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,107,243,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; z-index: 0;
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(43,107,243,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--accent); background: var(--accent-light);
  border: 1px solid rgba(43,107,243,0.2);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 36px;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.hero-title {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 28px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--muted-2); line-height: 1.75;
  max-width: 600px; margin: 0 auto 44px; font-weight: 300;
}
.hero-actions { margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: var(--surface); max-width: 540px; margin: 0 auto;
}
.hstat {
  flex: 1; padding: 20px 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hstat-num {
  font-size: 32px; font-weight: 700; color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.hstat-label { font-size: 12px; color: var(--muted); font-weight: 400; text-align: center; }
.hstat-div { width: 1px; align-self: stretch; background: var(--border); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--accent); color: white;
  font-size: 15px; font-weight: 600; text-decoration: none;
  padding: 14px 32px; border-radius: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(43,107,243,0.25);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(43,107,243,0.35);
}
.btn-large { font-size: 17px; padding: 18px 48px; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(240,242,247,0.7); font-size: 15px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(240,242,247,0.2);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { color: var(--ink); border-color: var(--accent); }

/* ── SECTIONS ── */
.section { padding: 112px 0; }
.section-dark { background: var(--bg-2); }
.section-subtle { background: var(--bg-3); }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.section-head { margin-bottom: 64px; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label.light { color: var(--accent); }
.section-title {
  font-size: clamp(36px, 4vw, 56px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 16px;
}
.section-title.light { color: var(--ink); }
.accent { color: var(--accent); }
.section-sub {
  font-size: 17px; color: var(--muted-2); max-width: 480px;
  line-height: 1.7; font-weight: 300;
}
.section-sub.light { color: rgba(240,242,247,0.55); }
.section-cta { margin-top: 56px; }

/* ── CARDS 3-col ── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 32px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43,107,243,0.08);
}
.card-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.card h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.card p { font-size: 15px; color: var(--muted-2); line-height: 1.7; margin-bottom: 20px; }
.card-list { list-style: none; }
.card-list li {
  font-size: 14px; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* ── CONSULTORÍA ── */
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.consult-body {
  font-size: 16px; color: var(--muted-2); line-height: 1.75;
  font-weight: 300; margin: 16px 0 36px;
}
.consult-right { display: flex; flex-direction: column; gap: 20px; }
.consult-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 32px;
}
.consult-box h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.check-list { list-style: none; }
.check-list li {
  font-size: 15px; color: var(--muted-2); padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ── PROCESO ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.process-step {
  background: var(--surface); padding: 32px 28px;
  transition: background 0.2s;
}
.process-step:hover { background: var(--surface-2); }
.pstep-num {
  font-size: 36px; font-weight: 700; color: rgba(43,107,243,0.25);
  line-height: 1; margin-bottom: 14px; letter-spacing: -0.03em;
}
.process-step-inf .pstep-num { color: rgba(43,107,243,0.15); }
.pstep-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pstep-body { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── AGENTES ── */
.agents-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.agent-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 26px;
  text-decoration: none; color: inherit; display: block;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.agent-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43,107,243,0.1);
}
.agent-emoji { font-size: 26px; margin-bottom: 18px; display: block; }
.agent-role {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.agent-name {
  font-size: 22px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.agent-desc { font-size: 14px; color: var(--muted-2); line-height: 1.65; margin-bottom: 16px; }
.agent-feats { list-style: none; }
.agent-feats li {
  font-size: 13px; color: var(--muted); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.agent-feats li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 11px; }

/* ── BENEFICIOS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s;
}
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.ben-icon { font-size: 24px; margin-bottom: 16px; display: block; }
.benefit-card h4 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.benefit-card p { font-size: 15px; color: var(--muted-2); line-height: 1.65; }

/* ── PLANES ── */
.plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 28px; position: relative;
  display: flex; flex-direction: column;
}
.plan-card.plan-featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(43,107,243,0.08) 0%, var(--surface) 60%);
  box-shadow: 0 0 0 1px rgba(43,107,243,0.3), 0 16px 48px rgba(43,107,243,0.1);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.plan-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em; }
.plan-list { list-style: none; flex: 1; margin-bottom: 28px; }
.plan-list li {
  font-size: 14px; color: var(--muted-2); padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.plan-card.plan-featured .plan-list li { border-color: rgba(43,107,243,0.1); }
.plan-list li:last-child { border-bottom: none; }
.plan-list li::before { content: '→'; color: var(--accent); font-size: 11px; flex-shrink: 0; }
.plan-btn {
  display: block; text-align: center; padding: 12px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border);
  color: var(--muted-2); background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.plan-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn-accent {
  background: var(--accent); color: white; border-color: var(--accent);
}
.plan-btn-accent:hover { background: var(--accent-2); color: white; border-color: var(--accent-2); }

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; font-family: var(--sans); font-size: 16px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--muted);
  flex-shrink: 0; transition: transform 0.3s, background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 160px; }
.faq-a p { font-size: 16px; color: var(--muted-2); line-height: 1.7; padding-bottom: 24px; }

/* ── FOUNDERS ── */
.founders-grid { display: flex; flex-direction: column; gap: 24px; }
.founder-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 44px;
  transition: border-color 0.25s, box-shadow 0.25s; align-items: start;
}
.founder-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(43,107,243,0.07);
}
.founder-photo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 2px solid rgba(43,107,243,0.2);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.founder-card:hover .founder-photo {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(43,107,243,0.1);
}
.founder-name { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.founder-role { font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 18px; }
.founder-bio { font-size: 15px; color: var(--muted-2); line-height: 1.75; font-weight: 300; margin-bottom: 10px; }
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.founder-tags span {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--accent); background: var(--accent-light);
  border: 1px solid rgba(43,107,243,0.2);
  padding: 4px 12px; border-radius: 100px;
}

/* ── CTA FINAL ── */
.cta-final-section { text-align: center; }
.cta-final-inner { max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(40px,5vw,60px); }
.cta-final-sub {
  font-size: 17px; color: var(--muted-2); font-weight: 300;
  line-height: 1.7; margin: 20px 0 48px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
  margin-bottom: 48px;
}
.footer-logo-img { height: 22px; width: auto; margin-bottom: 14px; opacity: 0.7; }
.footer-brand p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-col p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.footer-bottom {
  max-width: 1140px; margin: 0 auto; padding: 24px 48px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 13px; color: var(--muted); }
.footer-bottom a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 72px 0; }
  .section-inner { padding: 0 24px; }
  .cards-3 { grid-template-columns: 1fr; }
  .consult-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .founder-photo { width: 80px; height: 80px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 24px 0; text-align: center; }
  .hero-stats { flex-direction: column; max-width: 280px; }
  .hstat-div { width: 100%; height: 1px; }
}

/* ── WHITE SECTIONS ── */
.section-white { background: #FFFFFF; }
.section-white .section-title { color: #111318; }
.section-white .section-sub   { color: #6B7280; }
.section-white .section-label { color: var(--accent); }
.section-white .card { background: #F4F6FB; border-color: #E5E8EF; }
.section-white .card:hover { border-color: rgba(43,107,243,0.4); box-shadow: 0 12px 40px rgba(43,107,243,0.08); }
.section-white .card h3 { color: #111318; }
.section-white .card p  { color: #6B7280; }
.section-white .card-list li { color: #6B7280; border-color: #E5E8EF; }
.section-white .benefit-card { background: #F4F6FB; border-color: #E5E8EF; }
.section-white .benefit-card:hover { border-color: rgba(43,107,243,0.35); box-shadow: 0 8px 32px rgba(43,107,243,0.07); }
.section-white .benefit-card h4 { color: #111318; }
.section-white .benefit-card p  { color: #6B7280; }
.section-white .agent-card { background: #F4F6FB; border-color: #E5E8EF; color: #111318; }
.section-white .agent-card:hover { border-color: rgba(43,107,243,0.4); box-shadow: 0 12px 40px rgba(43,107,243,0.08); }
.section-white .agent-name { color: #111318; }
.section-white .agent-desc { color: #6B7280; }
.section-white .agent-feats li { color: #6B7280; }
.section-white .process-grid { background: #E5E8EF; border-color: #E5E8EF; }
.section-white .process-step { background: #F4F6FB; }
.section-white .process-step:hover { background: #EBF0FA; }
.section-white .pstep-title { color: #111318; }
.section-white .pstep-body  { color: #6B7280; }
.section-white .faq-list .faq-item { border-color: #E5E8EF; }
.section-white .faq-q { color: #111318; }
.section-white .faq-a p { color: #6B7280; }
.section-white .faq-icon { border-color: #E5E8EF; color: #9CA3AF; }
.section-white .founder-card { background: #F4F6FB; border-color: #E5E8EF; }
.section-white .founder-card:hover { border-color: rgba(43,107,243,0.3); box-shadow: 0 8px 40px rgba(43,107,243,0.07); }
.section-white .founder-name { color: #111318; }
.section-white .founder-bio  { color: #6B7280; }
.section-white .section-cta .btn-primary { box-shadow: 0 4px 24px rgba(43,107,243,0.3); }

/* ── WhatsApp Floating Button ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}
