/* ============================================================
   PostGlow — Marketing Site Styles
   Tema: dark amber-glow | Fuentes: Syne + DM Sans
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:         #080810;
  --bg-2:       #0d0d1c;
  --bg-3:       #111126;
  --card:       #13132a;
  --card-hover: #18183a;
  --border:     rgba(255, 140, 0, 0.12);
  --border-2:   rgba(255, 255, 255, 0.06);

  --amber:      #FF8C00;
  --amber-2:    #FFA040;
  --amber-3:    #FFB870;
  --amber-glow: rgba(255, 140, 0, 0.18);
  --amber-deep: rgba(255, 140, 0, 0.06);

  --white:      #ffffff;
  --gray-1:     rgba(255, 255, 255, 0.85);
  --gray-2:     rgba(255, 255, 255, 0.55);
  --gray-3:     rgba(255, 255, 255, 0.30);
  --gray-4:     rgba(255, 255, 255, 0.10);

  --green:      #22c55e;
  --x-color:    #ffffff;
  --li-color:   #0a66c2;
  --ig-color:   #e1306c;
  --fb-color:   #1877f2;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:      68px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Tipografía global ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-2) 50%, #ff6a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Botones ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  color: var(--gray-1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--white);
  background: var(--amber-deep);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 30px rgba(255, 140, 0, 0.3);
  transition: all var(--transition);
}
.btn-hero svg { width: 20px; height: 20px; transition: transform var(--transition); }
.btn-hero:hover {
  background: var(--amber-2);
  box-shadow: 0 8px 40px rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
}
.btn-hero:hover svg { transform: translateX(3px); }

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-2);
  font-weight: 500;
  transition: color var(--transition);
}
.btn-watch:hover { color: var(--white); }
.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.play-btn svg { width: 16px; height: 16px; margin-left: 2px; color: var(--amber); }
.btn-watch:hover .play-btn { border-color: var(--amber); background: var(--amber-deep); }

/* ── Etiquetas de sección ──────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--amber-deep);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-2);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-1);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-1);
  border-bottom: 1px solid var(--border-2);
  transition: color var(--transition);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(120,60,255,0.10) 0%, transparent 70%);
  bottom: 0; left: -50px;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-2);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 2s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 750px;
  animation: fade-up 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-2);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fade-up 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  width: fit-content;
  animation: fade-up 0.6s 0.4s ease both;
}
.stat { text-align: center; padding: 0 24px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-div {
  width: 1px; height: 48px;
  background: var(--border-2);
}

/* Dashboard mockup */
.hero-dashboard {
  margin-top: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255,140,0,0.08);
  animation: fade-up 0.8s 0.5s ease both;
  max-width: 900px;
}

.dashboard-chrome {
  background: #1a1a2a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-2);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gray-4);
}
.chrome-dots span:nth-child(1) { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #febc2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }
.chrome-url {
  flex: 1;
  background: var(--bg-3);
  border-radius: var(--radius-xs);
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--gray-3);
  text-align: center;
  border: 1px solid var(--border-2);
}

.dashboard-body {
  display: flex;
  background: var(--bg-2);
  min-height: 340px;
}

/* Sidebar */
.dash-sidebar {
  width: 60px;
  background: var(--bg);
  border-right: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
.dash-logo-mini {
  width: 36px; height: 36px;
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.dash-nav { display: flex; flex-direction: column; gap: 4px; width: 100%; padding: 0 8px; }
.dash-nav-item {
  width: 100%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-xs);
  color: var(--gray-3);
  transition: all var(--transition);
}
.dash-nav-item svg { width: 18px; height: 18px; }
.dash-nav-item:hover, .dash-nav-item.active {
  background: var(--amber-deep);
  color: var(--amber);
}

/* Main dashboard */
.dash-main { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.dash-header {}
.dash-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.dash-title-row h3 { font-size: 1rem; color: var(--white); }
.dash-pill {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.active-pill { background: rgba(34, 197, 94, 0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }

.dash-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.dash-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-glow { border-color: rgba(255,140,0,0.22); box-shadow: 0 0 20px rgba(255,140,0,0.06); }
.card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-3); font-weight: 600; }
.card-platform { display: flex; align-items: center; gap: 10px; }
.platform-badge {
  width: 30px; height: 30px;
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.x-badge { background: #111; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.card-time { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.card-score { font-size: 0.7rem; color: var(--gray-3); }
.card-score strong { color: var(--amber); }
.card-preview { font-size: 0.72rem; color: var(--gray-2); line-height: 1.5; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.tag {
  padding: 2px 7px;
  background: var(--amber-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.65rem;
  color: var(--amber);
}

/* Mini chart */
.mini-chart { display: flex; align-items: flex-end; gap: 5px; height: 60px; flex: 1; }
.chart-bar { flex: 1; background: var(--bg-3); border-radius: 3px 3px 0 0; transition: height 0.3s ease; }
.active-bar { background: var(--amber); }
.chart-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: var(--gray-2); }
.chart-footer strong { color: var(--white); }
.green-text { color: var(--green); font-weight: 600; }

/* Queue */
.queue-items { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.queue-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--gray-2); }
.q-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.q-x  { background: var(--x-color); }
.q-li { background: var(--li-color); }
.q-ig { background: var(--ig-color); }
.q-fb { background: var(--fb-color); }
.q-score { margin-left: auto; font-weight: 700; color: var(--amber); font-size: 0.7rem; }
.card-queue { }

/* ── LOGOS BAND ────────────────────────────────────────────── */
.logos-band {
  padding: 40px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2);
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  font-weight: 600;
  margin-bottom: 28px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-3);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.platform-logo svg { width: 22px; height: 22px; }
.platform-logo:hover { color: var(--gray-1); }

/* ── FEATURES ──────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card:hover {
  border-color: var(--border);
  background: var(--card-hover);
  transform: translateY(-3px);
}
.feature-card-wide {
  grid-column: 1 / 3;
}
.feat-highlight {
  border-color: rgba(255,140,0,0.2);
  background: linear-gradient(135deg, rgba(255,140,0,0.06) 0%, var(--card) 60%);
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--amber-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.feat-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 0; }
.feature-card p { font-size: 0.9rem; color: var(--gray-2); line-height: 1.7; }

/* Autopilot viz */
.feat-highlight-visual { margin-top: 8px; }
.autopilot-viz { display: flex; flex-direction: column; gap: 10px; }
.av-row { display: flex; align-items: center; gap: 12px; }
.av-label { font-size: 0.72rem; color: var(--gray-3); width: 72px; flex-shrink: 0; }
.av-bar-wrap { flex: 1; background: var(--bg); border-radius: 999px; height: 8px; overflow: hidden; }
.av-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-2) 100%);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #000;
  animation: grow-bar 1.2s ease both;
}
@keyframes grow-bar { from { width: 0 !important; } }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.steps { display: flex; flex-direction: column; gap: 60px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: 32px;
  align-items: center;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--border); }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
}
.step-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step-content p { color: var(--gray-2); font-size: 0.95rem; line-height: 1.7; }

/* Step visuals */
.step-visual { display: flex; align-items: center; justify-content: center; }
.sv-connect .connect-orbs {
  position: relative;
  width: 200px; height: 140px;
}
.orb {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.orb-center {
  width: 52px; height: 52px;
  background: var(--amber);
  color: #000;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  box-shadow: 0 0 24px rgba(255,140,0,0.4);
}
.orb-x  { width: 38px; height: 38px; background: #111; color: #fff; border: 1.5px solid rgba(255,255,255,0.2); top: 10%; left: 5%; }
.orb-li { width: 38px; height: 38px; background: var(--li-color); color: #fff; top: 10%; right: 8%; font-size: 0.6rem; }
.orb-ig { width: 38px; height: 38px; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; bottom: 10%; left: 10%; font-size: 0.6rem; }
.orb-fb { width: 38px; height: 38px; background: var(--fb-color); color: #fff; bottom: 10%; right: 12%; font-size: 0.6rem; }

.connect-line {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  transform-origin: top center;
  opacity: 0.3;
}

/* Step 2 visual */
.sv-ai { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ai-post-preview {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ai-platform-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.ai-post-preview p { font-size: 0.72rem; color: var(--gray-2); line-height: 1.5; }
.ai-score-pill {
  margin-left: auto;
  padding: 2px 8px;
  background: rgba(255,140,0,0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}

/* Step 3 visual */
.sv-auto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.auto-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  width: 100%;
}
.toggle-switch {
  width: 44px; height: 24px;
  background: var(--amber);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #000;
  border-radius: 50%;
  top: 3px; right: 4px;
  transition: all var(--transition);
}
.toggle-label { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.toggle-sub { font-size: 0.68rem; color: var(--gray-3); }
.auto-schedule-preview {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
}
.sch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.72rem;
  color: var(--gray-2);
  border-bottom: 1px solid var(--border-2);
}
.sch-row:last-child { border-bottom: none; }
.sch-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sch-time { margin-left: auto; font-weight: 600; color: var(--gray-1); }

/* ── AI POWER ──────────────────────────────────────────────── */
.ai-power {
  padding: 100px 0;
  background: var(--bg);
}
.ai-power .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-power-content {}
.ai-power-content .section-sub { max-width: 100%; margin-bottom: 40px; }
.ai-features-list { display: flex; flex-direction: column; gap: 20px; }
.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ai-feat-icon {
  width: 40px; height: 40px;
  background: var(--amber-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.ai-feat-icon svg { width: 20px; height: 20px; }
.ai-feature h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--white); }
.ai-feature p  { font-size: 0.85rem; color: var(--gray-2); line-height: 1.6; }

/* Score ring */
.ai-power-visual { display: flex; justify-content: center; align-items: center; }
.score-ring-container {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.score-ring {
  width: 100%; height: 100%;
  position: absolute;
  transform: rotate(-90deg);
}
.ring-bg { fill: none; stroke: var(--bg-3); stroke-width: 12; }
.ring-fill {
  fill: none;
  stroke: var(--amber);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 691;
  stroke-dashoffset: 83;
  filter: drop-shadow(0 0 8px rgba(255,140,0,0.5));
  animation: ring-draw 1.5s ease both;
}
@keyframes ring-draw { from { stroke-dashoffset: 691; } }
.score-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.score-label { font-size: 0.8rem; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.06em; }
.score-tags {
  position: absolute;
  inset: 0;
}
.score-tag {
  position: absolute;
  padding: 5px 12px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--gray-2);
  font-weight: 500;
  white-space: nowrap;
}
.score-tag:nth-child(1) { top: 5%; right: -15%; }
.score-tag:nth-child(2) { top: 38%; right: -22%; color: var(--amber); border-color: var(--border); }
.score-tag:nth-child(3) { bottom: 15%; right: -10%; }
.score-tag:nth-child(4) { bottom: 5%; left: -5%; }
.score-tag:nth-child(5) { top: 20%; left: -20%; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border); }
.pricing-card.popular {
  border-color: var(--amber);
  background: linear-gradient(160deg, rgba(255,140,0,0.07) 0%, var(--card) 50%);
  box-shadow: 0 0 40px rgba(255,140,0,0.10);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.plan-desc { font-size: 0.85rem; color: var(--gray-2); margin-top: 4px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-currency { font-size: 1.3rem; color: var(--gray-2); font-weight: 600; }
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--gray-3); }
.plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-2);
}
.plan-feature svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.cta-outline {
  border: 1.5px solid var(--border);
  color: var(--gray-1);
}
.cta-outline:hover { border-color: var(--amber); color: var(--white); background: var(--amber-deep); }
.cta-filled {
  background: var(--amber);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,140,0,0.25);
}
.cta-filled:hover { background: var(--amber-2); box-shadow: 0 8px 30px rgba(255,140,0,0.4); }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; fill: var(--amber); }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.author-role { font-size: 0.75rem; color: var(--gray-3); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--amber); }
.faq-arrow {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--gray-3);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--amber); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ── CTA FINAL ─────────────────────────────────────────────── */
.cta-final {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,140,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
}
.cta-final h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 16px; position: relative; }
.cta-final p { font-size: 1.05rem; color: var(--gray-2); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-final .btn-hero { margin: 0 auto; }
.cta-note { margin-top: 18px; font-size: 0.8rem; color: var(--gray-3); position: relative; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-3); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-2);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gray-3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gray-1); }

/* ── Animaciones de entrada ────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-wide { grid-column: 1 / 3; }
  .ai-power .container { grid-template-columns: 1fr; gap: 48px; }
  .ai-power-visual { order: -1; }
  .score-tag { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-div { display: none; }
  .dash-cards { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: 1; }

  .steps { gap: 24px; }
  .step { grid-template-columns: 48px 1fr; padding: 24px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .logos-row { gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { width: 100%; }
  .stat { padding: 0 16px; }
}

/* ============================================================
   Estilos adicionales para las clases reales del HTML
   ============================================================ */

/* ── FAQ (clases reales: faq-q, faq-a, faq-grid, faq-icon) ─ */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gray-3);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ── Pricing (clases reales) ────────────────────────────────── */
.plan-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.plan-popular {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 4px;
}
.pricing-featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, rgba(255,140,0,0.07) 0%, var(--card) 50%);
  box-shadow: 0 0 40px rgba(255,140,0,0.10);
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

.plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; list-style: none; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-2);
}
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.feat-disabled { color: var(--gray-3) !important; opacity: 0.5; }

.plan-desc { font-size: 0.85rem; color: var(--gray-2); margin-top: 4px; }

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-align: center;
}
.btn-plan-outline {
  border: 1.5px solid var(--border);
  color: var(--gray-1);
}
.btn-plan-outline:hover { border-color: var(--amber); color: var(--white); background: var(--amber-deep); }
.btn-plan-primary {
  background: var(--amber);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,140,0,0.25);
}
.btn-plan-primary:hover { background: var(--amber-2); box-shadow: 0 8px 30px rgba(255,140,0,0.4); }

/* ── Testimonials (clases reales) ───────────────────────────── */
.testi-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover { border-color: var(--border); transform: translateY(-3px); }
.testi-featured {
  border-color: rgba(255,140,0,0.25);
  background: linear-gradient(160deg, rgba(255,140,0,0.06) 0%, var(--card) 60%);
}
.testi-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.testi-card > p {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #ff6a00);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.testi-author span   { font-size: 0.75rem; color: var(--gray-3); }

/* ── AI Section (clases reales: ai-inner, ai-text, ai-visual) ── */
.ai-power .ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.ai-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-2);
}
.ai-list li svg { width: 20px; height: 20px; flex-shrink: 0; }

.ai-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-glow-bg {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.score-ring {
  position: relative;
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.ring-svg {
  position: absolute;
  width: 100%; height: 100%;
}
.ring-center {
  position: relative;
  text-align: center;
  z-index: 1;
}
.ring-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.ring-label { font-size: 0.75rem; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.06em; }
.ring-badges { position: absolute; inset: 0; pointer-events: none; }
.rbadge {
  position: absolute;
  padding: 6px 12px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.rbadge span { font-size: 0.65rem; color: var(--gray-3); font-weight: 400; margin-left: 2px; }
.rbadge-1 { top: 0%; right: -30%; color: var(--green); border-color: rgba(34,197,94,0.3); }
.rbadge-2 { top: 40%; right: -40%; }
.rbadge-3 { bottom: 10%; right: -25%; color: var(--amber); border-color: var(--border); }

/* ── Terminal (step 2) ──────────────────────────────────────── */
.ai-terminal {
  background: #0d0d1a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-family: 'Courier New', monospace;
  width: 100%;
  max-width: 280px;
}
.terminal-header {
  background: #1a1a2a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-2);
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-4);
}
.t-dot:nth-child(1) { background: #ff5f57; }
.t-dot:nth-child(2) { background: #febc2e; }
.t-dot:nth-child(3) { background: #28c840; }
.t-title { font-size: 0.72rem; color: var(--gray-3); margin-left: 8px; }
.terminal-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.t-line { font-size: 0.72rem; line-height: 1.6; }
.t-key { color: var(--amber); }
.t-val { color: #7dd3fc; }
.glow-text { color: var(--amber); font-weight: 700; text-shadow: 0 0 8px rgba(255,140,0,0.5); }
.t-cursor {
  color: var(--amber);
  font-weight: 700;
  animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.t-line-blink { animation: line-pulse 2s ease-in-out infinite; }
@keyframes line-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ── Calendar mini (step 3) ─────────────────────────────────── */
.calendar-mini {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 100%;
  max-width: 260px;
}
.cal-header {
  background: #1a1a2a;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-2);
  text-align: center;
  border-bottom: 1px solid var(--border-2);
  font-family: var(--font-display);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px;
}
.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--gray-3);
  font-weight: 600;
  padding: 4px 0;
}
.today-day {
  background: var(--amber-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--amber);
}
.cal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.cal-x  { background: var(--white); }
.cal-li { background: var(--li-color); }
.cal-ig { background: var(--ig-color); }
.cal-fb { background: var(--fb-color); }
.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,140,0,0.4); }
  50%       { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(255,140,0,0); }
}
.cal-footer {
  padding: 8px 14px;
  font-size: 0.68rem;
  color: var(--gray-3);
  text-align: center;
  border-top: 1px solid var(--border-2);
}

/* ── Final CTA (clase real: final-cta, cta-glow) ───────────── */
.final-cta {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,140,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
}
.final-cta h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 16px; position: relative; z-index: 1; }
.final-cta > .container > p {
  font-size: 1.05rem;
  color: var(--gray-2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.final-cta .btn-hero { margin: 0 auto; position: relative; z-index: 1; }
.cta-note {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 0.8rem;
  color: var(--gray-3);
  position: relative;
  z-index: 1;
}

/* ── Footer (clases reales: footer-top, footer-links, footer-socials) ─ */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-3); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-2);
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-deep); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-2);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Plan price (precio real) ───────────────────────────────── */
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--gray-3); margin-left: 4px; }

/* ── Responsive adicional ───────────────────────────────────── */
@media (max-width: 1024px) {
  .ai-power .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .ai-visual { order: -1; }
  .rbadge { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .testimonials-grid, .testi-card + .testi-card { display: flex; flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-top { gap: 32px; }
}
