/* ═══════════════════════════════════════════
   PREVENIA · styles.css
   Paleta: #a9b1d6 (bg) · #ccff00 · #1a1b26
   ═══════════════════════════════════════════ */

:root {
  --bg: #a9b1d6;
  --bg2: #9ba4cc;
  --bg3: #8d97c2;
  --lime: #ccff00;
  --dark: #1a1b26;
  --dark2: #2a2b3a;
  --white: #f4f5fb;
  --surface: rgba(26, 27, 38, 0.06);
  --border: rgba(26, 27, 38, 0.12);
  --border-h: rgba(26, 27, 38, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── Grain ──────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── Blobs de fondo ─────────────────────────── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: rgba(204, 255, 0, 0.18);
  top: -250px;
  left: -250px;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(26, 27, 38, 0.06);
  bottom: 5%;
  right: -180px;
}

/* ─── Container ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.section {
  padding: 8rem 0;
}

/* ─── Eyebrow ────────────────────────────────── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 0.9rem;
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(169, 177, 214, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: padding var(--transition);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo span {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 4px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}

.nav-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ─── Hamburger ──────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--surface);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Menú móvil overlay ─────────────────────── */
@keyframes mobIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes mobOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8% 3rem;
}
.mob-menu.open {
  animation: mobIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mob-menu.closing {
  animation: mobOut 0.18s ease forwards;
}

.mob-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.mob-links a {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.15s;
  display: block;
}
.mob-links a:first-child {
  border-top: 1px solid var(--border);
}
.mob-links a:active {
  opacity: 0.4;
}
.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mob-ctas .btn {
  justify-content: center;
  width: 100%;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: inherit;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 0 28px rgba(204, 255, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(204, 255, 0, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-h);
  background: rgba(26, 27, 38, 0.06);
}
.btn-sm {
  padding: 7px 17px;
  font-size: 0.8rem;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  padding: 13rem 0 9rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--dark);
  border: 1px solid var(--border);
  background: rgba(26, 27, 38, 0.07);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 2.2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.75);
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--dark);
  background: var(--lime);
  padding: 0 6px 2px;
  border-radius: 4px;
}

.hero > p {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.65;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3.5rem;
}
.stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-n em {
  font-style: normal;
  color: var(--dark);
  opacity: 0.5;
  font-size: 1.3rem;
}
.stat-l {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--dark);
  opacity: 0.45;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── FEATURES ───────────────────────────────── */
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.features-sub {
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.55;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.f-card {
  background: rgba(169, 177, 214, 0.6);
  padding: 2.8rem 2.4rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.f-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.f-card:hover::before {
  opacity: 1;
}
.f-card:hover {
  background: rgba(204, 255, 0, 0.08);
}

.f-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 27, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: var(--transition);
}
.f-card:hover .f-icon {
  background: rgba(26, 27, 38, 0.15);
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.3);
}
.f-icon i {
  color: var(--dark);
  width: 20px;
  height: 20px;
}

.f-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.f-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--dark);
  opacity: 0.6;
}
.f-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--dark);
  background: rgba(204, 255, 0, 0.45);
  border: 1px solid rgba(204, 255, 0, 0.6);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ─── HOW IT WORKS ───────────────────────────── */
.how-header {
  text-align: center;
  margin-bottom: 5rem;
}
.how-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 1rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(169, 177, 214, 0.7);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--dark);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(204, 255, 0, 0.4);
}
.step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.82rem;
  color: var(--dark);
  opacity: 0.5;
  line-height: 1.55;
}

/* ─── PRICING ────────────────────────────────── */
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.pricing-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.pricing-sub {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.5;
  text-align: right;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.p-card {
  background: rgba(169, 177, 214, 0.55);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}
.p-card:hover {
  border-color: var(--border-h);
  transform: translateY(-5px);
}
.p-card.popular {
  background: rgba(204, 255, 0, 0.18);
  border-color: rgba(204, 255, 0, 0.5);
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0e0f17;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.p-card h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.6;
  margin-bottom: 1.2rem;
}
.price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.45;
  font-family: 'Instrument Sans', sans-serif;
}

.p-divider {
  height: 1px;
  background: var(--border);
  margin: 1.8rem 0;
}

.p-list {
  list-style: none;
  margin-bottom: 2.2rem;
}
.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.p-list li i {
  color: var(--dark);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.p-list li.dim {
  opacity: 0.3;
}
.p-list strong {
  color: var(--dark);
  font-weight: 700;
}

/* ─── DOWNLOAD ───────────────────────────────── */
.download-box {
  margin: 0 0 8rem;
  background: var(--dark);
  border: 1px solid rgba(26, 27, 38, 0.3);
  border-radius: 24px;
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.download-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.version-tag {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.download-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #f4f5fb;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.download-text p {
  font-size: 0.95rem;
  color: rgba(244, 245, 251, 0.55);
}

.download-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.cmd-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--lime);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-align: right;
}
.cmd-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
}
.cmd-block i {
  color: var(--lime);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.cmd-block code {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--lime);
  letter-spacing: 0;
  white-space: nowrap;
}

.compatibility {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: rgba(244, 245, 251, 0.35);
  text-align: right;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}
.footer-logo span {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--dark);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 0.9;
}

.copyright {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--dark);
  opacity: 0.3;
  text-align: right;
  line-height: 1.6;
}

/* ─── Scroll reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ─── Tablet ≤ 960px ─────────────────────────── */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pricing-sub {
    text-align: left;
  }
  .download-box {
    flex-direction: column;
    gap: 2.5rem;
  }
  .download-action {
    align-items: flex-start;
    width: 100%;
  }
  .cmd-label {
    text-align: left;
  }
  .compatibility {
    text-align: left;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
}

/* Pricing tablet: 2 columnas con Pro centrado */
@media (min-width: 640px) and (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p-card.popular {
    grid-column: 1 / -1;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─── Móvil ≤ 768px ──────────────────────────── */
@media (max-width: 768px) {
  /* Container: padding simétrico */
  .container {
    padding: 0 1.25rem;
  }

  /* Nav: sólo logo + hamburger, padding compacto fijo */
  .nav-links,
  .nav-ctas {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-wrapper {
    padding: 0.75rem 0 !important;
  }

  /* Secciones: menos espacio vertical */
  .section {
    padding: 4rem 0;
  }

  /* Hero */
  .hero {
    padding: 7rem 0 4rem;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }
  .hero-badge {
    font-size: 0.62rem;
  }
  .hero > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-btns {
    justify-content: flex-start;
  }

  /* Stats: grid 2×2 */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    justify-items: start;
  }
  .stat {
    align-items: flex-start;
    padding: 0;
  }
  .stat-divider {
    display: none;
  }

  /* Features: 1 columna */
  .features-header h2 {
    font-size: 1.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .f-card {
    padding: 2rem 1.5rem;
  }

  /* Steps: lista vertical con separadores */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps::before {
    display: none;
  }
  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    /* sin animación en móvil — siempre visible */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .step:first-child {
    border-top: 1px solid var(--border);
  }
  .step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  /* Pricing: 1 columna */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Download */
  .download-box {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 5rem;
  }
  .download-text h2 {
    font-size: 1.8rem;
  }
  .cmd-block {
    width: 100%;
  }
  .cmd-block code {
    font-size: 0.72rem;
    white-space: normal;
    word-break: break-all;
  }

  /* Footer */
  footer {
    padding: 2.5rem 0;
  }
  .footer-links {
    gap: 1.5rem;
  }
}
