/* ═══════════════════════════════════════════════════════════
   VANTIO — Premium Static Site
   Archetype 04: Glassmorphism Modern
   Palette: Navy #0A1931 · Indigo #3F46D6 · White
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A1931;
  --indigo:  #3F46D6;
  --indigo2: #5560e8;
  --white:   #ffffff;
  --slate:   #64748b;
  --light:   #f8fafc;
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-bg-light: rgba(255,255,255,0.85);
  --glass-border-light: rgba(63,70,214,0.15);
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 8px 32px rgba(10,25,49,0.25);
  --transition: 0.35s cubic-bezier(0.16,1,0.3,1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section base ─────────────────────────────────────────── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(2rem,4vw,2.75rem); color: var(--navy); }
.section-sub { margin-top: 8px; color: var(--slate); font-size: 0.95rem; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(99,130,255,0.9); }

/* ── Text helpers ─────────────────────────────────────────── */
.text-white { color: var(--white) !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(63,70,214,0.4);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--indigo2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(63,70,214,0.55);
  }
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (hover: hover) {
  .btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
  }
}
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
@media (hover: hover) {
  .btn-outline:hover {
    background: var(--indigo);
    color: white;
    transform: translateY(-2px);
  }
}
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

/* ── Glass Card ──────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(10,25,49,0.08);
}

/* Glass cards in dark sections */
.how-dark .glass-card,
.solutions-dark .glass-card,
.hero .glass-card,
.cta-banner .glass-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: #e2e8f0;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4, .reveal-d5 {
    opacity: 1; transform: none; transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,25,49,0.08);
  box-shadow: 0 2px 20px rgba(10,25,49,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav.scrolled .nav-links a { color: var(--navy); }
@media (hover: hover) {
  .nav-links a:hover { color: var(--indigo); }
  .nav.scrolled .nav-links a:hover { color: var(--indigo); }
}
.nav-cta {
  background: var(--indigo) !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(63,70,214,0.35);
}
@media (hover: hover) {
  .nav-cta:hover { background: var(--indigo2) !important; }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background var(--transition), transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(10,25,49,0.12);
    border-top: 1px solid rgba(10,25,49,0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: var(--navy);
    padding: 12px 0;
    border-bottom: 1px solid rgba(10,25,49,0.06);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-radius: 50px !important;
    border-bottom: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 68px;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(63,70,214,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(99,102,241,0.2) 0%, transparent 60%);
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(63,70,214,0.25);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: rgba(99,130,255,0.18);
  bottom: 10%; left: -80px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.orb-3 {
  width: 250px; height: 250px;
  background: rgba(139,92,246,0.15);
  top: 50%; left: 40%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-h1 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 860px;
  text-align: center;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #818cf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 600px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 560px;
}
.stat-card {
  padding: 20px 18px;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
}
.stat-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(129,140,248,0.9);
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.3;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.br-md { display: none; }
@media (min-width: 640px) { .br-md { display: block; } }

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .stat-num { font-size: 1.5rem; }
  .hero-h1 { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.trust-marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: color 0.3s;
}
@media (hover: hover) {
  .trust-item:hover { color: rgba(255,255,255,0.7); }
}

/* ═══════════════════════════════════════════════════════════
   SOLVE
   ═══════════════════════════════════════════════════════════ */
.solve { background: var(--light); }
.solve .section-header h2 { color: var(--navy); }

.solve-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  row-gap: 32px;
}
.solve-card {
  padding: 28px 24px;
}
.solve-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}
.solve-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }
.solve-icon { font-size: 2rem; }
.solve-arrow {
  font-size: 1.5rem;
  color: var(--indigo);
  text-align: center;
  font-weight: 700;
}
.solve-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.solve-tag-bad { background: rgba(239,68,68,0.1); color: #ef4444; }
.solve-tag-good { background: rgba(16,185,129,0.1); color: #10b981; }
.solve-card-good { border-color: rgba(16,185,129,0.25); }

@media (max-width: 860px) {
  .solve-grid { grid-template-columns: 1fr; }
  .solve-arrow { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS (DARK)
   ═══════════════════════════════════════════════════════════ */
.how-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.how-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(63,70,214,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.how-dark .section-header h2 { color: white; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(63,70,214,0.5);
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 12px;
}
.step-card > p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 16px; }
.step-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.step-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--indigo);
}
.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
}
.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), rgba(63,70,214,0.3));
  position: relative;
}
.connector-line::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(63,70,214,0.5);
}

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.showcase { background: var(--light); }
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.showcase-copy h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); color: var(--navy); margin-bottom: 16px; }
.showcase-copy > p { color: var(--slate); line-height: 1.7; margin-bottom: 24px; }
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(10,25,49,0.06);
}
.showcase-list li:last-child { border-bottom: none; }

/* Dashboard mockup */
.dashboard-mockup { padding: 24px; overflow: hidden; }
.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.db-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.db-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}
.live-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.db-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.db-metric { text-align: center; }
.db-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
}
.db-metric-label { font-size: 0.7rem; color: var(--slate); }

.db-chart {
  height: 80px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.db-chart svg { width: 100%; height: 100%; }

.db-conv-list { display: flex; flex-direction: column; gap: 10px; }
.db-conv-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(10,25,49,0.04);
  border-radius: 8px;
}
.db-conv-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: #10b981; }
.dot-blue  { background: #3b82f6; }
.dot-purple{ background: #8b5cf6; }
.db-conv-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.db-conv-status { font-size: 0.75rem; color: var(--slate); text-align: right; }
.db-conv-time { font-size: 0.7rem; color: rgba(100,116,139,0.6); white-space: nowrap; }

@media (max-width: 860px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.whatsapp-section { background: var(--navy); overflow: hidden; }
.whatsapp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone */
.phone-mockup { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.phone-frame {
  width: 280px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 20px 16px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.phone-notch {
  width: 90px; height: 12px;
  background: #1a1a2e;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}
.phone-screen { background: #f0f0f0; border-radius: 20px; overflow: hidden; }
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #075e54;
  padding: 10px 14px;
}
.chat-avatar {
  width: 36px; height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.chat-name { font-size: 0.82rem; font-weight: 600; color: white; }
.chat-status { font-size: 0.68rem; color: rgba(255,255,255,0.7); }

.chat-messages {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  background: #ece5dd;
}
.msg {
  max-width: 84%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.45;
  position: relative;
}
.msg-in {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
  color: #1a1a1a;
}
.msg-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
  color: #1a1a1a;
}
.msg-typing {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
}
.msg-typing span {
  width: 6px; height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

.phone-caption { text-align: center; }
.phone-caption p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.phone-caption-stat { color: #10b981 !important; font-weight: 700 !important; margin-top: 4px; }

/* WhatsApp copy */
.whatsapp-copy h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); color: white; margin-bottom: 16px; }
.whatsapp-copy > p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }
.wa-results { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.wa-result-item { padding: 20px; text-align: center; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.wa-result-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}
.wa-result-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.wa-client { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-style: italic; }

@media (max-width: 860px) {
  .whatsapp-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-frame { width: 100%; max-width: 300px; }
}

/* ═══════════════════════════════════════════════════════════
   CASES
   ═══════════════════════════════════════════════════════════ */
.cases { background: var(--light); }
.cases .section-header h2 { color: var(--navy); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.case-card { padding: 32px 28px; }
.case-client {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.case-industry { font-size: 0.78rem; color: var(--slate); margin-bottom: 20px; }
.case-card blockquote {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  border-left: 3px solid var(--indigo);
  padding-left: 16px;
}
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-metric { text-align: center; background: rgba(10,25,49,0.04); padding: 14px; border-radius: 10px; }
.case-metric-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--indigo);
  margin-bottom: 4px;
}
.case-metric span:last-child { font-size: 0.72rem; color: var(--slate); }

@media (max-width: 860px) { .cases-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   INDUSTRY SOLUTIONS (DARK)
   ═══════════════════════════════════════════════════════════ */
.solutions-dark {
  background: #060e1d;
  position: relative;
  overflow: hidden;
}
.solutions-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(63,70,214,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.solutions-dark .section-header h2 { color: white; }

.ind-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ind-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.ind-tab.active,
.ind-tab:focus-visible {
  background: var(--indigo);
  color: white;
  border-color: var(--indigo);
  box-shadow: 0 4px 20px rgba(63,70,214,0.4);
}
@media (hover: hover) {
  .ind-tab:hover { color: white; background: rgba(255,255,255,0.1); }
  .ind-tab.active:hover { background: var(--indigo2); }
}

.ind-panels { position: relative; }
.ind-panel { display: none; }
.ind-panel.active { display: block; }

.ind-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ind-panel-copy h3 { font-size: 1.3rem; color: white; margin-bottom: 14px; }
.ind-panel-copy > p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ind-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.ind-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ind-benefits li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}
.ind-benefits li:last-child { border-bottom: none; }

.ind-example { padding: 20px 24px; margin-top: 24px; }
.ind-example-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo2); margin-bottom: 8px; }
.ind-example p { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-style: italic; }

@media (max-width: 860px) {
  .ind-panel-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   ADDITIONAL SERVICES — grid container
   ═══════════════════════════════════════════════════════════ */
.add-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* old pricing dark styles removed — replaced by pricing-light */

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { background: var(--light); }
.faq .section-header h2 { color: var(--navy); }
.faq-inner .section-header { max-width: 600px; margin-left: auto; margin-right: auto; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(10,25,49,0.1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63,70,214,0.08);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--indigo);
  transition: transform 0.3s, background 0.3s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--indigo);
  color: white;
}
.faq-a {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0;
}
.cta-bg { position: absolute; inset: 0; }
.orb-cta-1 {
  width: 600px; height: 600px;
  background: rgba(63,70,214,0.3);
  top: -200px; right: -200px;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-cta-2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.2);
  bottom: -100px; left: -100px;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2rem,5vw,3.5rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-inner em {
  font-style: italic;
  background: linear-gradient(135deg, #818cf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner > p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-sub {
  margin-top: 16px !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about { background: var(--light); }
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); color: var(--navy); margin-bottom: 20px; }
.about-copy p { color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.pillar-icon { font-size: 1.2rem; }

.about-stats { display: flex; flex-direction: column; gap: 16px; }
.about-stat { padding: 24px 28px; }
.about-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--indigo);
  margin-bottom: 4px;
}
.about-stat-label { font-size: 0.85rem; color: var(--slate); }

@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(2rem,4vw,2.8rem); color: white; margin-bottom: 16px; }
.contact-copy > p { color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
@media (hover: hover) {
  .contact-info-item:hover { color: white; }
}

.contact-form { padding: 36px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(10,25,49,0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(63,70,214,0.1);
}
.input-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important; }
.field-error { font-size: 0.75rem; color: #ef4444; margin-top: 4px; }
.form-group textarea { resize: none; }
.form-submit { width: 100%; justify-content: center; margin-bottom: 12px; }
.form-note { font-size: 0.75rem; color: var(--slate); text-align: center; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #050d1a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-links h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.25s;
}
@media (hover: hover) { .footer-links a:hover { color: white; } }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── WhatsApp Floating Button ────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  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.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  animation: waPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}
@keyframes waPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.wa-fab-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: rgba(10, 25, 49, 0.95);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.wa-fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10, 25, 49, 0.95);
  border-right: none;
}
.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 540px) {
  .wa-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-fab-tooltip { display: none; }
}

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: rgba(10, 25, 49, 0.96);
  border: 1px solid rgba(63, 70, 214, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  padding: 20px 24px;
  animation: cookieSlideUp 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}
.cookie-icon { font-size: 1.4rem; line-height: 1; margin-top: 2px; flex-shrink: 0; }
.cookie-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 4px;
}
.cookie-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.cookie-link { color: #818cf8; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-secondary {
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }
.cookie-btn-primary {
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  background: #3F46D6;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-primary:hover { background: #5560e8; }
@media (max-width: 500px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

/* ── Calendar Modal ──────────────────────────────────────── */
.privacy-overlay.calendar-overlay {
  padding: 12px;
  align-items: flex-end;
}
@media (min-width: 601px) {
  .privacy-overlay.calendar-overlay { align-items: center; padding: 24px; }
}
.calendar-modal {
  background: #0d1f3c;
  border: 1px solid rgba(63, 70, 214, 0.35);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 860px;
  height: 92vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.calendar-modal-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 2px 0 0;
}
.calendar-modal-body {
  flex: 1;
  padding: 0 4px 4px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}
.calendar-popup-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 40px 32px;
  border-radius: 0 0 20px 20px;
}
.calendar-popup-loading,
.calendar-popup-ready {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.calendar-popup-loading p,
.cal-ready-sub {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}
.calendar-spin-icon {
  animation: cal-spin 1s linear infinite;
}
@keyframes cal-spin {
  to { transform: rotate(360deg); }
}
.cal-ready-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.cal-reopen-btn {
  margin-top: 4px;
  padding: 10px 28px;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #6366f1;
  color: #fff;
}
@media (max-width: 600px) {
  .calendar-modal {
    height: 88vh;
    max-height: none;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
  }
  .calendar-modal .privacy-modal-header {
    padding: 16px 18px 12px;
  }
  .calendar-modal-sub { display: none; }
}

/* ── Privacy Policy Modal ────────────────────────────────── */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeInOverlay 0.25s ease both;
}
.privacy-overlay[hidden] { display: none; }
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.privacy-modal {
  background: #0d1f3c;
  border: 1px solid rgba(63, 70, 214, 0.35);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.privacy-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.privacy-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.privacy-close:hover { color: white; background: rgba(255,255,255,0.08); }
.privacy-modal-body {
  overflow-y: auto;
  padding: 24px 28px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(63,70,214,0.4) transparent;
}
.privacy-modal-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 20px 0 8px;
}
.privacy-modal-body h3:first-of-type { margin-top: 0; }
.privacy-modal-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 4px;
}
.privacy-modal-body strong { color: rgba(255,255,255,0.8); }
.privacy-email { color: #818cf8; text-decoration: underline; }
.privacy-modal-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
.privacy-btn-close {
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  background: #3F46D6;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.privacy-btn-close:hover { background: #5560e8; }

/* ═══════════════════════════════════════════════════════════
   NAV LANGUAGE TOGGLE
   ═══════════════════════════════════════════════════════════ */
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav.scrolled .nav-lang-btn {
  border-color: rgba(10,25,49,0.15);
  color: #64748b;
}
@media (hover: hover) {
  .nav-lang-btn:hover { background: rgba(255,255,255,0.1); color: white; }
  .nav.scrolled .nav-lang-btn:hover { background: rgba(10,25,49,0.06); color: var(--navy); }
}
.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-lang-mobile { display: none; }
@media (max-width: 768px) {
  .nav-lang-mobile { display: inline-flex; }
}

/* ═══════════════════════════════════════════════════════════
   ADDITIONAL SERVICES — WHITE CARDS
   ═══════════════════════════════════════════════════════════ */
.add-services { background: #f8fafc; }
.section-sub-dark { margin-top: 8px; color: #64748b; font-size: 0.95rem; }

.add-grid { grid-template-columns: repeat(4,1fr); }

.add-card-white {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .add-card-white:hover {
    box-shadow: 0 8px 32px rgba(10,25,49,0.1);
    border-color: rgba(63,70,214,0.2);
    transform: translateY(-2px);
  }
}
.add-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(63,70,214,0.08);
  color: var(--indigo);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}
@media (hover: hover) {
  .add-card-white:hover .add-icon-wrap {
    background: var(--indigo);
    color: white;
  }
}
.add-card-white h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.add-card-white p { font-size: 0.85rem; color: #64748b; line-height: 1.65; flex-grow: 1; margin-bottom: 20px; }
.add-range-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo); margin-bottom: 4px; }
.add-range-value { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.add-footer-note { text-align: center; color: #94a3b8; font-size: 0.78rem; margin-top: 32px; }

@media (max-width: 1024px) { .add-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 540px)  { .add-grid { grid-template-columns: 1fr !important; } }

/* ═══════════════════════════════════════════════════════════
   PRICING — LIGHT (matching React app)
   ═══════════════════════════════════════════════════════════ */
.pricing-light { background: white; }
.pricing-h2 { font-size: clamp(2rem,4vw,2.75rem); color: var(--navy); }
.pricing-sub { color: #64748b; margin-top: 8px; font-size: 0.95rem; }

.pricing-grid-light {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.price-card-light {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: white;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .price-card-light:hover { border-color: rgba(63,70,214,0.25); }
}
.price-card-featured {
  border: 2px solid var(--indigo) !important;
  box-shadow: 0 20px 60px rgba(63,70,214,0.15) !important;
  position: relative;
}
.pcl-badge-top {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(63,70,214,0.35);
}

.pcl-label { font-size: 0.65rem; font-weight: 800; color: #818cf8; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }
.pcl-label-indigo { color: #6366f1; }
.pcl-name { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.pcl-name-indigo { color: #1e1b4b; }
.pcl-desc { font-size: 0.82rem; color: #64748b; line-height: 1.6; margin-bottom: 24px; }

.pcl-price-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.pcl-price-box-indigo { background: #eef2ff; border: 1px solid #c7d2fe; }
.pcl-price-box-dark { background: #0f172a; }
.pcl-price-main { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.pcl-amount { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--navy); }
.pcl-currency { font-size: 0.85rem; font-weight: 700; color: #64748b; }
.pcl-currency-indigo { color: #6366f1; }
.pcl-price-sub { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #94a3b8; margin-bottom: 6px; }
.pcl-price-sub-indigo { color: #6366f1; }
.pcl-price-sub-light { color: #64748b; }
.pcl-conv { font-size: 0.78rem; color: #94a3b8; }
.pcl-conv-indigo { color: #818cf8; }
.pcl-custom-text { font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: 6px; }

.pcl-features { margin-bottom: 24px; flex-grow: 1; }
.pcl-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(10,25,49,0.06);
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}
.pcl-features li::before { content: '✓'; color: #6366f1; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.pcl-features li:last-child { border-bottom: none; }
.pcl-features-dark li { color: #1e293b; font-weight: 600; }
.pcl-features-dark li::before { color: #4f46e5; }

.pcl-btn { width: 100%; justify-content: center; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.pcl-btn-outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); border-radius: 12px; padding: 14px; }
@media (hover: hover) { .pcl-btn-outline:hover { background: var(--indigo); color: white; } }
.pcl-btn-primary { background: var(--indigo); color: white; border-radius: 12px; padding: 14px; box-shadow: 0 8px 24px rgba(63,70,214,0.3); }
@media (hover: hover) { .pcl-btn-primary:hover { background: var(--indigo2); transform: scale(1.01); } }
.pcl-btn-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); border-radius: 12px; padding: 14px; }
@media (hover: hover) { .pcl-btn-dark:hover { background: var(--navy); color: white; } }

.pricing-excedentes {
  margin-top: 32px;
  padding: 24px 32px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.excedente-item { flex: 1; min-width: 200px; }
.excedente-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #94a3b8; margin-bottom: 4px; }
.excedente-value { font-size: 0.82rem; font-weight: 700; color: #334155; }

@media (max-width: 860px) {
  .pricing-grid-light { grid-template-columns: 1fr; }
  .pricing-excedentes { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   TILT EFFECT (mouse hover on glass cards)
   ═══════════════════════════════════════════════════════════ */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}
