/* ── Variables ── */
:root {
  --bg: #04060f;
  --bg2: #080d1c;
  --bg3: #0c1225;
  --card: #0e1530;
  --border: #1a2545;
  --cyan: #00e5ff;
  --cyan2: #00b8d9;
  --lime: #a8ff3e;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --accent: #ff4d6d;
  --gold: #ffc947;
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ==========================================================
   NAVBAR
========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(4, 6, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(0, 229, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
  /* ✅ Ancho garantizado */
  width: 100%;
  box-sizing: border-box;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-inner {
  height: 62px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* ✅ No crece ni encoge */
  flex: 0 0 auto;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-logo:hover .logo-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.55);
}

.logo-text {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-text span {
  color: var(--cyan);
}

/* Links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--text);
  background: rgba(26, 37, 69, 0.8);
}

.nav-links > li > a.active {
  color: var(--cyan);
}

.arrow {
  width: 14px;
  height: 14px;
  opacity: 0.55;
  transition:
    transform 0.25s ease,
    opacity 0.2s;
  flex-shrink: 0;
}

.nav-links > li.open > button .arrow,
.nav-links > li:hover > button .arrow {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(0, 3, 60, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 229, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 200;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(0, 3, 60, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  transform: translateX(-50%) rotate(45deg);
}

.nav-links > li:hover .dropdown,
.nav-links > li.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 400;
  transition:
    background 0.18s,
    color 0.18s;
}

.dropdown-item:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--text);
}

.dropdown-item:hover .di-icon {
  background: rgba(0, 229, 255, 0.25);
}

.di-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(0, 229, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.18s;
}

.di-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text);
  margin-bottom: 2px;
}

.di-text span {
  font-size: 0.74rem;
  color: var(--muted);
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 229, 255, 0.05);
  margin: 6px 8px;
}

/* CTA nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-ghost {
  padding: 8px 18px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.btn-nav-primary {
  padding: 9px 22px;
  border-radius: 10px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-nav-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 229, 255, 0.5);
}

/* ── Hamburguesa ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  gap: 5px;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
  flex-grow: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  pointer-events: none;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   MENÚ MÓVIL
========================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 90px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.05);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.mobile-link:hover,
.mobile-link-trigger.active-sub {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
  color: var(--text);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 4px 12px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.mobile-submenu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.mobile-divider {
  height: 1px;
  background: rgba(26, 37, 69, 0.8);
  margin: 8px 0;
}

.mobile-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.btn-mobile-ghost {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
}

.btn-mobile-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-mobile-primary {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.4);
  transition: all 0.2s;
}

.btn-mobile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.55);
}

/* ========== BACKGROUND ========== */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}

.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.12) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: -100px;
}

main {
  position: relative;
  z-index: 1;
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}

.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  animation: pulse 1.6s ease infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeDown 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeDown 0.7s 0.2s ease both;
}

.hero-notice {
  display: inline-block;
  background: rgba(0, 229, 255, 0.08);
  border: 1px dashed rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.88rem;
  color: var(--cyan2);
  animation: fadeDown 0.7s 0.3s ease both;
}

.hero-notice strong {
  color: var(--text);
}

/* ========== CARDS ========== */
.plans-section {
  padding: 60px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px 40px;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: fadeUp 0.6s ease both;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.card.featured {
  background: rgba(0, 229, 255, 0.06);
  border-color: var(--cyan);
  box-shadow:
    0 0 0 1px var(--cyan),
    0 24px 80px rgba(0, 229, 255, 0.15);
  transform: translateY(-12px);
}

.card.featured:hover {
  transform: translateY(-20px);
  box-shadow:
    0 0 0 1px var(--cyan),
    0 40px 100px rgba(0, 229, 255, 0.25);
}

.card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan), var(--cyan2));
  border-radius: 24px 24px 0 0;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan);
  color: var(--text);
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.card-badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.featured .card-icon {
  background: rgba(0, 229, 255, 0.15);
}

.card-name {
  font-family: "Poiret One", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.card-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.price-block {
  margin-bottom: 8px;
}

.price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: "Poiret One", sans-serif;
  margin-bottom: 4px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-family: "Poiret One", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
}

.price-amount {
  font-family: "Poiret One", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-renewal {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-renewal span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.divider {
  height: 1px;
  background: rgba(26, 37, 69, 0.8);
  margin: 0 0 24px;
}

.featured .divider {
  background: rgba(0, 229, 255, 0.2);
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.features li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.05);
  font-size: 0.7rem;
}

.featured .features li .check {
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
}

.features li .feature-val {
  font-weight: 600;
  color: var(--text);
}

.btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(26, 37, 69, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 229, 255, 0.45);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 14px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  padding: 0 24px 80px;
  animation: fadeUp 0.7s 0.5s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ========== TABLA COMPARATIVA ========== */
.compare-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 100px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.compare-header {
  text-align: center;
  margin-bottom: 48px;
}

.compare-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.compare-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 20px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th {
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-transform: uppercase;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.featured-col {
  background: rgba(0, 229, 255, 0.05);
  color: var(--text);
  font-weight: 600;
}

.compare-table th.featured-col {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
}

.check-icon {
  color: var(--cyan);
  font-size: 1rem;
}

/* ========== FAQ ========== */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.faq-item {
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-q.open {
  color: var(--cyan);
}

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition:
    transform 0.3s ease,
    background 0.2s;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ========== CTA BOTTOM ========== */
.cta-bottom {
  max-width: 960px;
  margin: 0 24px 80px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    135deg,
    #1a2545 0%,
    var(--cyan2) 50%,
    #3a6ea5 100%
  );
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-bottom h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}

.cta-bottom p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-dark {
  display: inline-block;
  padding: 16px 40px;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-dark:hover {
  background: #000d6b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE — breakpoints unificados
   ✅ .hamburger sólo aparece en @media y con !important
      para blindar contra cualquier cascada posterior.
========================================================== */

/* ── Breakpoint principal 980px — nav + hero ── */
@media (max-width: 980px) {
  /* NAV */
  .nav-links,
  .nav-cta,
  .btn-nav-ghost {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }

  .nav-inner {
    width: 100% !important;
    padding: 0 20px !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .nav-logo {
    flex: 0 0 auto !important;
    max-width: calc(100% - 60px) !important;
  }

  /* Contenido */
  .hero {
    padding: 100px 24px 48px;
  }
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .card.featured {
    transform: translateY(0);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Ocultar columna media en tabla comparativa */
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3) {
    display: none;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .cta-bottom {
    padding: 44px 28px;
  }
}

/* ── Móvil ── */
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px !important;
  }
  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 90px 16px 40px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .plans-section {
    padding: 40px 16px 60px;
  }

  .cta-bottom {
    padding: 36px 20px;
    border-radius: 20px;
    margin-bottom: 60px;
  }

  .btn-dark {
    display: block;
    text-align: center;
  }

  .trust-bar {
    gap: 10px 20px;
    padding: 0 16px 50px;
  }
}

/* ── Móvil pequeño ── */
@media (max-width: 380px) {
  .compare-table th:nth-child(2),
  .compare-table td:nth-child(2) {
    display: none;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
}
