/* ── 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;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ 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;
}
.bg-glow-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.09) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main {
  position: relative;
  z-index: 1;
}

/* ==========================================================
   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;
  /* ✅ Garantiza ancho completo siempre */
  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);
}

/* Flecha dropdown */
.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 {
  /* Oculto en desktop */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Tamaño fijo definido en desktop para que el breakpoint solo active display */
  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);
}

/* ==========================================================
   HERO
   ✅ Breakpoint alineado a 980px — igual que el nav.
   Antes era 820px, creando zona muerta sin hamburguesa.
========================================================== */
.hero {
  padding: 130px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-breadcrumb a:hover {
  color: var(--cyan);
}

.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

.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: 7px 18px;
  font-size: 0.75rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s ease infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  animation: fadeDown 0.6s 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-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeDown 0.6s 0.3s ease both;
}

.btn-hero-primary {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: inherit;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.55);
}

.btn-hero-outline {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-hero-outline:hover {
  background: rgba(26, 37, 69, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* Hero visual */
.hero-visual {
  animation: fadeUp 0.7s 0.2s ease both;
}

.server-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.server-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan), var(--cyan2));
}

.panel-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 14px;
  padding: 16px;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.metric-value {
  font-family: "Poiret One", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.metric-value span {
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 600;
}

.metric-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 10px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan));
  animation: growWidth 1.5s 0.5s ease both;
}

@keyframes growWidth {
  from {
    width: 0;
  }
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-tag {
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  font-size: 0.75rem;
  color: var(--cyan2);
  font-weight: 500;
}

/* ══ SECCIONES GENÉRICAS ══ */
.section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-md {
  max-width: 960px;
  margin: 0 auto;
}

/* ══ WHY SECTION ══ */
.why-section {
  padding: 60px 24px;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-eyebrow {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.why-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.why-inner p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.stat-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.04);
}

.stat-num {
  font-family: "Poiret One", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ══ BENEFITS ══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 229, 255, 0.25);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  flex-shrink: 0;
}

.benefit-card h3 {
  font-family: "Poiret One", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══ TECH SPECS ══ */
.specs-section {
  padding: 80px 24px;
}

.specs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.specs-intro h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.specs-intro h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.specs-intro p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.specs-cta {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.specs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}

.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 14px;
  padding: 16px 18px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.spec-item:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}

.spec-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--cyan);
}

.spec-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.35;
}

.spec-text strong {
  color: var(--text);
  font-weight: 700;
  font-family: "Poiret One", sans-serif;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 2px;
}

/* ══ USE CASES ══ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.case-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
}

.case-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-4px);
}

.case-num {
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 1.4;
  padding-top: 4px;
}

/* ══ DIFFERENTIATOR ══ */
.diff-section {
  padding: 80px 24px;
}

.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.08),
    rgba(0, 229, 255, 0.03)
  );
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.diff-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.diff-tag {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.diff-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.diff-inner p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.diff-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px dashed rgba(0, 229, 255, 0.35);
  flex-wrap: wrap;
}

.diff-highlight-num {
  font-family: "Poiret One", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.diff-highlight-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  max-width: 160px;
}

.diff-proof {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.diff-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.05);
  font-size: 0.86rem;
}

.diff-proof-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diff-proof-row .label {
  color: var(--muted);
  flex: 1;
}
.diff-proof-row .val-bad {
  color: #ff5757;
  font-weight: 600;
  flex: 1;
  text-align: center;
}
.diff-proof-row .val-good {
  color: #4ade80;
  font-weight: 600;
  font-family: "Poiret One", sans-serif;
  flex: 1;
  text-align: center;
}

.proof-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 0 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.proof-head span {
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.proof-head span:first-child {
  text-align: left;
}

/* ══ FAQ ══ */
.faq-section {
  padding: 80px 24px;
}
.faq-section .section-header {
  margin-bottom: 48px;
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.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: 26px;
  height: 26px;
  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.75;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ══ CTA BOTTOM ══ */
.cta-wrap {
  padding: 40px 24px 80px;
}

.cta-bottom {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    #1a2545 0%,
    var(--cyan2) 50%,
    #3a6ea5 100%
  );
  border-radius: 28px;
  padding: 70px 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;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}

.cta-bottom p {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 36px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-dark {
  display: inline-block;
  padding: 15px 36px;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  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);
}

.btn-white {
  display: inline-block;
  padding: 15px 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ══ TRUST BAR ══ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  padding: 0 24px 70px;
}

.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;
}

/* ══ 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
   ✅ REGLA DE ORO: los selectores del nav (.nav, .hamburger,
   .nav-inner, .nav-logo) solo aparecen en el bloque de 980px
   y usan !important para blindar contra cascada posterior.
========================================================== */

/* ── Tablet grande ── */
@media (max-width: 1024px) {
  .hero {
    gap: 40px;
  }
  .why-inner {
    gap: 40px;
    padding: 48px;
  }
}

/* ── Breakpoint principal — nav + hero ── */
@media (max-width: 980px) {
  /* NAV — hamburguesa blindada con !important */
  .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;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  /* Secciones */
  .why-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }

  .diff-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }

  .specs-wrapper {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 24px;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

/* ── Tablet pequeña ── */
@media (max-width: 768px) {
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diff-proof {
    padding: 20px;
  }
  .cta-bottom {
    padding: 56px 28px;
  }
}

/* ── Móvil ── */
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px !important;
  }
  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 90px 16px 48px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    text-align: center;
    width: 100%;
  }

  .why-inner {
    padding: 28px 20px;
  }
  .why-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stat-num {
    font-size: 1.8rem;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .diff-inner {
    padding: 28px 20px;
  }
  .diff-proof-row {
    font-size: 0.78rem;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  .cta-bottom {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-dark,
  .btn-white {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .trust-bar {
    gap: 10px 20px;
    padding: 0 16px 50px;
  }
  .section {
    padding: 48px 16px;
  }
}

/* ── Móvil pequeño ── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .proof-head span,
  .diff-proof-row {
    font-size: 0.72rem;
  }
}
