/* ─── CRUCIJUEGOS — Shared Styles ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #874FFF;
  --navy:        #060F7C;
  --orange:      #EF7C05;
  --blue-purple: #5242FF;
  --cyan-blue:   #3DADFF;
  --dark-purple: #6200B7;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  width: 100%; background: #fff;
  display: flex; justify-content: center; align-items: center;
  height: 135px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-pill {
  display: flex; align-items: center;
  background: rgba(135,79,255,0.30);
  border-radius: 100px;
  width: 1241px; height: 89px;
  padding: 0 64px;
  justify-content: space-between;
}
.nav-logo img { height: 53px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links li a {
  font-size: 20px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #fff; }
.nav-links li.active a {
  font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 100px; padding: 7px 22px;
}

/* ─── HAMBURGER ──────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  width: 26px; height: 3px; background: #fff;
  border-radius: 2px; transition: all 0.3s;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* mobile drawer */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 28px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--purple); }
.mobile-nav a.active { color: var(--orange); }
.mobile-nav-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; cursor: pointer; color: #fff;
  font-size: 36px; line-height: 1;
}

/* ─── HERO GENERIC ───────────────────────────────────────── */
.page-hero {
  position: relative; width: 100%; min-height: 420px;
  background: url('hero_bg.png') center top / cover no-repeat;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 80px 180px; width: 100%;
}
.page-hero h1 {
  font-size: 80px; font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 22px; font-weight: 400; color: rgba(255,255,255,0.85);
  max-width: 640px;
}

/* ─── BADGE PILL ─────────────────────────────────────────── */
.badge-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple); color: #fff;
  font-size: 18px; font-weight: 700;
  padding: 10px 32px; border-radius: 100px;
  letter-spacing: 0.04em; margin-top: 20px;
}
.badge-pill.orange { background: var(--orange); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 73px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  letter-spacing: 0.03em; transition: opacity 0.2s, transform 0.15s;
  padding: 0 40px;
}
.btn:hover  { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-purple { background: var(--purple); }
.btn-orange { background: var(--orange); }
.btn-navy   { background: var(--navy); }
.btn-whatsapp { background: #25D366; }

/* ─── CLOUD SEPARATORS ───────────────────────────────────── */
.cloud-top    { position: relative; margin-top: -180px; z-index: 3; line-height: 0; pointer-events: none; }
.cloud-top img, .cloud-bottom img { width: 100%; display: block; }
.cloud-bottom { background: var(--navy); line-height: 0; position: relative; z-index: 2; }

/* ─── WAVE ───────────────────────────────────────────────── */
.wave-to-dark { background: #fff; line-height: 0; }
.wave-to-dark svg { display: block; width: 100%; }

/* ─── SECTION TITLES ─────────────────────────────────────── */
.section-title {
  font-size: 52px; font-weight: 900; color: var(--navy);
  text-align: center; text-transform: uppercase; letter-spacing: 0.03em;
}
.section-title.white  { color: #fff; }
.section-title.purple { color: var(--purple); }

/* ─── FORM STYLES ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 14px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-control {
  width: 100%; height: 52px;
  border: 2px solid rgba(135,79,255,0.35);
  border-radius: 12px; padding: 0 18px;
  font-family: 'Montserrat', sans-serif; font-size: 16px; color: #333;
  background: #fff; outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--purple); }
textarea.form-control { height: 120px; padding: 14px 18px; resize: vertical; }
select.form-control {
  cursor: pointer; appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23874FFF' stroke-width='2' fill='none'/%3E%3C/svg%3E") right 16px center no-repeat;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); padding: 50px 0 36px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.footer-row {
  width: 1154px; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { height: 54px; width: auto; }
.footer-nav { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.footer-nav a {
  font-size: 19px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: 0.04em; transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.65; }
.footer-divider { width: 1154px; height: 1px; background: rgba(255,255,255,0.18); }
.footer-bottom-row {
  width: 1154px; display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 18px; font-weight: 300; color: #fff; opacity: 0.75; }
.footer-socials { display: flex; gap: 18px; align-items: center; }
.footer-socials a {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; text-decoration: none; transition: opacity 0.2s;
}
.footer-socials a:hover { opacity: 0.65; }
.footer-socials svg { width: 32px; height: 32px; fill: #fff; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-pill { width: 92vw; padding: 0 28px; }
  .nav-links { gap: 20px; }
  .nav-links li a { font-size: 16px; }

  .footer-row, .footer-bottom-row, .footer-divider { width: 92vw; }
  .footer-nav { gap: 20px; }
  .footer-nav a { font-size: 16px; }
  .footer-copy { font-size: 15px; }

  .page-hero h1 { font-size: 60px; }
  .page-hero-inner { padding: 60px 60px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* header */
  .site-header { height: 80px; }
  .nav-pill {
    width: 90vw; height: 62px; padding: 0 20px;
    border-radius: 100px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* clouds */
  .cloud-top { margin-top: -80px; }

  /* hero */
  .page-hero-inner { padding: 50px 24px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero p  { font-size: 16px; }

  /* footer */
  .footer-row {
    width: 90vw; flex-direction: column; gap: 24px; text-align: center;
  }
  .footer-nav { justify-content: center; gap: 16px; }
  .footer-nav a { font-size: 15px; }
  .footer-divider { width: 90vw; }
  .footer-bottom-row {
    width: 90vw; flex-direction: column; gap: 16px; text-align: center;
  }
  .footer-copy { font-size: 14px; }

  /* buttons */
  .btn { height: 58px; font-size: 18px; padding: 0 28px; }

  /* forms */
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr !important; }
}


/* ─── UX polish / conversion helpers ───────────────────── */
.nav-links { gap: clamp(14px, 2.1vw, 30px); }
.nav-links li a { font-size: clamp(15px, 1.35vw, 18px); }
.nav-links li.active a { padding: 7px 16px; }

.floating-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 180;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 54px; padding: 0 20px; border-radius: 999px;
  background: #25D366; color: #fff; text-decoration: none;
  font-weight: 900; letter-spacing: .02em;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.floating-wa:hover { transform: translateY(-2px); filter: brightness(.98); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.floating-wa svg { width: 24px; height: 24px; fill: currentColor; }

.form-hint { font-size: 13px; color: rgba(255,255,255,.66); margin-top: 6px; line-height: 1.45; }
.form-control.error { border-color: #ff6b4a !important; box-shadow: 0 0 0 3px rgba(255,107,74,.18); }
.form-success {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: 14px;
  background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.4);
  color: #fff; font-weight: 700; line-height: 1.45;
}
.form-success.show { display: block; }
.submit-row { flex-wrap: wrap; }
.submit-row .form-success { flex-basis: 100%; }

@media (max-width: 768px) {
  .floating-wa { right: 14px; bottom: 14px; min-height: 50px; padding: 0 16px; font-size: 14px; }
  .mobile-nav { gap: 24px; }
  .mobile-nav a { font-size: 24px; }
}


/* ─── Visual refresh — safe responsive polish ───────────── */
:root {
  --ink: #061047;
  --soft-bg: #f6f4ff;
  --glow-purple: rgba(135,79,255,.28);
  --glow-orange: rgba(239,124,5,.22);
  --card-shadow: 0 18px 48px rgba(6,15,124,.14);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(135,79,255,.08), transparent 32vw),
    radial-gradient(circle at 92% 10%, rgba(61,173,255,.06), transparent 34vw),
    #fff;
}

.site-header {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(6,15,124,.08);
}
.nav-pill {
  background: linear-gradient(135deg, rgba(135,79,255,.95), rgba(82,66,255,.72));
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 16px 38px rgba(98,0,183,.20), inset 0 1px 0 rgba(255,255,255,.30);
}
.nav-links li a { color: rgba(255,255,255,.78); }
.nav-links li.active a {
  background: rgba(255,255,255,.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.nav-logo img { filter: drop-shadow(0 5px 10px rgba(6,15,124,.18)); }

.page-hero::before,
.sucursales-hero::before,
.cumple-hero::before,
.nos-hero::before,
.app-hero::before,
.eventos-hero::before,
.trabaja-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,15,124,.66), rgba(6,15,124,.25) 55%, rgba(6,15,124,.58)),
    radial-gradient(circle at 72% 30%, rgba(135,79,255,.32), transparent 28%);
}
.page-hero-inner,
.sucursales-hero-inner,
.cumple-hero-inner,
.nos-hero-inner,
.app-hero-inner,
.eventos-hero-inner,
.trabaja-hero-inner { position: relative; z-index: 2; }

.section-title,
.conoce-title,
.finder-title,
.form-section-title,
.descubri-title,
.contact-title,
.gallery-title span {
  text-wrap: balance;
}

.btn, .btn-submit, .promo-opt, .store-btn {
  box-shadow: 0 14px 30px rgba(6,15,124,.16);
}
.btn:hover, .btn-submit:hover, .promo-opt:hover, .store-btn:hover {
  box-shadow: 0 18px 42px rgba(6,15,124,.22);
}

.pkg-card,
.sucursal-card,
.info-card,
.feature-card,
.feat-card,
.tipo-card,
.porque-card,
.stat-item,
.cta-card,
.gallery-grid img,
.finder-map,
.form-section-title,
.dark-form,
.nos-text-block,
.contact-inner {
  box-shadow: var(--card-shadow);
}

.pkg-card,
.sucursal-item,
.info-card,
.feature-card,
.porque-card,
.cta-card,
.form-control,
.dark-form {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.pkg-card:hover,
.sucursal-item:hover,
.info-card:hover,
.feature-card:hover,
.porque-card:hover,
.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(6,15,124,.20);
}

.form-control {
  box-shadow: 0 8px 18px rgba(6,15,124,.05);
}
.form-control:focus {
  box-shadow: 0 0 0 4px rgba(135,79,255,.14), 0 10px 24px rgba(6,15,124,.08);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 10%, rgba(135,79,255,.28), transparent 34%),
    linear-gradient(180deg, #060F7C 0%, #04093f 100%);
}
.footer-socials a { opacity: .86; }
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }

@media (max-width: 768px) {
  .site-header { background: rgba(255,255,255,.9); }
  .nav-pill { box-shadow: 0 10px 26px rgba(98,0,183,.18); }
  .page-hero::before,
  .sucursales-hero::before,
  .cumple-hero::before,
  .nos-hero::before,
  .app-hero::before,
  .eventos-hero::before,
  .trabaja-hero::before {
    background: linear-gradient(180deg, rgba(6,15,124,.72), rgba(6,15,124,.42));
  }
  .pkg-card:hover,
  .sucursal-item:hover,
  .info-card:hover,
  .feature-card:hover,
  .porque-card:hover,
  .cta-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* ─── Accessibility / SEO polish ───────────────────────── */
:focus-visible {
  outline: 3px solid rgba(239,124,5,.9);
  outline-offset: 4px;
}
.nav-links a:focus-visible,
.footer-nav a:focus-visible,
.footer-legal-links a:focus-visible,
.footer-socials a:focus-visible,
.mobile-nav a:focus-visible,
.floating-wa:focus-visible,
.store-btn:focus-visible,
.btn:focus-visible,
.btn-submit:focus-visible {
  border-radius: 999px;
}
.footer-row { gap: 24px; flex-wrap: wrap; }
.footer-legal-links {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end;
  flex-basis: 100%; font-size: 13px;
}
.footer-legal-links a {
  color: rgba(255,255,255,.72); text-decoration: none; font-weight: 600;
}
.footer-legal-links a:hover { color: #fff; }
.mobile-nav[aria-hidden="true"] { pointer-events: none; }
.mobile-nav.open[aria-hidden="false"] { pointer-events: auto; }
@media (max-width: 768px) {
  .footer-legal-links { justify-content: center; }
}

/* Make WebP <picture> wrappers behave like the original images */
.nav-logo picture,
.footer-logo picture,
.cloud-top picture,
.cloud-bottom picture,
.circle-card picture,
.sucursal-card picture,
.gallery-grid picture,
.tipo-card picture,
.app-phone-mock picture,
.cumple-hero-img picture,
.cumple-card picture {
  display: contents;
}


/* ─── Conversion / utility polish ───────────────────────── */
.lead-strip {
  width: min(1120px, 92vw); margin: 32px auto 0; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,244,255,.92));
  border: 1px solid rgba(135,79,255,.16); border-radius: 24px;
  box-shadow: 0 18px 44px rgba(6,15,124,.12);
}
.lead-strip strong { color: var(--navy); font-size: clamp(18px, 2vw, 24px); line-height: 1.18; }
.lead-strip span { color: rgba(6,16,71,.72); font-size: 15px; line-height: 1.45; }
.lead-strip-text { display: grid; gap: 4px; max-width: 680px; }
.lead-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lead-mini-btn {
  min-height: 44px; padding: 0 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff; font-weight: 900; font-size: 14px; background: var(--purple);
  box-shadow: 0 12px 26px rgba(6,15,124,.14); transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.lead-mini-btn.orange { background: var(--orange); }
.lead-mini-btn.whatsapp { background: #25D366; }
.lead-mini-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(6,15,124,.20); filter: brightness(.99); }
.sucursal-actions { min-width: 112px; }
.sucursal-actions .sucursal-map-btn:nth-child(2) { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); }
@media (max-width: 768px) {
  .lead-strip { margin-top: 22px; padding: 18px; border-radius: 20px; }
  .lead-strip-actions { width: 100%; }
  .lead-mini-btn { flex: 1 1 140px; }
  .sucursal-actions { min-width: 0; }
}

/* ─── Mobile emergency readability fixes ──────────────────
   Keep the desktop design, but prevent iPhone Safari from showing
   a washed-out/oversized hero and an unreadable logo/header. */
.nav-logo,
.nav-logo picture,
.nav-logo img {
  display: block;
}
.nav-logo {
  flex: 0 0 auto;
  line-height: 0;
}
.nav-logo img {
  max-width: min(230px, 42vw);
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-header {
    height: 88px;
    padding: 10px 0;
  }
  .nav-pill {
    width: calc(100vw - 32px);
    height: 64px;
    padding: 0 22px;
    background: linear-gradient(135deg, #874FFF 0%, #6f44f5 100%);
  }
  .nav-logo img {
    height: 38px;
    max-width: 168px;
  }
  .nav-toggle span {
    width: 32px;
    height: 4px;
  }

  /* Home hero: the original astronaut artwork is very pale on mobile.
     Use the real image as background, add contrast, and reserve a sane height. */
  .hero {
    min-height: 560px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.92)),
                url('/replacement-web/assets/hero_bg.png') center top / cover no-repeat !important;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6,15,124,.10) 0%, rgba(255,255,255,.80) 66%, #fff 100%);
    z-index: 0;
  }
  .hero-inner {
    min-height: 560px !important;
    padding: 76px 24px 28px !important;
    align-items: flex-end !important;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    gap: 14px !important;
  }
  .hero-title {
    font-size: clamp(34px, 10vw, 46px) !important;
    color: var(--navy) !important;
    text-shadow: 0 2px 0 rgba(255,255,255,.72), 0 12px 30px rgba(255,255,255,.85);
  }
  .hero-astronaut {
    width: min(72vw, 310px) !important;
    right: -10px !important;
    top: 88px !important;
    opacity: .90 !important;
    filter: drop-shadow(0 18px 38px rgba(135,79,255,.22));
  }
  .hero-astronaut img {
    opacity: 1 !important;
  }
  .hero-buttons {
    gap: 12px !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    min-height: 58px;
    height: auto;
    padding: 15px 22px;
    font-size: 18px !important;
    line-height: 1.18;
    text-align: center;
  }
  .lead-strip {
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .nav-logo img {
    height: 34px;
    max-width: 144px;
  }
  .hero {
    min-height: 520px !important;
  }
  .hero-inner {
    min-height: 520px !important;
    padding-top: 62px !important;
  }
  .hero-astronaut {
    width: min(78vw, 285px) !important;
    top: 74px !important;
  }
  .hero-title {
    font-size: clamp(30px, 9vw, 40px) !important;
  }
  .floating-wa {
    bottom: 18px;
  }
}

/* ─── Trust / conversion helpers ───────────────────────── */
.trust-strip {
  width: min(1120px, 92vw);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-item {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(135,79,255,.14);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(6,15,124,.10);
}
.trust-item strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 5px; }
.trust-item span { color: rgba(6,16,71,.70); line-height: 1.45; font-size: 14px; }
.social-cta {
  width: min(1120px, 92vw);
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(135,79,255,.96), rgba(6,15,124,.92));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 44px rgba(6,15,124,.18);
}
.social-cta strong { display:block; font-size: clamp(20px, 2.3vw, 30px); line-height: 1.12; }
.social-cta span { display:block; margin-top: 5px; color: rgba(255,255,255,.82); line-height: 1.45; }
.social-cta-links { display:flex; gap: 12px; flex-wrap: wrap; }
.social-cta-links a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.social-cta-links a:hover { transform: translateY(-2px); }
@media (max-width: 768px) {
  .trust-strip { grid-template-columns: 1fr; margin-top: 22px; }
  .trust-item { padding: 16px; }
  .social-cta { flex-direction: column; align-items: flex-start; padding: 20px; }
  .social-cta-links { width: 100%; }
  .social-cta-links a { flex: 1 1 140px; }
}

/* ─── Competitive content blocks ───────────────────────── */
.experience-grid {
  width: min(1120px, 92vw);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(6,15,124,.10), rgba(6,15,124,.88));
  box-shadow: 0 20px 46px rgba(6,15,124,.16);
}
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transform: scale(1.02);
}
.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,124,.05), rgba(6,15,124,.88));
  z-index: -1;
}
.experience-card strong { font-size: 22px; line-height: 1.05; }
.experience-card span { margin-top: 8px; color: rgba(255,255,255,.84); line-height: 1.38; font-size: 14px; }
.experience-card:hover { transform: translateY(-3px); }
.instagram-proof {
  width: min(1120px, 92vw);
  margin: 34px auto 0;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(239,124,5,.94), rgba(135,79,255,.92));
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 22px 54px rgba(6,15,124,.18);
}
.instagram-proof h2 { margin: 0; font-size: clamp(26px, 4vw, 44px); line-height: 1.05; }
.instagram-proof p { margin: 10px 0 0; color: rgba(255,255,255,.86); line-height: 1.48; }
.instagram-proof ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.instagram-proof li { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.20); border-radius: 16px; padding: 12px 14px; font-weight: 800; }
.benchmark-strip {
  width: min(1120px, 92vw);
  margin: 34px auto 0;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(135,79,255,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(6,15,124,.10);
}
.benchmark-strip h2 { margin: 0 0 14px; color: var(--navy); font-size: clamp(24px, 3.2vw, 38px); }
.benchmark-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.benchmark-list div { border-radius: 18px; padding: 16px; background: var(--soft-bg); }
.benchmark-list strong { display:block; color: var(--purple); margin-bottom: 6px; }
.benchmark-list span { color: rgba(6,16,71,.72); line-height: 1.42; font-size: 14px; }
@media (max-width: 900px) {
  .experience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .instagram-proof { grid-template-columns: 1fr; }
  .benchmark-list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 210px; }
}



/* ─── Conversion utility sections ─────────────────────── */
.conversion-section {
  width: min(1120px, 92vw);
  margin: 42px auto;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f7f4ff);
  box-shadow: 0 22px 54px rgba(6,15,124,.10);
  border: 1px solid rgba(135,79,255,.14);
}
.conversion-heading { text-align: center; max-width: 780px; margin: 0 auto 24px; }
.conversion-heading span { display:inline-flex; color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.conversion-heading h2 { margin: 8px 0 10px; color: var(--navy); font-size: clamp(28px, 4vw, 48px); line-height: 1.04; }
.conversion-heading p { margin: 0; color: rgba(6,16,71,.70); line-height: 1.5; }
.conversion-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.home-choice .conversion-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.conversion-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(6,15,124,.10);
  box-shadow: 0 12px 28px rgba(6,15,124,.08);
}
.conversion-card:hover { transform: translateY(-3px); border-color: rgba(239,124,5,.30); }
.conversion-card b { display: block; font-size: 32px; line-height: 1; margin-bottom: 14px; color: var(--orange); }
.conversion-card strong { display:block; color: var(--navy); font-size: 20px; line-height: 1.12; margin-bottom: 8px; }
.conversion-card span { display:block; color: rgba(6,16,71,.68); line-height: 1.42; font-size: 14px; }
.conversion-actions { display:flex; justify-content:center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.faq-conversion {
  width: min(920px, 92vw);
  margin: 34px auto;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6,15,124,.10);
}
.faq-conversion h2 { margin: 0 0 16px; color: var(--navy); font-size: clamp(24px, 3vw, 36px); }
.faq-conversion details { border: 1px solid rgba(6,15,124,.10); border-radius: 16px; padding: 14px 16px; margin: 10px 0; background: var(--soft-bg); }
.faq-conversion summary { cursor:pointer; font-weight: 900; color: var(--navy); }
.faq-conversion p { margin: 10px 0 0; color: rgba(6,16,71,.72); line-height: 1.45; }
@media (max-width: 900px) {
  .conversion-grid, .home-choice .conversion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .conversion-grid, .home-choice .conversion-grid { grid-template-columns: 1fr; }
  .conversion-section { margin: 28px auto; }
}

/* ─── Mobile bottom conversion bar ─────────────────────── */
.mobile-conversion-bar { display: none; }
@media (max-width: 768px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .floating-wa { display: none !important; }
  .mobile-conversion-bar {
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 260; display: grid; grid-template-columns: 1.08fr .92fr .92fr; gap: 8px;
    padding: 8px; border-radius: 24px;
    background: rgba(6, 15, 124, .94);
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: 0 18px 50px rgba(0,0,0,.34);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  }
  .mobile-conversion-bar a {
    min-height: 48px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: #fff; font-weight: 900;
    font-size: 13px; letter-spacing: .01em; white-space: nowrap;
  }
  .mobile-conversion-bar .wa { background: #25D366; color: #07381a; }
  .mobile-conversion-bar .birthday { background: var(--orange); }
  .mobile-conversion-bar .card { background: var(--purple); }
}
@media (min-width: 769px) {
  .mobile-conversion-bar { display: none !important; }
}

/* ─── Desktop compact + tactile buttons ────────────────── */
@media (min-width: 901px) {
  .site-header {
    height: 112px;
  }
  .nav-pill {
    height: 76px;
    width: min(1180px, 86vw);
  }

  .hero {
    min-height: 620px !important;
  }
  .hero-inner {
    min-height: 620px !important;
    padding-top: 58px !important;
    padding-bottom: 72px !important;
  }
  .page-hero,
  .sucursales-hero,
  .cumple-hero,
  .nos-hero,
  .app-hero,
  .eventos-hero,
  .trabaja-hero {
    min-height: clamp(330px, 32vw, 430px) !important;
    background-position: center 20% !important;
  }
  .page-hero-inner,
  .sucursales-hero-inner,
  .cumple-hero-inner,
  .nos-hero-inner,
  .app-hero-inner,
  .eventos-hero-inner,
  .trabaja-hero-inner {
    padding-top: clamp(48px, 5vw, 72px) !important;
    padding-bottom: clamp(44px, 5vw, 68px) !important;
  }
  .app-hero-inner {
    gap: 42px !important;
  }
  .cumple-hero + .cloud-top,
  .sucursales-hero + .cloud-top,
  .nos-hero + .cloud-top,
  .app-hero + .cloud-top,
  .eventos-hero + .cloud-top {
    margin-top: clamp(-150px, -8vw, -84px) !important;
  }
  .cloud-top[style*="margin-top:0"] {
    margin-top: clamp(-110px, -6vw, -64px) !important;
  }
  .lead-strip,
  .trust-strip,
  .social-cta,
  .instagram-proof,
  .benchmark-strip,
  .experience-grid,
  .conversion-section,
  .faq-conversion {
    margin-top: clamp(18px, 2vw, 28px) !important;
  }
  .features-section,
  .tipos-section,
  .conoce-section,
  .descubri-section,
  .contact-section,
  .tabs-section,
  .gallery-section,
  .form-section,
  .eventos-form-section,
  .porque-section,
  .proceso-section,
  .section {
    padding-top: clamp(38px, 4.5vw, 58px) !important;
    padding-bottom: clamp(42px, 5vw, 68px) !important;
  }
  .cumple-section {
    padding-top: 44px !important;
  }
}

.btn,
.btn-submit,
.btn-secondary,
.btn-wa,
.full-btn,
.store-btn,
.lead-mini-btn,
.social-cta-links a,
.sucursal-actions a,
.sucursal-actions button,
.sucursal-selected-buttons a,
.promo-opt,
.tab,
.mobile-conversion-bar a,
button[type="submit"],
button[type="button"] {
  position: relative;
  isolation: isolate;
  transform: translateY(0) scale(1);
  box-shadow:
    0 12px 0 rgba(4, 7, 42, .16),
    0 22px 42px rgba(6, 15, 124, .18),
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -3px 0 rgba(0,0,0,.12) !important;
  transition:
    transform .16s cubic-bezier(.2,.9,.2,1),
    box-shadow .16s ease,
    filter .16s ease,
    opacity .16s ease,
    background .16s ease !important;
  will-change: transform;
}

.btn::after,
.btn-submit::after,
.btn-secondary::after,
.btn-wa::after,
.full-btn::after,
.store-btn::after,
.lead-mini-btn::after,
.social-cta-links a::after,
.sucursal-actions a::after,
.sucursal-actions button::after,
.sucursal-selected-buttons a::after,
.promo-opt::after,
.tab::after,
.mobile-conversion-bar a::after {
  content: '';
  position: absolute;
  inset: 8% 10% auto 10%;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}

.btn:hover,
.btn-submit:hover,
.btn-secondary:hover,
.btn-wa:hover,
.full-btn:hover,
.store-btn:hover,
.lead-mini-btn:hover,
.social-cta-links a:hover,
.sucursal-actions a:hover,
.sucursal-actions button:hover,
.sucursal-selected-buttons a:hover,
.promo-opt:hover,
.tab:hover,
.mobile-conversion-bar a:hover {
  transform: translateY(-4px) scale(1.018) !important;
  filter: saturate(1.06) brightness(1.03);
  box-shadow:
    0 16px 0 rgba(4, 7, 42, .14),
    0 30px 58px rgba(6, 15, 124, .24),
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -4px 0 rgba(0,0,0,.12) !important;
}

.btn:active,
.btn-submit:active,
.btn-secondary:active,
.btn-wa:active,
.full-btn:active,
.store-btn:active,
.lead-mini-btn:active,
.social-cta-links a:active,
.sucursal-actions a:active,
.sucursal-actions button:active,
.sucursal-selected-buttons a:active,
.promo-opt:active,
.tab:active,
.mobile-conversion-bar a:active {
  transform: translateY(6px) scale(.982) !important;
  filter: brightness(.96) saturate(1.02);
  box-shadow:
    0 3px 0 rgba(4, 7, 42, .18),
    0 10px 22px rgba(6, 15, 124, .16),
    inset 0 3px 8px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.nav-links li a {
  transition: transform .16s ease, color .16s ease, background .16s ease, box-shadow .16s ease;
}
.nav-links li a:hover {
  transform: translateY(-2px);
}
.nav-links li a:active {
  transform: translateY(2px) scale(.97);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-submit,
  .btn-secondary,
  .btn-wa,
  .full-btn,
  .store-btn,
  .lead-mini-btn,
  .social-cta-links a,
  .sucursal-actions a,
  .sucursal-actions button,
  .sucursal-selected-buttons a,
  .promo-opt,
  .tab,
  .mobile-conversion-bar a,
  button[type="submit"],
  button[type="button"] {
    transition-duration: .01ms !important;
  }
}

/* ─── Desktop hero/header correction + stronger 3D buttons ─ */
@media (min-width: 901px) {
  .site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    height: 112px !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 18px;
    pointer-events: none;
  }
  .site-header .nav-pill {
    pointer-events: auto;
    height: 76px !important;
    background: linear-gradient(135deg, #8e55ff 0%, #7047f3 54%, #6b55ff 100%) !important;
    box-shadow: 0 18px 42px rgba(98,0,183,.28), inset 0 1px 0 rgba(255,255,255,.34) !important;
  }
  body:has(.hero) .site-header + .hero,
  body:has(.page-hero) .site-header + .page-hero,
  body:has(.sucursales-hero) .site-header + .sucursales-hero,
  body:has(.cumple-hero) .site-header + .cumple-hero,
  body:has(.eventos-hero) .site-header + .eventos-hero,
  body:has(.nos-hero) .site-header + .nos-hero,
  body:has(.app-hero) .site-header + .app-hero,
  body:has(.trabaja-hero) .site-header + .trabaja-hero {
    margin-top: 0 !important;
  }

  /* Home hero: keep desktop compact but tall enough for the astronaut. */
  .hero {
    min-height: 720px !important;
    background-position: center top !important;
  }
  .hero-inner {
    min-height: 720px !important;
    padding-top: 124px !important;
    padding-bottom: 84px !important;
  }
  .hero-astronaut {
    width: clamp(500px, 42vw, 585px) !important;
    right: clamp(34px, 6vw, 92px) !important;
    bottom: 34px !important;
  }
  .hero-title {
    font-size: clamp(70px, 6.8vw, 88px) !important;
  }

  .page-hero,
  .sucursales-hero,
  .cumple-hero,
  .nos-hero,
  .app-hero,
  .eventos-hero,
  .trabaja-hero {
    padding-top: 96px !important;
    min-height: clamp(430px, 34vw, 520px) !important;
  }
}

.btn,
.btn-submit,
.btn-secondary,
.btn-wa,
.btn-empieza,
.full-btn,
.store-btn,
.lead-mini-btn,
.social-cta-links a,
.sucursal-actions a,
.sucursal-actions button,
.sucursal-selected-buttons a,
.promo-opt,
.tab,
.mobile-conversion-bar a,
button[type="submit"],
button[type="button"] {
  border: 2px solid rgba(255,255,255,.28) !important;
  background-image: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.05) 44%, rgba(0,0,0,.10) 100%) !important;
  box-shadow:
    0 9px 0 rgba(3, 7, 44, .34),
    0 18px 0 rgba(3, 7, 44, .10),
    0 28px 54px rgba(6, 15, 124, .30),
    inset 0 2px 0 rgba(255,255,255,.52),
    inset 0 -5px 0 rgba(0,0,0,.18) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.16);
}

.btn-purple { background-color: var(--purple) !important; }
.btn-orange { background-color: var(--orange) !important; }
.btn-navy { background-color: var(--navy) !important; }
.btn-whatsapp,
.btn-wa,
.mobile-conversion-bar .wa { background-color: #25D366 !important; }
.btn-secondary,
.hero-buttons .btn:nth-child(3) {
  background-color: #fff !important;
  color: var(--navy) !important;
  border-color: rgba(6,15,124,.10) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
  box-shadow:
    0 9px 0 rgba(6, 15, 124, .22),
    0 18px 0 rgba(6, 15, 124, .08),
    0 28px 54px rgba(6, 15, 124, .22),
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -5px 0 rgba(6,15,124,.10) !important;
}

.btn:hover,
.btn-submit:hover,
.btn-secondary:hover,
.btn-wa:hover,
.btn-empieza:hover,
.full-btn:hover,
.store-btn:hover,
.lead-mini-btn:hover,
.social-cta-links a:hover,
.sucursal-actions a:hover,
.sucursal-actions button:hover,
.sucursal-selected-buttons a:hover,
.promo-opt:hover,
.tab:hover,
.mobile-conversion-bar a:hover {
  transform: translateY(-5px) scale(1.025) !important;
  box-shadow:
    0 13px 0 rgba(3, 7, 44, .31),
    0 24px 0 rgba(3, 7, 44, .09),
    0 38px 68px rgba(6, 15, 124, .36),
    inset 0 2px 0 rgba(255,255,255,.58),
    inset 0 -6px 0 rgba(0,0,0,.18) !important;
}

.btn:active,
.btn-submit:active,
.btn-secondary:active,
.btn-wa:active,
.btn-empieza:active,
.full-btn:active,
.store-btn:active,
.lead-mini-btn:active,
.social-cta-links a:active,
.sucursal-actions a:active,
.sucursal-actions button:active,
.sucursal-selected-buttons a:active,
.promo-opt:active,
.tab:active,
.mobile-conversion-bar a:active {
  transform: translateY(8px) scale(.975) !important;
  box-shadow:
    0 1px 0 rgba(3, 7, 44, .40),
    0 5px 14px rgba(6, 15, 124, .18),
    inset 0 5px 12px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.26) !important;
}

/* ─── Desktop home: reduce white gap below astronaut ───── */
@media (min-width: 901px) {
  body:has(.hero) .hero {
    min-height: 690px !important;
    overflow: visible !important;
  }
  body:has(.hero) .hero-inner {
    min-height: 690px !important;
    padding-bottom: 44px !important;
  }
  body:has(.hero) .hero-astronaut {
    bottom: 8px !important;
    width: clamp(510px, 42vw, 595px) !important;
  }
  body:has(.hero) .trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -34px !important;
    margin-bottom: -28px !important;
  }
  body:has(.hero) .trust-strip + .cloud-top {
    margin-top: -118px !important;
    margin-bottom: -96px !important;
  }
  body:has(.hero) .trust-strip + .cloud-top img {
    transform: translateY(-18px) scaleY(.74);
    transform-origin: top center;
  }
  body:has(.hero) .trust-strip + .cloud-top + .social-cta {
    margin-top: 8px !important;
  }
  body:has(.hero) .social-cta,
  body:has(.hero) .instagram-proof,
  body:has(.hero) .lead-strip,
  body:has(.hero) .experience-grid {
    margin-top: 16px !important;
  }
}

/* ─── Desktop internal pages: compact white cloud gap ───── */
@media (min-width: 901px) {
  .sucursales-hero + .cloud-top,
  .cumple-hero + .cloud-top,
  .nos-hero + .cloud-top,
  .app-hero + .cloud-top,
  .eventos-hero + .cloud-top,
  .page-hero + .cloud-top,
  .cloud-area > .cloud-top {
    height: clamp(92px, 9vw, 132px) !important;
    margin-top: clamp(-78px, -5.5vw, -48px) !important;
    margin-bottom: clamp(-58px, -4vw, -34px) !important;
    overflow: hidden !important;
    z-index: 3;
  }
  .sucursales-hero + .cloud-top img,
  .cumple-hero + .cloud-top img,
  .nos-hero + .cloud-top img,
  .app-hero + .cloud-top img,
  .eventos-hero + .cloud-top img,
  .page-hero + .cloud-top img,
  .cloud-area > .cloud-top img {
    transform: translateY(-24%) scaleY(.46) !important;
    transform-origin: top center !important;
  }
  .sucursales-hero + .cloud-top + .lead-strip,
  .cumple-hero + .cloud-top + .lead-strip,
  .app-hero + .cloud-top + .app-download,
  .eventos-hero + .cloud-top + .eventos-intro,
  .nos-hero + .cloud-top + section,
  .page-hero + .cloud-top + section,
  .cloud-area + section {
    margin-top: 18px !important;
  }
}

/* ─── Desktop internal pages: remove persistent white gap ─ */
@media (min-width: 901px) {
  .sucursales-hero,
  .cumple-hero,
  .nos-hero,
  .app-hero,
  .eventos-hero,
  .page-hero {
    min-height: clamp(300px, 26vw, 390px) !important;
  }
  .sucursales-hero + .cloud-top,
  .cumple-hero + .cloud-top,
  .nos-hero + .cloud-top,
  .app-hero + .cloud-top,
  .eventos-hero + .cloud-top,
  .page-hero + .cloud-top,
  .cloud-area > .cloud-top {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sucursales-hero + .cloud-top + .lead-strip,
  .cumple-hero + .cloud-top + .lead-strip,
  .eventos-hero + .cloud-top + .lead-strip,
  .app-hero + .cloud-top + .app-download,
  .nos-hero + .cloud-top + section,
  .page-hero + .cloud-top + section,
  .cloud-area + section {
    margin-top: -18px !important;
    position: relative;
    z-index: 5;
  }
  .sucursales-hero + .cloud-top + .lead-strip {
    margin-top: -8px !important;
  }
}

/* ─── Desktop home: keep astronaut fully visible ────────── */
@media (min-width: 901px) {
  body:has(.hero) .hero {
    min-height: 760px !important;
    overflow: hidden !important;
  }
  body:has(.hero) .hero-inner {
    min-height: 760px !important;
    padding-bottom: 118px !important;
  }
  body:has(.hero) .hero-astronaut {
    width: clamp(470px, 39vw, 545px) !important;
    right: clamp(42px, 7vw, 110px) !important;
    bottom: 82px !important;
    z-index: 1 !important;
  }
  body:has(.hero) .hero-astronaut img {
    max-height: 640px !important;
    object-fit: contain !important;
  }
  body:has(.hero) .trust-strip {
    margin-top: -42px !important;
    margin-bottom: 10px !important;
    z-index: 6 !important;
  }
}

/* ─── Desktop home: final clean composition ─────────────── */
@media (min-width: 901px) {
  body:has(.hero) .site-header {
    padding-top: 26px !important;
    height: 128px !important;
    z-index: 20 !important;
  }
  body:has(.hero) .site-header .nav-pill {
    height: 74px !important;
    width: min(1120px, calc(100vw - 130px)) !important;
  }
  body:has(.hero) .hero {
    min-height: 820px !important;
    overflow: hidden !important;
    background-position: center top !important;
  }
  body:has(.hero) .hero-inner {
    min-height: 820px !important;
    align-items: flex-start !important;
    padding-top: 172px !important;
    padding-left: clamp(70px, 12vw, 180px) !important;
    padding-right: clamp(70px, 10vw, 150px) !important;
    padding-bottom: 150px !important;
  }
  body:has(.hero) .hero-content {
    width: clamp(500px, 43vw, 620px) !important;
    gap: 26px !important;
    z-index: 5 !important;
  }
  body:has(.hero) .hero-title {
    font-size: clamp(62px, 6.15vw, 84px) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    text-shadow: 0 8px 26px rgba(0,0,0,.18) !important;
  }
  body:has(.hero) .hero-buttons {
    gap: 16px !important;
  }
  body:has(.hero) .hero-buttons .btn {
    width: clamp(350px, 31vw, 430px) !important;
  }
  body:has(.hero) .hero-astronaut {
    width: clamp(430px, 35vw, 520px) !important;
    right: clamp(70px, 9vw, 150px) !important;
    top: 150px !important;
    bottom: auto !important;
    z-index: 2 !important;
  }
  body:has(.hero) .hero-astronaut img {
    width: 100% !important;
    height: auto !important;
    max-height: 610px !important;
    object-fit: contain !important;
  }
  body:has(.hero) .trust-strip {
    margin-top: -96px !important;
    margin-bottom: 18px !important;
    z-index: 8 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body:has(.hero) .hero-inner {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
  body:has(.hero) .hero-title {
    font-size: clamp(54px, 6vw, 68px) !important;
  }
  body:has(.hero) .hero-astronaut {
    width: clamp(360px, 34vw, 440px) !important;
    right: 46px !important;
    top: 174px !important;
  }
  body:has(.hero) .hero-buttons .btn {
    width: 350px !important;
  }
}

/* ─── Desktop navbar: keep all items inside pill ────────── */
@media (min-width: 901px) {
  .site-header .nav-pill,
  body:has(.hero) .site-header .nav-pill {
    width: min(1168px, calc(100vw - 64px)) !important;
    padding: 0 clamp(24px, 3vw, 40px) !important;
    gap: clamp(18px, 2vw, 30px) !important;
  }
  .site-header .nav-logo {
    flex: 0 0 clamp(250px, 29vw, 350px) !important;
    min-width: clamp(250px, 29vw, 350px) !important;
    max-width: clamp(250px, 29vw, 350px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
  }
  .site-header .nav-logo img {
    height: clamp(40px, 4vw, 52px) !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
  .site-header .nav-links {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    gap: clamp(16px, 1.65vw, 24px) !important;
    white-space: nowrap !important;
  }
  .site-header .nav-links li a {
    font-size: clamp(13px, 1.05vw, 16px) !important;
    letter-spacing: .02em !important;
  }
  .site-header .nav-links li.active a {
    padding: 7px clamp(12px, 1.12vw, 16px) !important;
  }
}

/* ─── Desktop home: remove oversized white gap before social CTA ─ */
@media (min-width: 901px) {
  body:has(.hero) .trust-strip + .cloud-top {
    display: none !important;
  }
  body:has(.hero) .trust-strip {
    margin-top: -78px !important;
    margin-bottom: 18px !important;
  }
  body:has(.hero) .trust-strip + .cloud-top + .social-cta,
  body:has(.hero) .social-cta {
    margin-top: 22px !important;
  }
}


/* ─── Desktop navbar: prevent logo/menu overlap ────────── */
@media (min-width: 901px) {
  .site-header .nav-logo {
    margin-right: clamp(10px, 1.4vw, 20px) !important;
  }
  .site-header .nav-links {
    overflow: hidden !important;
  }
}
