/* ============================================================
   SunoBackup2026 — Landing page
   Paleta oficial (idéntica a la app de escritorio / ui_kit.py)
   ============================================================ */

:root{
  --bg: #1a0b2e;
  --bg-deep: #110720;
  --panel: #241640;
  --panel-soft: rgba(36, 22, 64, 0.6);
  --line: rgba(167, 124, 202, 0.18);

  --purple: #7c3aed;
  --pink: #ec4899;
  --orange: #fb923c;
  --cyan: #22d3ee;
  --green: #34d399;
  --red: #f87171;

  --text: #f5f3ff;
  --muted: #a78bca;

  --grad-main: linear-gradient(135deg, var(--purple), var(--pink));
  --grad-warm: linear-gradient(135deg, var(--pink), var(--orange));
  --grad-cool: linear-gradient(135deg, var(--cyan), var(--purple));
  --grad-go: linear-gradient(135deg, var(--green), var(--cyan));

  --font-display: "Big Shoulders Display", sans-serif;
  --font-tech: "Rajdhani", sans-serif;
  --font-body: "Manrope", sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.16,.84,.32,1);
}

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

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
svg{ width:1em; height:1em; display:block; }

::selection{ background: var(--pink); color: var(--bg); }

/* ---------- grain overlay ---------- */
.grain{
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow{
  position: fixed; top:0; left:0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(124,58,237,.16), transparent 70%);
  transition: opacity .4s;
  opacity: 0;
}
@media (hover: hover){ .cursor-glow.active{ opacity: 1; } }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled{
  background: rgba(17,7,32,.78);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav-inner{
  max-width: var(--container); margin: 0 auto; padding: 18px 24px;
  display:flex; align-items:center; gap: 28px;
}
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-icon{
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-main);
  display:flex; align-items:center; justify-content:center;
  color: white; padding: 7px;
  box-shadow: 0 0 18px rgba(236,72,153,.45);
}
.brand-text{
  font-family: var(--font-tech); font-weight: 700; font-size: 19px;
  letter-spacing: .02em;
}
.brand-year{
  background: var(--grad-warm); -webkit-background-clip:text; background-clip:text;
  color: transparent;
}
.brand-sm .brand-icon{ width:28px; height:28px; }
.brand-sm .brand-text{ font-size:16px; }

.nav-links{ display:flex; gap: 28px; font-family: var(--font-tech); font-weight: 600; font-size: 15px; }
.nav-links a{ color: var(--muted); transition: color .2s; position:relative; }
.nav-links a:hover{ color: var(--text); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px;
  background: var(--grad-main); transition: width .25s var(--ease);
}
.nav-links a:hover::after{ width:100%; }

.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; z-index: 110; }
.nav-burger span{ width:22px; height:2px; background: var(--text); border-radius:2px; transition: transform .25s, opacity .25s; }
.nav-burger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2){ opacity: 0; }
.nav-burger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- language switcher ---------- */
.lang-switch-desktop{ position: relative; }
.lang-current{
  display:flex; align-items:center; gap:6px; background: transparent;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px;
  color: var(--text); font-family: var(--font-tech); font-weight:700; font-size: 13px;
  cursor:pointer; transition: border-color .2s, background .2s;
}
.lang-current:hover{ border-color: var(--cyan); background: rgba(34,211,238,.08); }
.lang-current svg{ width:14px; height:14px; transition: transform .25s; }
.lang-switch-desktop.open .lang-current svg{ transform: rotate(180deg); }
.lang-menu{
  position:absolute; top: calc(100% + 10px); right:0; min-width: 160px;
  background: rgba(17,7,32,.97); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 14px; padding: 6px;
  display:flex; flex-direction:column; gap: 2px;
  opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 18px 40px rgba(0,0,0,.45); z-index: 120;
}
.lang-switch-desktop.open .lang-menu{ opacity:1; visibility:visible; transform: translateY(0); }
.lang-menu .lang-option{
  text-align:left; background:none; border:none; color: var(--muted);
  font-family: var(--font-tech); font-weight:600; font-size: 14px;
  padding: 9px 12px; border-radius: 9px; cursor:pointer; transition: background .15s, color .15s;
}
.lang-menu .lang-option:hover{ background: rgba(124,58,237,.15); color: var(--text); }
.lang-menu .lang-option.active{ color: var(--cyan); background: rgba(34,211,238,.1); }

.lang-switch-mobile{ display:none; flex-direction:column; gap: 8px; margin-top: 14px; align-items:center; }
.lang-switch-mobile-label{ font-size: 20px; opacity:.6; margin-bottom: 4px; }
.lang-switch-mobile .lang-option{
  background: none; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-tech); font-weight:600; font-size: 14px;
  padding: 7px 22px; border-radius: 999px; cursor:pointer; transition: border-color .2s, color .2s;
  min-width: 140px;
}
.lang-switch-mobile .lang-option.active{ border-color: var(--cyan); color: var(--cyan); }

@media (max-width: 680px){
  .lang-switch-desktop{ display:none; }
  .lang-switch-mobile{ display:flex; }
  .nav-links{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: rgba(17,7,32,.97); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 36px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--line); z-index: 105; align-items: center;
  }
  .nav-links.open-mobile{ transform: translateX(0); }
  .nav-links a{ font-size: 20px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family: var(--font-tech); font-weight: 700; letter-spacing: .01em;
  border-radius: 999px; cursor:pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .2s;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-nav{
  padding: 11px 22px; font-size: 14px; color: var(--bg);
  background: var(--grad-go);
  box-shadow: 0 0 0 rgba(52,211,153,0);
}
.btn-nav:hover{ box-shadow: 0 6px 24px rgba(52,211,153,.35); transform: translateY(-1px); }

.btn-primary{
  padding: 16px 30px; font-size: 16px; color: var(--bg);
  background: var(--grad-go);
  box-shadow: 0 8px 30px rgba(52,211,153,.25);
  position: relative; overflow:hidden;
}
.btn-primary::before{
  content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 36px rgba(52,211,153,.4); }
.btn-primary:hover::before{ animation: sheen .9s ease forwards; }
@keyframes sheen{ to{ left: 130%; } }

.btn-ghost{
  padding: 16px 28px; font-size: 16px; color: var(--text);
  background: transparent; border: 1.5px solid var(--line);
}
.btn-ghost:hover{ border-color: var(--pink); background: rgba(236,72,153,.08); transform: translateY(-2px); }

.btn-lg{ padding: 17px 32px; font-size: 16.5px; }
.btn-block{ width:100%; margin-top: 28px; }

/* ============================================================
   SHARED TEXT UTILITIES
   ============================================================ */
.eyebrow{
  font-family: var(--font-tech); font-weight: 700; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  display:flex; align-items:center; gap:9px; margin-bottom: 18px;
}
.eyebrow.center{ justify-content:center; }
.eyebrow-dot{
  width:7px; height:7px; border-radius:50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan); animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(.7);} }

.section-title{
  font-family: var(--font-display); font-weight: 800; line-height: .98;
  font-size: clamp(32px, 4.4vw, 52px); text-transform: uppercase;
  margin-bottom: 18px; letter-spacing: .01em;
}
.section-title.center{ text-align:center; }
.section-sub{
  color: var(--muted); font-size: 17px; max-width: 560px;
}
.section-sub.center{ text-align:center; margin: 0 auto 12px; }

.grad-text{
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  color: transparent; filter: drop-shadow(0 0 28px rgba(236,72,153,.35));
}
.grad-text-sm{
  background: var(--grad-go); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-family: var(--font-tech); font-weight:700;
}

.grad-main{ background: var(--grad-main); }
.grad-warm{ background: var(--grad-warm); }
.grad-cool{ background: var(--grad-cool); }
.grad-go{ background: var(--grad-go); }

/* ============================================================
   LAYOUT
   ============================================================ */
.section{ position: relative; padding: 110px 24px; }
.section-alt{ background: linear-gradient(180deg, transparent, rgba(36,22,64,.45), transparent); }
.section-inner{ max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative; padding: 168px 24px 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 18% -10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(236,72,153,.22), transparent 60%),
    var(--bg);
}
.hero-grid-floor{
  position: absolute; left: 0; right: 0; bottom: -10%; height: 50%;
  background-image:
    linear-gradient(rgba(34,211,238,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,.16) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, black, transparent 85%);
  opacity: .55;
}
.hero-glow{ position:absolute; border-radius:50%; filter: blur(70px); z-index:0; pointer-events:none; }
.hero-glow-1{ width: 420px; height:420px; background: var(--purple); opacity:.25; top:-120px; right:-80px; animation: drift 14s ease-in-out infinite; }
.hero-glow-2{ width: 340px; height:340px; background: var(--cyan); opacity:.16; bottom:-60px; left:-60px; animation: drift 18s ease-in-out infinite reverse; }
@keyframes drift{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(30px,-24px); } }

.hero-inner{
  max-width: var(--container); margin: 0 auto; position: relative; z-index: 2;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center;
}
.hero-title{
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(46px, 7vw, 86px); line-height: .94; letter-spacing: .01em;
  margin-bottom: 26px;
}
.hero-sub{ font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-sub strong{ color: var(--text); }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-microcopy{ margin-top: 16px; font-size: 13.5px; color: var(--muted); font-family: var(--font-tech); letter-spacing: .03em; }

.trust-strip{ display:flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.trust-strip span{
  display:flex; align-items:center; gap:8px; font-family: var(--font-tech);
  font-weight:600; font-size: 14px; color: var(--text);
}
.trust-strip svg{ width:18px; height:18px; color: var(--cyan); }

/* ---------- app mockup ---------- */
.hero-visual{ position: relative; }
.app-mock{
  background: linear-gradient(160deg, var(--panel), var(--bg-deep));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(124,58,237,.18);
  transform: rotate(2deg);
  transition: transform .5s var(--ease);
  overflow: hidden;
}
.hero-visual:hover .app-mock{ transform: rotate(0deg) scale(1.015); }
.app-mock-bar{
  display:flex; align-items:center; gap:10px; padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-tech); font-weight:600; font-size: 14px;
}
.app-mock-icon{ width:22px; height:22px; color: var(--orange); }
.app-mock-status{ margin-left:auto; color: var(--green); font-size: 12px; }
.app-mock-body{ padding: 24px; }
.app-mock-row{ display:flex; gap:14px; margin-bottom: 22px; }
.app-mock-stat{
  flex:1; background: rgba(124,58,237,.1); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px; text-align:center;
}
.app-mock-stat-label{ display:block; font-size:11px; color: var(--muted); text-transform:uppercase; letter-spacing:.08em; margin-bottom:6px; font-family: var(--font-tech); }
.app-mock-stat-value{ font-family: var(--font-display); font-weight:800; font-size: 22px; }
.app-mock-stat-value small{ font-size:11px; font-weight:500; color: var(--muted); font-family: var(--font-body); }

.waveform{ display:flex; align-items:center; justify-content:center; gap:4px; height: 50px; margin-bottom: 22px; }
.waveform span{
  width: 4px; border-radius: 3px; background: var(--grad-cool);
  animation: wave 1.4s ease-in-out infinite;
}
.waveform span:nth-child(odd){ animation-duration: 1.1s; }
.waveform span:nth-child(3n){ background: var(--grad-warm); animation-duration: 1.6s; }
.waveform span:nth-child(1){ animation-delay: -1.2s; } .waveform span:nth-child(2){ animation-delay: -0.9s; }
.waveform span:nth-child(3){ animation-delay: -0.6s; } .waveform span:nth-child(4){ animation-delay: -1.4s; }
.waveform span:nth-child(5){ animation-delay: -0.3s; } .waveform span:nth-child(6){ animation-delay: -1.0s; }
.waveform span:nth-child(7){ animation-delay: -0.7s; } .waveform span:nth-child(8){ animation-delay: -1.5s; }
.waveform span:nth-child(9){ animation-delay: -0.4s; } .waveform span:nth-child(10){ animation-delay: -1.1s; }
.waveform span:nth-child(11){ animation-delay: -0.8s; } .waveform span:nth-child(12){ animation-delay: -0.2s; }
.waveform span:nth-child(13){ animation-delay: -1.3s; } .waveform span:nth-child(14){ animation-delay: -0.5s; }
.waveform span:nth-child(15){ animation-delay: -1.0s; } .waveform span:nth-child(16){ animation-delay: -0.1s; }
.waveform span:nth-child(17){ animation-delay: -0.6s; } .waveform span:nth-child(18){ animation-delay: -1.4s; }
@keyframes wave{ 0%,100%{ height: 10px; } 50%{ height: 44px; } }

.app-mock-progress{ height:8px; border-radius:99px; background: rgba(255,255,255,.07); overflow:hidden; margin-bottom:12px; }
.app-mock-progress-fill{ height:100%; width:96%; border-radius:99px; background: var(--grad-go); box-shadow: 0 0 14px rgba(52,211,153,.6); }
.app-mock-footer{ display:flex; justify-content:space-between; font-size: 13px; color: var(--muted); font-family: var(--font-tech); }

/* ============================================================
   STATS: contador + geo
   ============================================================ */
.stats-band{
  position: relative; padding: 56px 24px 36px; text-align:center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124,58,237,.08), transparent);
}
.stats-inner{
  max-width: var(--container); margin: 0 auto;
  display:flex; align-items:center; justify-content:center; gap: 64px; flex-wrap: wrap;
}
.stat-counter{ display:flex; flex-direction:column; align-items:center; gap: 6px; }
.stat-counter-eyebrow{
  font-family: var(--font-tech); font-weight:700; font-size: 12.5px; letter-spacing:.16em;
  text-transform: uppercase; color: var(--green);
}
.stat-counter-number{
  font-family: var(--font-display); font-weight: 900; font-size: clamp(54px, 8vw, 92px);
  line-height: 1; background: var(--grad-go); -webkit-background-clip: text; background-clip: text;
  color: transparent; filter: drop-shadow(0 0 30px rgba(52,211,153,.35));
}
.stat-counter-label{ font-family: var(--font-tech); font-weight:600; color: var(--muted); font-size: 14px; letter-spacing:.03em; }

.stat-geo{ display:flex; flex-direction:column; gap: 14px; align-items:center; max-width: 460px; }
.stat-geo-label{ font-family: var(--font-tech); font-weight:700; font-size: 13px; letter-spacing:.12em; text-transform:uppercase; color: var(--cyan); }
.stat-geo-list{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.stat-geo-chip{
  font-family: var(--font-tech); font-weight:600; font-size: 13.5px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(124,58,237,.08); white-space: nowrap;
}
.stat-geo-loading, .stat-geo-empty{ color: var(--muted); font-weight:500; border-color: transparent; }

.stats-privacy{ margin-top: 26px; font-size: 12px; color: var(--muted); opacity:.75; }

@media (max-width: 680px){
  .stats-inner{ gap: 36px; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
}
.feature-card{
  background: var(--panel-soft); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 26px; transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.feature-card:hover{
  transform: translateY(-6px); border-color: rgba(236,72,153,.4);
  box-shadow: 0 18px 40px rgba(124,58,237,.18);
}
.feature-icon{
  width: 50px; height: 50px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px; box-shadow: 0 8px 20px rgba(124,58,237,.25);
}
.feature-icon svg{ width: 24px; height:24px; }
.feature-card h3{ font-family: var(--font-tech); font-size: 19px; font-weight:700; margin-bottom: 9px; }
.feature-card p{ color: var(--muted); font-size: 15px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps{ position: relative; display:grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 64px; }
.steps-line{
  position:absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  opacity:.4; z-index:0;
}
.step{ position: relative; z-index:1; text-align:center; }
.step-number{
  display:flex; align-items:center; justify-content:center; margin: 0 auto 22px;
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg);
  border: 2px solid var(--cyan); color: var(--cyan);
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  box-shadow: 0 0 24px rgba(34,211,238,.35);
}
.step h3{ font-family: var(--font-tech); font-size: 19px; margin-bottom: 8px; }
.step p{ color: var(--muted); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ============================================================
   IDEAL PARA
   ============================================================ */
.audience-row{
  display:flex; flex-wrap: wrap; gap: 14px; justify-content:center; margin-top: 18px;
}
.audience-row span{
  font-family: var(--font-tech); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--text); background: rgba(124,58,237,.08);
  transition: border-color .25s, transform .25s;
}
.audience-row span:hover{ border-color: var(--cyan); transform: translateY(-2px); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 760px;
  margin: 56px auto 0;
}
.price-card{
  background: var(--panel-soft); border: 1px solid var(--line); border-radius: 22px;
  padding: 38px 32px; position: relative; transition: transform .35s var(--ease);
}
.price-card:hover{ transform: translateY(-6px); }
.price-card-featured{
  border: 1px solid rgba(236,72,153,.55);
  background: linear-gradient(160deg, rgba(124,58,237,.18), rgba(236,72,153,.08));
  box-shadow: 0 26px 60px rgba(236,72,153,.22);
  transform: scale(1.04);
}
.price-card-featured:hover{ transform: scale(1.04) translateY(-6px); }
.price-badge{
  position:absolute; top:-14px; right: 28px; padding: 6px 16px; border-radius:999px;
  background: var(--grad-warm); color: var(--bg); font-family: var(--font-tech);
  font-weight:800; font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  box-shadow: 0 6px 18px rgba(251,146,60,.4); animation: badgePulse 2.4s infinite;
}
@keyframes badgePulse{ 0%,100%{ box-shadow: 0 6px 18px rgba(251,146,60,.4);} 50%{ box-shadow: 0 6px 28px rgba(251,146,60,.7);} }
.price-label{ font-family: var(--font-tech); font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--cyan); font-size: 14px; }
.price-amount{ font-family: var(--font-display); font-weight:900; font-size: 64px; line-height:1; margin: 10px 0 2px; }
.price-currency{ font-size: 30px; vertical-align: top; position:relative; top:10px; color: var(--muted); }
.price-period{ color: var(--muted); font-size: 13.5px; font-family: var(--font-tech); }
.price-list{ margin: 26px 0 0; display:flex; flex-direction:column; gap: 13px; }
.price-list li{ display:flex; gap:10px; font-size: 14.5px; align-items:flex-start; }
.price-list li::before{
  content:"✓"; color: var(--green); font-weight:800; flex-shrink:0;
  width:18px; height:18px; border-radius:50%; background: rgba(52,211,153,.15);
  display:flex; align-items:center; justify-content:center; font-size:11px; margin-top:1px;
}
.pricing-footnote{ text-align:center; color: var(--muted); margin-top: 38px; font-size: 14.5px; }
.pricing-footnote strong{ color: var(--text); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  padding: 100px 24px; text-align:center; position: relative; overflow:hidden;
  background: radial-gradient(ellipse 80% 100% at 50% 120%, rgba(236,72,153,.25), transparent 60%);
}
.cta-band-inner h2{
  font-family: var(--font-display); font-weight: 900; text-transform:uppercase;
  font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 32px; line-height:1.02;
}
.cta-band .hero-ctas{ justify-content:center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ padding: 50px 24px 40px; border-top: 1px solid var(--line); }
.footer-inner{ max-width: var(--container); margin:0 auto; text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.footer-disclaimer{ color: var(--muted); font-size: 13.5px; max-width: 560px; }
.footer-meta{ color: var(--muted); font-size: 12.5px; font-family: var(--font-tech); letter-spacing:.04em; opacity:.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero{ padding-top: 130px; text-align:center; }
  .hero-ctas, .trust-strip{ justify-content:center; }
  .hero-sub{ margin-inline:auto; }
  .hero-visual{ max-width: 460px; margin: 0 auto; }
  .features-grid{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: 1fr; gap: 50px; }
  .steps-line{ display:none; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card-featured{ transform:none; }
  .price-card-featured:hover{ transform: translateY(-6px); }
}

@media (max-width: 680px){
  .nav-burger{ display:flex; }
  .btn-nav{ display:none; }
  .features-grid{ grid-template-columns: 1fr; }
  .hero-title{ font-size: clamp(40px, 12vw, 60px); }
  .section{ padding: 80px 20px; }
}

/* ============================================================
   AD SLOTS (Adsterra)
   ============================================================ */
.ad-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    width: 100%;
    overflow: hidden;
    transition: min-height 0.3s ease;
}
.ad-slot:empty { display: none; padding: 0; }

/* ============================================================
   RTL (arabe) -- ajustes funcionales de direccion de lectura.
   No espeja todo el layout, solo lo necesario para que el texto
   y los menus se lean naturalmente de derecha a izquierda.
   ============================================================ */
[dir="rtl"] .lang-menu .lang-option{ text-align: right; }
[dir="rtl"] .nav-links a::after{ left: auto; right: 0; }
[dir="rtl"] .price-list li{ flex-direction: row-reverse; }
[dir="rtl"] .stat-counter, [dir="rtl"] .stat-geo{ text-align: center; }
