/* ═══════════════════════════════════════════════════
   INTERSTRATOS NOMAD — Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #050D1A;
  color: #F1F5F9;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }

/* ─── Variables ─────────────────────────────────── */
:root {
  --bg-primary:    #050D1A;
  --bg-secondary:  #0A1628;
  --bg-card:       rgba(255,255,255,0.04);
  --blue:          #4DA2FF;
  --blue-light:    #76BAFF;
  --teal:          #06B6D4;
  --teal-light:    #67E8F9;
  --text-primary:  #F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:    #475569;
  --border:        rgba(255,255,255,0.07);
  --border-blue:   rgba(77,162,255,0.25);
  --glow-blue:     rgba(77,162,255,0.12);
  --glow-teal:     rgba(6,182,212,0.12);
}

/* ─── Background — Orbs ─────────────────────────── */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: orbFade 2s ease forwards;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(77,162,255,0.22) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFade 2s ease forwards, floatA 12s ease-in-out 2s infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  bottom: 10%; left: -200px;
  animation: orbFade 2.5s ease forwards, floatB 14s ease-in-out 2.5s infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,162,255,0.12) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: orbFade 3s ease forwards, floatC 10s ease-in-out 3s infinite;
}
@keyframes orbFade { to { opacity: 1; } }
@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-40px, 60px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(50px, -40px); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-30px, 50px); }
}

/* ─── Background — Grid ─────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,162,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,162,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* ─── Layout ─────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; }

/* ─── Gradient text ──────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #76BAFF 0%, #4DA2FF 40%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  color: #fff;
  box-shadow: 0 0 30px rgba(77,162,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(77,162,255,0.55);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-blue);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--border-blue);
}
.btn-outline:hover {
  background: var(--glow-blue);
  transform: translateY(-2px);
}

/* ─── Section headings ───────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(77,162,255,0.1);
  border: 1px solid rgba(77,162,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img  { height: 56px; width: auto; display: block; }
.footer-logo img { height: 48px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.lang-switcher-mobile { margin-top: 8px; align-self: flex-start; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-primary); }
.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  color: #fff;
  box-shadow: 0 0 24px rgba(77,162,255,0.35);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.badge svg { color: var(--blue); flex-shrink: 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-social-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.avatars { display: flex; }
.avatars div {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}
.avatars div:first-child { margin-left: 0; }
.social-proof-text { font-size: 0.88rem; color: var(--text-secondary); }
.social-proof-text strong { color: var(--text-primary); }

/* Hero — Visual card */
.hero-visual { position: relative; }
.hero-card-main {
  background: rgba(10,22,40,0.8);
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(77,162,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.6), transparent);
}
.floating-badge {
  position: absolute;
  top: -16px; right: 24px;
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(77,162,255,0.4);
  white-space: nowrap;
}

/* Stat row */
.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.stat-box {
  flex: 1;
  background: rgba(77,162,255,0.06);
  border: 1px solid rgba(77,162,255,0.15);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.stat-box .num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #76BAFF, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .lbl {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* LLC Checklist card */
.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hc-title-block { display: flex; align-items: center; gap: 12px; }
.hc-emoji {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(77,162,255,0.1);
  border: 1px solid rgba(77,162,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hc-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.hc-state { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.hc-expert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 20px;
}
.expert-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.expert-info { flex: 1; }
.expert-info .el { font-size: 0.7rem; color: var(--text-muted); }
.expert-info .en { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.hc-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.hc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(12px);
  animation: checkIn 0.4s ease forwards;
}
@keyframes checkIn { to { opacity: 1; transform: translateX(0); } }
.hc-check.done    { background: rgba(34,197,94,0.05);  border-color: rgba(34,197,94,0.15); }
.hc-check.running { background: rgba(77,162,255,0.06); border-color: rgba(77,162,255,0.2); }
.hc-check.pending { background: rgba(255,255,255,0.02); border-color: var(--border); }
.check-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
}
.hc-check.done    .check-dot { background: rgba(34,197,94,0.15);  color: #4ADE80; }
.hc-check.running .check-dot { background: rgba(77,162,255,0.15); color: var(--blue); animation: spin 1.5s linear infinite; }
.hc-check.pending .check-dot { background: rgba(255,255,255,0.05); color: var(--text-muted); }
@keyframes spin { to { transform: rotate(360deg); } }
.check-label { flex: 1; font-size: 0.82rem; font-weight: 500; }
.hc-check.done    .check-label { color: var(--text-primary); }
.hc-check.running .check-label { color: var(--text-primary); }
.hc-check.pending .check-label { color: var(--text-muted); }
.check-tag { font-size: 0.68rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.hc-check.done    .check-tag { background: rgba(34,197,94,0.12);  color: #4ADE80; }
.hc-check.running .check-tag { background: rgba(77,162,255,0.12); color: var(--blue-light); }
.hc-check.pending .check-tag { background: rgba(255,255,255,0.04); color: var(--text-muted); }

/* Pills */
.pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.pill-green {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ADE80;
}
.pill-blue {
  background: rgba(77,162,255,0.1);
  border: 1px solid rgba(77,162,255,0.25);
  color: var(--blue-light);
}

/* ═══════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════ */
.partners {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(77,162,255,0.02);
}
.partners-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.partners-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.partner-logo-main {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  position: relative;
}
.partner-logo-main::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.partner-logo-main:hover { color: var(--text-primary); }
.partner-logo-main:hover::after { transform: scaleX(1); }
.partners-divider { width: 1px; height: 32px; background: var(--border); }
.partners-more {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════
   WHY LLC
   ═══════════════════════════════════════════════════ */
.why-llc { padding: 120px 0; }
.why-llc-header { text-align: center; margin-bottom: 72px; }
.why-llc-header .section-subtitle { margin: 0 auto; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77,162,255,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(77,162,255,0.08);
}
.benefit-card:hover::after { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(77,162,255,0.1);
  border: 1px solid rgba(77,162,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.benefit-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.benefit-desc  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════════════ */
.offers {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(77,162,255,0.03) 50%, transparent);
}
.offers-header { text-align: center; margin-bottom: 64px; }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.offer-card {
  background: rgba(10,22,40,0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.offer-card:hover { border-color: var(--border-blue); transform: translateY(-6px); box-shadow: 0 30px 70px rgba(77,162,255,0.12); }
.offer-card:hover::before { opacity: 1; }
.offer-card.featured { border-color: rgba(77,162,255,0.4); background: rgba(77,162,255,0.06); }
.offer-card.featured::before { opacity: 1; }
.offer-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(77,162,255,0.1);
  border: 1px solid rgba(77,162,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
}
.offer-title  { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.offer-desc   { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.offer-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.offer-features li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
.process { padding: 120px 0; }
.process-header { text-align: center; margin-bottom: 80px; }
.steps-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.3) 20%, rgba(6,182,212,0.3) 80%, transparent);
  z-index: 0;
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(77,162,255,0.08);
}
.step-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-desc  { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(6,182,212,0.03) 50%, transparent);
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: rgba(10,22,40,0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.5), transparent);
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-blue); box-shadow: 0 20px 50px rgba(77,162,255,0.1); }
.pricing-card.popular { border-color: rgba(77,162,255,0.5); background: rgba(77,162,255,0.07); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4DA2FF, #06B6D4);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
}
.pc-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.pc-name  { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.pc-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 24px; min-height: 52px; }
.pc-price { margin-bottom: 8px; }
.pc-price .amount {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #F1F5F9, #76BAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-price .currency {
  font-size: 1.2rem; font-weight: 700; vertical-align: super;
  color: var(--text-secondary); -webkit-text-fill-color: initial;
}
.pc-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pc-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px;
}
.pc-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.82rem; color: var(--text-secondary); line-height: 1.45; }
.pc-features li svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.pc-features li.muted { color: var(--text-muted); }
.pc-features li.muted svg { color: var(--text-muted); }
.pricing-note { text-align: center; margin-top: 40px; font-size: 0.82rem; color: var(--text-muted); }

/* Consultation block */
.consultation-block {
  margin-top: 40px;
  background: rgba(10,22,40,0.6);
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  padding: 40px 48px;
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.consultation-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.5) 40%, rgba(6,182,212,0.5) 60%, transparent);
}
.consultation-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(77,162,255,0.06), transparent 60%);
  pointer-events: none;
}
.consult-left { position: relative; z-index: 1; }
.consult-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.consult-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.consult-desc  { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; max-width: 560px; }
.consult-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.consult-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 500; padding: 7px 14px;
  border-radius: 100px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); color: var(--text-secondary);
}
.consult-pill .free-tag {
  font-size: 0.7rem; font-weight: 700; color: #4ADE80;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  padding: 2px 8px; border-radius: 100px;
}
.consult-right { text-align: center; position: relative; z-index: 1; flex-shrink: 0; }
.consult-price-box {
  background: rgba(77,162,255,0.07);
  border: 1px solid rgba(77,162,255,0.25);
  border-radius: 20px;
  padding: 28px 36px;
  min-width: 200px;
}
.consult-price-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.consult-price-amount {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #F1F5F9, #76BAFF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 4px;
}
.consult-price-sub { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq { padding: 120px 0; }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-blue); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--text-primary);
  user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: var(--blue-light); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s ease; color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7;
}
.faq-answer-inner { padding: 0 24px 20px; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════ */
.cta-final { padding: 140px 0; }
.cta-box {
  background: rgba(10,22,40,0.8);
  border: 1px solid var(--border-blue);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,162,255,0.6) 40%, rgba(6,182,212,0.6) 60%, transparent);
}
.cta-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(77,162,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px; position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 60px 0 40px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--text-secondary);
  line-height: 1.7; margin-top: 12px; max-width: 280px;
}
.footer-group-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.footer-group-logo img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-group-logo:hover img { opacity: 1; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
  border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-secondary); }
.disclaimer {
  margin-top: 16px; font-size: 0.75rem; color: var(--text-muted);
  text-align: center; line-height: 1.6; padding-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid       { grid-template-columns: repeat(2, 1fr); }
  .consultation-block { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .hero-visual        { display: none; }
  .hero-inner         { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-eyebrow       { margin-bottom: 24px; }
  .hero-subtitle      { max-width: 640px; }
  .hero-badges        { justify-content: center; }
  .hero-actions       { justify-content: center; }
  .hero-social-proof  { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .hamburger             { display: flex; }
  .hero-inner            { gap: 48px; }
  .offers-grid           { grid-template-columns: 1fr; }
  .steps-track           { flex-direction: column; align-items: center; }
  .steps-track::before   { display: none; }
  .step                  { max-width: 240px; }
  .pricing-grid          { grid-template-columns: 1fr; }
  .faq-grid              { grid-template-columns: 1fr; }
  .cta-box               { padding: 48px 24px; }
  .footer-inner          { grid-template-columns: 1fr; }
  .benefits-grid         { grid-template-columns: 1fr; }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .consultation-block    { padding: 28px 24px; }
  .consult-right         { text-align: left; }
  .consult-price-box     { min-width: 0; }
}
@media (max-width: 480px) {
  .hero-badges          { flex-direction: column; align-items: center; }
  .hero-actions         { flex-direction: column; }
  .hero-actions .btn    { width: 100%; justify-content: center; }
}

.footer-group-link {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-group-link:hover { color: var(--text-secondary); }

/* ─── Google Translate ───────────────────────────── */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 6px;
  position: relative;
  z-index: 200;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  color: var(--text-primary);
  background: rgba(77,162,255,0.15);
}
.lang-sep { color: var(--border); font-size: 0.75rem; pointer-events: none; }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOTTANT
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  animation: waFloat 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
  animation-play-state: paused;
}
@keyframes waFloat {
  0%,  100% { transform: translateY(0px);  }
  30%        { transform: translateY(-7px); }
  60%        { transform: translateY(-3px); }
}
