/* =========================================================================
   StatusEC — Shared Design System
   -------------------------------------------------------------------------
   Este archivo contiene todas las variables, tipografías, componentes
   reutilizables y layouts para TODAS las páginas de statusec.com.
   
   Importar con:
   <link rel="stylesheet" href="/statusec-shared.css">
   
   NO DUPLICAR estos estilos en páginas individuales.
   Extender con <style> local solo para elementos únicos de esa página.
   ========================================================================= */

/* ============== DESIGN TOKENS ============== */
:root {
  /* Navy palette */
  --navy: #0d0b3e;
  --navy-deep: #08062e;
  --navy-light: #1a1464;
  --blue-accent: #2d28a3;

  /* Greens */
  --green: #4CAF50;
  --green-brand: #7bc142;
  --green-dark: #6db538;
  --lime: #c8f7a0;
  --lime-soft: #e8fdd4;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f1f5;
  --gray-200: #e2e4ea;
  --gray-400: #9498a8;
  --gray-600: #5a5e72;
  --gray-800: #2d3044;

  /* Semantic */
  --success: #4CAF50;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,11,62,0.06);
  --shadow-md: 0 8px 30px rgba(13,11,62,0.1);
  --shadow-lg: 0 20px 60px rgba(13,11,62,0.15);
  --shadow-xl: 0 30px 80px rgba(13,11,62,0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
}

/* ============== RESET ============== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============== LAYOUT ============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 680px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,11,62,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--navy);
}
.nav-dropdown-menu a .item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-top: 2px;
}

.nav-cta {
  background: var(--green-brand) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123,193,66,0.4);
}

.nav-login {
  color: var(--gray-800) !important;
  font-weight: 600 !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-brand);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(123,193,66,0.3);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(123,193,66,0.45);
  background: var(--green-dark);
}
.btn-primary svg { width: 22px; height: 22px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-secondary-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-brand);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 10px; }
.btn-ghost::after { content: '→'; font-size: 1.1rem; }

/* ============== HERO (genérico, reusable) ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(123,193,66,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,40,163,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-dots {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(123,193,66,0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.hero-dots-1 { top: 60px; right: -40px; }
.hero-dots-2 { bottom: 40px; left: -60px; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-inner-single {
  display: block;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,193,66,0.12);
  border: 1px solid rgba(123,193,66,0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--lime);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(123,193,66,0.2);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-inner-single .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-inner-single .hero-stats { justify-content: center; }
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--lime);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-inner-single .hero-actions { justify-content: center; }

/* Hero right visual (generic placeholder box) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
}

/* ============== BREADCRUMBS ============== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumbs a:hover { color: var(--green-brand); }
.breadcrumbs span.sep { color: var(--gray-400); }
.breadcrumbs span.current { color: var(--navy); font-weight: 600; }

/* ============== CARDS (reusables) ============== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123,193,66,0.3);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--lime-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-brand);
}
.feature-title {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc {
  color: var(--gray-600);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Card variant: dark background */
.feature-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.feature-card-dark .feature-title { color: var(--white); }
.feature-card-dark .feature-desc { color: rgba(255,255,255,0.7); }
.feature-card-dark:hover {
  border-color: rgba(123,193,66,0.4);
  background: rgba(255,255,255,0.06);
}

/* ============== PAIN POINTS ============== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pain-card {
  background: var(--white);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(239,68,68,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.pain-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pain-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.pain-stat {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
  font-size: 0.85rem;
  color: var(--danger);
  font-weight: 600;
}

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step {
  position: relative;
  padding-top: 16px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-brand);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(123,193,66,0.3);
}
.step-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============== ROI / STATS ============== */
.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123,193,66,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-highlight {
  position: relative;
  z-index: 1;
}
.stat-highlight-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-highlight-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ============== LOPDP URGENCY BANNER ============== */
.lopdp-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 48px 0;
}
.lopdp-banner-icon {
  font-size: 2.5rem;
}
.lopdp-banner-title {
  font-size: 1.2rem;
  color: #78350f;
  margin-bottom: 4px;
}
.lopdp-banner-desc {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.5;
}
.lopdp-banner-cta {
  background: #78350f;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s;
}
.lopdp-banner-cta:hover { transform: translateY(-2px); }

/* ============== FAQ ============== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active {
  border-color: var(--green-brand);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-brand);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============== CTA FINAL ============== */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(123,193,66,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.cta-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--white);
}
.cta-final p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--green-brand); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-brand); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--green-brand); }

/* ============== WHATSAPP FLOATING ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float-label {
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-md);
}
.wa-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float-btn:hover { transform: scale(1.08); }
.wa-float-btn svg { width: 30px; height: 30px; }
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.text-green { color: var(--green-brand); }
.text-navy { color: var(--navy); }
.text-gray { color: var(--gray-600); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-desc { color: rgba(255,255,255,0.75); }

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lime-soft);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-content { padding: 40px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.6rem; }

  .stats-highlight {
    padding: 48px 24px;
  }
  .stat-highlight-num { font-size: 2.2rem; }

  .lopdp-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-primary, .btn-secondary, .btn-secondary-dark {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ============== PRINT ============== */
@media print {
  .nav, .wa-float, .cta-final, .footer { display: none; }
  body { color: black; background: white; }
}
