*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #D92D2D;
    --red-dim: #A81F1C;
    --red-glow: rgba(217,45,45,0.18);
    --red-subtle: rgba(217,45,45,0.08);
    --bg: #111111;
    --bg2: #17171A;
    --bg3: #1C1C20;
    --text: #ECECEE;
    --muted: #8C8C94;
    --border: rgba(217,45,45,0.15);
    --border-bright: rgba(217,45,45,0.4);
  }

  /* ── FONDO GLOBAL COMPARTIDO (imagen) ─── */
  .page-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: #0a0505 url('media/page-bg.png') center/cover no-repeat;
    pointer-events: none;
  }

  .page-bg-scrim {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 50% 38%, rgba(10,5,5,0.3) 0%, rgba(10,5,5,0.75) 100%),
      linear-gradient(180deg, rgba(10,5,5,0.65) 0%, rgba(10,5,5,0.3) 25%, rgba(10,5,5,0.4) 70%, rgba(10,5,5,0.85) 100%);
  }

  html {
    scrollbar-color: var(--red-dim) var(--bg); 
    scrollbar-width: thin; 
    background-color: #0a0505;
  }
  ::-webkit-scrollbar { width: 8px; height: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--red-dim), var(--red));
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--red); }

  /* ── SPOTLIGHT HOVER (Aura dentro de la tarjeta) ── */
  .sintoma-card, .service-card, .comp-card, .testi-card, .cta-box {
    position: relative;
    overflow: hidden;
    --mx: 50%; --my: 50%;
  }
  .sintoma-card > *, .service-card > *, .comp-card > *, .testi-card > *, .cta-box > * {
    position: relative;
    z-index: 2;
  }
  .spotlight-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mx) var(--my), rgba(217,45,45,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
  }
  .sintoma-card:hover .spotlight-overlay,
  .service-card:hover .spotlight-overlay,
  .comp-card:hover .spotlight-overlay,
  .testi-card:hover .spotlight-overlay,
  .cta-box:hover .spotlight-overlay {
    opacity: 1;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #0a0505;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
  }

  h1, h2, h3, h4, .brand {
    font-family: 'Oxanium', sans-serif;
    line-height: 1.15;
  }

  /* ── NAV (flotante, transparente) ─────────────── */
  nav {
    position: fixed;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(10,10,12,0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.4);
  }

  /* Logo — caja propia, ancla fija en la esquina superior izquierda */
  .nav-logo-box {
    position: fixed;
    top: 14px; left: 14px;
    z-index: 101;
    padding: 0.55rem 1rem;
    background: rgba(10,10,12,0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.4);
    transition: background 0.3s, border-color 0.3s;
  }

  .nav-logo {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-logo span { color: var(--red); }

  /* Crédito del desarrollador — misma píldora glass que el logo, en la esquina opuesta */
  .nav-credit {
    position: fixed;
    top: 14px; right: 14px;
    z-index: 101;
    padding: 0.55rem 1rem;
    background: rgba(10,10,12,0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.4);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.25s, border-color 0.25s;
  }

  .nav-credit strong {
    color: #fff;
    font-weight: 700;
    transition: color 0.25s;
  }

  .nav-credit:hover { border-color: var(--red); }
  .nav-credit:hover strong { color: var(--red); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
  }

  .nav-links li { position: relative; }

  .nav-links > li > a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 0.03em;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.2rem;
    border-radius: 10px;
    border: 1px solid transparent;
  }

  .nav-links > li > a:hover { color: #fff; }

  /* Microinteracción: el botón se despliega hacia el costado y el emoji
     aparece a la izquierda del texto */
  .nav-emoji {
    display: inline-block;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.3) rotate(-20deg);
    margin-right: -0.35rem;
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.25s ease,
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                margin-right 0.35s ease;
    font-size: 0.95rem;
    line-height: 1;
    filter: grayscale(100%);
  }

  .nav-links > li > a:hover .nav-emoji {
    width: 1.1em;
    opacity: 1;
    transform: scale(1) rotate(0deg);
    margin-right: 0;
  }

  .nav-links > li > a.nav-link-active {
    color: #fff;
    background: rgba(217,45,45,0.14);
    border-color: rgba(217,45,45,0.35);
    padding: 0.5rem 0.9rem;
  }

  .nav-links > li > a.nav-link-active svg { width: 14px; height: 14px; stroke: var(--red); fill: none; }

  .nav-links .chevron {
    width: 11px; height: 11px;
    stroke: currentColor; fill: none; stroke-width: 2.2;
    transition: transform 0.25s;
  }

  .nav-links li.has-dropdown:hover > a .chevron { transform: rotate(180deg); }
  .nav-links li.has-dropdown:hover > a { color: var(--red); }

  .nav-dropdown {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    min-width: 230px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav-links li.has-dropdown:hover .nav-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
  }

  .nav-dropdown-inner {
    background: rgba(10,10,12,0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.55);
    transform: translateY(-6px);
    transition: transform 0.22s ease;
  }

  .nav-links li.has-dropdown:hover .nav-dropdown-inner { transform: translateY(0); }

  .nav-dropdown-inner a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }

  .nav-dropdown-inner a:hover { background: rgba(217,45,45,0.1); color: #fff; }
  .nav-dropdown-icon { font-size: 1.05rem; line-height: 1; filter: grayscale(100%); }

  .nav-badge-new {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: var(--red);
    color: #fff;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.15rem;
  }

  .nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover {
    background: #F14343 !important;
    box-shadow: 0 0 20px rgba(217,45,45,0.4);
    color: #fff !important;
  }

  /* ── HERO ────────────────────────────────────── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 5rem;
    overflow: hidden;
  }

  #hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-subtle);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-family: 'Oxanium', sans-serif;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
  }

  /* LOGO PLACEHOLDER */
  .logo-placeholder {
    width: 90px; height: 90px;
    border-radius: 16px;
    background: var(--red-subtle);
    border: 2px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.65rem;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-direction: column;
    gap: 4px;
  }

  .logo-placeholder svg {
    width: 36px; height: 36px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
  }

  .hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .hero-logo-img {
    width: 220px; height: 220px;
    border-radius: 36px;
    object-fit: cover;
    display: block;
    animation: popLogo 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes popLogo {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .hero-wordmark {
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: revealBrandText 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes revealBrandText {
    0% { max-width: 0; opacity: 0; }
    30% { max-width: 0; opacity: 0; }
    100% { max-width: 600px; opacity: 1; }
  }

  .hero-wordmark span { color: var(--red); text-shadow: 0 0 35px rgba(217,45,45,0.5); }

  h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
  }

  h1 .accent { color: var(--red); }

  .typewriter-cursor {
    display: inline-block;
    width: 0.55em;
    height: 3px;
    margin-left: 4px;
    background: var(--red);
    vertical-align: 0;
    opacity: 0;
  }
  .typewriter-cursor.blink {
    animation: cursorBlink 1s step-end infinite;
  }
  @keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .typewriter-cursor.blink { animation: none; opacity: 1; }
  }

  .hero-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }
  .hero-sub strong {
    color: #fff;
    font-weight: 700;
  }

  .hero-stats-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .stat-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(17, 17, 17, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.1rem;
    border-radius: 12px;
  }

  .stat-pill strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
  }

  .stat-pill span {
    font-size: 0.72rem;
    color: var(--muted);
    border-left: 1px solid var(--border-bright);
    padding-left: 0.6rem;
  }

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

  /* ── HERO SHOWCASE (app.html: panel contenido con texto + dashboard real difuminado) ── */
  #hero.hero-showcase {
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 8rem 4vw 1.5rem;
  }

  .hero-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: radial-gradient(90% 120% at 10% 12%, rgba(140, 18, 24, 0.42), transparent 58%), var(--bg);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 4rem 3.5rem;
    display: flex;
    align-items: center;
  }

  .hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 64px);
    -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 65%);
    mask-image: linear-gradient(90deg, black 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-showcase .hero-content {
    position: relative;
    z-index: 2;
    align-items: stretch;
    text-align: left;
    margin: 0;
    max-width: 480px;
  }

  .hero-showcase .hero-brand {
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .hero-showcase .hero-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    animation: none;
  }

  .hero-showcase .hero-wordmark {
    font-size: 1.2rem;
    animation: none;
    max-width: none;
  }

  .hero-showcase .hero-eyebrow {
    text-align: left;
  }

  .hero-showcase .hero-sub {
    text-align: left;
    margin: 0 0 2.5rem;
  }

  .hero-showcase .hero-stats-pills,
  .hero-showcase .hero-actions {
    justify-content: flex-start;
  }

  .hero-shot {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-shot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
      var(--bg) 0%, var(--bg) 14%,
      rgba(17,17,17,0.86) 24%,
      rgba(17,17,17,0.52) 34%,
      rgba(17,17,17,0.24) 44%,
      rgba(17,17,17,0.06) 54%,
      transparent 64%);
  }

  .hero-shot img {
    position: absolute;
    top: 52%;
    right: -6%;
    transform: translateY(-50%) rotate(-1deg);
    width: 76%;
    min-width: 600px;
    max-width: 980px;
    border-radius: 16px;
    filter: blur(2px) brightness(0.62) contrast(1) saturate(0.95);
    -webkit-mask-image: radial-gradient(ellipse 68% 66% at 66% 50%,
      black 0%, black 36%,
      rgba(0,0,0,0.9) 50%,
      rgba(0,0,0,0.6) 64%,
      rgba(0,0,0,0.25) 78%,
      transparent 94%);
    mask-image: radial-gradient(ellipse 68% 66% at 66% 50%,
      black 0%, black 36%,
      rgba(0,0,0,0.9) 50%,
      rgba(0,0,0,0.6) 64%,
      rgba(0,0,0,0.25) 78%,
      transparent 94%);
  }

  @media (max-width: 980px) {
    #hero.hero-showcase {
      padding: 7rem 1.25rem 3rem;
    }
    .hero-panel {
      padding: 2.75rem 1.75rem;
      min-height: 0;
      border-radius: 20px;
    }
    .hero-shot img {
      width: 100%;
      min-width: 0;
      right: 0;
      opacity: 0.35;
      -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 25%, transparent 82%);
      mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 25%, transparent 82%);
    }
    .hero-shot::after { display: none; }
    .hero-showcase .hero-content {
      align-items: stretch;
      text-align: center;
      max-width: 100%;
    }
    .hero-showcase .hero-brand,
    .hero-showcase .hero-stats-pills,
    .hero-showcase .hero-actions {
      justify-content: center;
    }
    .hero-showcase .hero-eyebrow,
    .hero-showcase .hero-sub {
      text-align: center;
    }
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(80, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160, 20, 30, 0.4);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    box-shadow: 0 6px 25px rgba(80, 10, 15, 0.4);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(110, 15, 20, 1);
    border-color: rgba(200, 30, 40, 0.5);
    box-shadow: 0 8px 30px rgba(80, 10, 15, 0.6);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-bright);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover {
    background: var(--red-subtle);
    border-color: var(--red);
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .stat {
    text-align: center;
  }

  .stat-num {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    display: block;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── SECTION BASE ─────────────────────────────── */
  section { position: relative; padding: 3.5rem 1.5rem; }

  .container { max-width: 1350px; margin: 0 auto; }

  .section-label {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.75rem;
    color: var(--red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--muted);
    max-width: 560px;
    font-size: 1.05rem;
  }

  /* ── SÍNTOMAS ─────────────────────────────────── */
  #sintomas {
    background: rgba(10, 6, 8, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sintomas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
  }
  @media (max-width: 900px) {
    .sintomas-layout { grid-template-columns: 1fr; }
  }

  .sintomas-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .sintoma-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.25s;
    cursor: default;
  }

  .sintoma-card:hover {
    background: rgba(17, 17, 17, 0.75);
    border-color: rgba(255, 75, 75, 0.25);
    transform: translateX(-6px);
    box-shadow: 10px 14px 40px rgba(255,75,75,0.08);
  }

  .sintoma-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(255,75,75,0.1);
    border: 1px solid rgba(255,75,75,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sintoma-icon svg {
    width: 22px; height: 22px;
    stroke: #FF6B6B;
    fill: none;
    stroke-width: 1.75;
  }

  .sintoma-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .sintoma-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }

  .sintoma-card-content p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
  }

  /* ── RESULTADOS / DASHBOARD ───────────────────── */
  #resultados { background: transparent; }

  /* ── VELOCIDAD / RELOJ TURBO ───────────────────── */
  #velocidad {
    background: rgba(10, 6, 8, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .dashboard {
    margin-top: 1.75rem;
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
  }

  .dashboard::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(217,45,45,0.1), transparent 70%);
    pointer-events: none;
  }

  .dash-label {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 2rem;
  }

  .fps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .fps-block { text-align: center; }

  .fps-label {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
  }

  .fps-label.before { color: #FF6B6B; }
  .fps-label.after  { color: #39FF8F; }

  .fps-num {
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    line-height: 1;
    display: block;
  }

  .fps-num.before { font-size: 3.5rem; color: #FF6B6B; }
  .fps-num.after  { font-size: 4.5rem; color: #39FF8F; }

  .fps-arrow {
    font-size: 2.5rem;
    color: var(--muted);
    line-height: 1;
    padding-top: 0.5rem;
  }

  .fps-bar-wrap {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }

  .fps-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, #ff0055 0%, #a200ff 33%, #00e5ff 66%, #39FF8F 100%);
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .fps-disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
    opacity: 0.65;
  }

  /* ── NIVEL COMPETITIVO ────────────────────────── */
  #competitivo { background: transparent; }

  .competitivo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
  }
  @media (max-width: 900px) {
    .competitivo-layout {
      grid-template-columns: 1fr;
    }
  }

  .comp-mockup {
    position: relative;
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .comp-mockup-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; height: 250px;
    background: rgba(217,45,45,0.12);
    filter: blur(60px);
    pointer-events: none;
  }
  .comp-mockup-app {
    position: relative;
    z-index: 2;
  }
  .mockup-bar {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 0.85rem;
    overflow: hidden;
  }
  .mockup-bar-fill {
    height: 100%;
    background: var(--red);
    border-radius: 10px;
  }

  .competitivo-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .comp-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.25s;
    cursor: default;
  }
  .comp-card:hover {
    background: rgba(17, 17, 17, 0.75);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(6px);
    box-shadow: -10px 14px 40px rgba(217,45,45,0.08);
  }
  
  .comp-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(217,45,45,0.1);
    border: 1px solid rgba(217,45,45,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .comp-icon svg {
    width: 22px; height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.75;
  }
  
  .comp-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .comp-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }
  .comp-card-content p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
  }

  /* ── SERVICES (Generic Cards) ────────────────── */
  .service-card {
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .service-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(217,45,45,0.12);
  }
  .service-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--red-subtle);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .service-icon svg {
    width: 22px; height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.75;
  }
  .service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
  }
  .service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── PRICING PLAN CARDS (New Premium Design) ─── */
  .pricing-plan-card {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 0 0 2rem 0;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  .pricing-plan-card-body {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .pricing-plan-card:hover {
    border-color: rgba(217,45,45,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(217,45,45,0.12);
  }

  .pricing-header {
    position: relative;
    padding: 2rem 2rem 1.5rem;
    min-height: 92px;
    display: flex;
    align-items: flex-start;
    background-color: rgba(17, 17, 17, 0.6);
    background-image: radial-gradient(circle, rgba(217,45,45,0.2) 1px, transparent 1px);
    background-size: 10px 10px;
    background-position: 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 2rem;
  }
  .pricing-header::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 15px var(--red);
  }
  .pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
  }

  .service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
  }
  .price-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    letter-spacing: -0.03em;
  }
  .price-val span {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
  }
  .price-val .price-amount {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.03em;
  }

  .plan-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .plan-cancel-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--muted);
    margin-bottom: 1.75rem;
  }
  .price-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .price-time svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

  .service-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .service-maint {
    margin: 1.5rem 0;
    padding: 1.15rem 1.25rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .service-maint-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .service-maint-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .service-maint-label::before {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1;
  }
  .service-maint-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
  }
  .service-maint-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
  }

  .service-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(80,20,20,0.8), rgba(20,10,10,0.8));
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
  }
  .service-cta-btn:hover {
    border-color: rgba(255,255,255,0.3);
    background: linear-gradient(180deg, rgba(100,25,25,0.9), rgba(30,15,15,0.9));
  }
  .service-cta-btn-primary {
    background: linear-gradient(180deg, rgba(120,25,25,0.9), rgba(40,15,15,0.9));
    border-color: rgba(217,45,45,0.4);
  }
  .service-cta-btn-primary:hover {
    background: linear-gradient(180deg, rgba(150,30,30,0.9), rgba(60,20,20,0.9));
    border-color: rgba(217,45,45,0.6);
  }

  .service-features-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }
  .service-features-list li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--muted);
    align-items: flex-start;
    line-height: 1.5;
  }
  .service-features-list li .check {
    color: var(--red);
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1rem;
  }

  .service-learn-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    background: rgba(25,25,25,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s;
  }
  .service-learn-more:hover {
    background: rgba(40,40,40,0.8);
    border-color: rgba(255,255,255,0.15);
  }
  .service-learn-more svg {
    width: 22px;
    height: 22px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 4px;
  }

  #servicios { background: transparent; padding-top: 9rem; }

  /* ── BANNER "NUESTROS SERVICIOS" ──────────────── */
  .servicios-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(10, 10, 12, 0.68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 5rem 2rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .servicios-banner .section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }

  .servicios-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px);
    -webkit-mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 40%, transparent 96%);
    mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 40%, transparent 96%);
    pointer-events: none;
  }

  .servicios-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(217, 45, 45, 0.22), transparent 68%);
    filter: blur(6px);
    pointer-events: none;
  }

  .servicios-banner .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }

  .servicios-tags {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .servicios-tag {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.02);
  }

  .servicios-tag.is-red { color: #ff8080; border-color: rgba(217, 45, 45, 0.45); background: rgba(217, 45, 45, 0.08); }
  .servicios-tag.is-blue { color: #7fb3ff; border-color: rgba(59, 130, 246, 0.4); background: rgba(59, 130, 246, 0.08); }
  .servicios-tag.is-green { color: #6fe3a3; border-color: rgba(57, 255, 143, 0.35); background: rgba(57, 255, 143, 0.07); }

  @media (max-width: 600px) {
    .servicios-banner {
      padding: 2.5rem 1.5rem;
      border-radius: 18px;
    }
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.75rem;
    align-items: stretch;
  }

  #servicios .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── PÁGINA DE PAGOS ─────────────────────────── */
  .pay-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
    align-items: stretch;
  }

  .pay-method-card {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .pay-method-card:hover {
    border-color: rgba(217,45,45,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(217,45,45,0.12);
  }

  .pay-method-icon {
    width: 28px; height: 28px;
    stroke: var(--red);
    fill: none;
    margin-bottom: 1.25rem;
  }
  .pay-method-icon svg { width: 100%; height: 100%; }

  .pay-method-badge {
    display: inline-block;
    align-self: flex-start;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(217,45,45,0.08);
    border: 1px solid rgba(217,45,45,0.25);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.9rem;
  }

  .pay-method-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
  }

  .pay-method-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .pay-duration-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .duration-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .duration-pill:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
  .duration-pill.selected {
    background: rgba(217,45,45,0.12);
    border-color: rgba(217,45,45,0.5);
    color: #fff;
  }
  .duration-pill-badge {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ff8a8a;
  }
  .duration-pill.selected .duration-pill-badge { color: #fff; }

  .pay-method-note {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 0.75rem;
  }

  .pay-method-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .pay-back-link {
    margin-top: 2.5rem;
    text-align: center;
  }
  .pay-back-link a {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
  }
  .pay-back-link a:hover { color: var(--red); }

  @media (max-width: 900px) {
    .pay-methods-grid { grid-template-columns: 1fr; }
  }

  /* ── AVISO SMARTSCREEN ───────────────────────── */
  .smartscreen-note {
    max-width: 640px;
    margin: 0 auto 4rem;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 0.3rem 1.5rem;
  }

  .smartscreen-note summary {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #fff;
  }
  .smartscreen-note summary::-webkit-details-marker { display: none; }

  .smartscreen-note-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
  }

  .smartscreen-note summary span {
    flex-grow: 1;
  }

  .smartscreen-note-chevron {
    width: 16px; height: 16px;
    flex-shrink: 0;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    transition: transform 0.25s;
  }
  .smartscreen-note[open] .smartscreen-note-chevron {
    transform: rotate(180deg);
  }

  .smartscreen-note-body {
    padding: 0 0 1.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
  }
  .smartscreen-note-body p { margin-bottom: 1rem; }
  .smartscreen-note-body ol {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .smartscreen-note-body strong { color: #fff; }

  /* ── STOCK VS TMBOOST ────────────────────────── */
  .stockvs-panels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
  }

  .stockvs-panel {
    background: rgba(12,12,12,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  }

  .stockvs-panel-boost {
    border-color: rgba(217,45,45,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(217,45,45,0.08);
  }

  .stockvs-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(217,45,45,0.1);
    border: 1px solid rgba(217,45,45,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stockvs-arrow svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }

  .stockvs-gauge-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(0,0,0,0.35);
    padding: 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 1.75rem;
  }
  .stockvs-gauge { position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .stockvs-gauge-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #ccc;
  }
  .stockvs-gauge-label-boost { color: #fff; text-shadow: 0 0 12px rgba(217,45,45,0.4); }
  .stockvs-gauge-title { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; color: #fff; margin-bottom: 0.3rem; }
  .stockvs-gauge-sub { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

  .stockvs-metrics { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.5rem; }

  .stockvs-metric-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
  }
  .stockvs-metric-icon { width: 15px; height: 15px; stroke: #777; fill: none; stroke-width: 1.8; flex-shrink: 0; }
  .stockvs-metric-icon-boost { stroke: var(--red); }
  .stockvs-metric-label { font-size: 0.78rem; color: #bbb; text-transform: uppercase; letter-spacing: 0.04em; flex-grow: 1; }
  .stockvs-metric-val { font-size: 0.85rem; font-weight: 700; color: #ddd; }
  .stockvs-metric-val-boost { color: #fff; }

  .stockvs-bar { width: 100%; background: rgba(255,255,255,0.05); height: 6px; border-radius: 3px; overflow: hidden; }
  .stockvs-bar-fill { height: 100%; border-radius: 3px; }
  .stockvs-bar-fill-stock { background: #6b6b70; }
  .stockvs-bar-fill-boost { background: linear-gradient(90deg, #ff4b4b, #ff7a7a); box-shadow: 0 0 10px rgba(255,75,75,0.5); }

  .stockvs-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .stockvs-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  .stockvs-tag-bad { color: #d97a7a; background: rgba(217,90,90,0.08); border: 1px solid rgba(217,90,90,0.25); }
  .stockvs-tag-good { color: #6fe3a0; background: rgba(111,227,160,0.08); border: 1px solid rgba(111,227,160,0.25); }

  .stockvs-footnote {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0.7;
  }

  @media (max-width: 900px) {
    .stockvs-panels { grid-template-columns: 1fr; }
    .stockvs-arrow { transform: rotate(90deg); margin: 0 auto; }
  }

  .featured-wrap { position: relative; }
  .featured-ribbon {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(100,20,20,0.9);
    color: #ff6b6b;
    border: 1px solid rgba(217,45,45,0.4);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    padding: 0.25rem 1.25rem;
    border-radius: 100px;
    z-index: 10;
    white-space: nowrap;
  }

  /* ── HOW IT WORKS ────────────────────────────── */
  #como-funciona { background: transparent; }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
  }

  .step {
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: background 0.25s, box-shadow 0.25s;
  }

  .step:hover .step-num {
    background: var(--red-subtle);
    box-shadow: 0 0 25px rgba(217,45,45,0.3);
  }

  .step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── TESTIMONIOS ─────────────────────────────── */
  #testimonios { background: transparent; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
  }

  .testi-card {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .testi-card:hover {
    border-color: rgba(217,45,45,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(217,45,45,0.12);
  }

  .testi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .testi-verified {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .log-check {
    color: #39FF8F;
    font-size: 0.8rem;
  }

  .log-rating {
    display: flex;
    align-items: flex-end;
    gap: 2px;
  }

  .log-rating i {
    display: block;
    width: 3px;
    height: 11px;
    border-radius: 1px;
    background: var(--red);
    box-shadow: 0 0 6px rgba(217,45,45,0.4);
  }

  .testi-quote {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex-grow: 1;
  }

  .testi-author {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
  }

  @media (max-width: 600px) {
    .testi-grid { grid-template-columns: 1fr; }
  }

  /* ── CTA FINAL / CONTACTO ────────────────────── */
  #contacto {
    background: transparent;
    text-align: center;
  }

  .contacto-banner {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    border-radius: 26px;
    background: rgba(10, 10, 12, 0.68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 3.5rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .contacto-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px);
    -webkit-mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 40%, transparent 96%);
    mask-image: radial-gradient(ellipse 85% 100% at 50% 50%, black 40%, transparent 96%);
    pointer-events: none;
  }

  .contacto-banner-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 160%;
    background: radial-gradient(ellipse at center, rgba(217, 45, 45, 0.22), transparent 68%);
    filter: blur(6px);
    pointer-events: none;
  }

  .contacto-banner .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.6rem;
  }

  .contacto-banner-sub {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto;
  }

  .contacto-panel {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.5);
    text-align: left;
  }

  .contacto-info {
    padding: 2.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }

  .contacto-info-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--red-subtle);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contacto-info-icon svg {
    width: 22px; height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.75;
  }

  .contacto-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
  }

  .contacto-info p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
  }

  .contacto-channels {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
  }

  .channel-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: background 0.2s;
  }

  .channel-row:hover { background: rgba(255, 255, 255, 0.05); }

  .channel-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid;
  }

  .channel-icon svg { width: 22px; height: 22px; }

  .channel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
  }

  .channel-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Oxanium', sans-serif;
  }

  .channel-text span {
    color: var(--muted);
    font-size: 0.78rem;
  }

  .channel-arrow {
    width: 16px; height: 16px;
    stroke: var(--muted);
    fill: none;
    flex-shrink: 0;
    transition: transform 0.2s, stroke 0.2s;
  }

  .channel-row:hover .channel-arrow {
    stroke: #fff;
    transform: translateX(3px);
  }

  .channel-whatsapp .channel-icon { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.35); }
  .channel-whatsapp .channel-icon svg { fill: #25D366; }
  .channel-instagram .channel-icon { background: rgba(200,55,171,0.08); border-color: rgba(200,55,171,0.35); }
  .channel-facebook .channel-icon { background: rgba(24,119,242,0.08); border-color: rgba(24,119,242,0.35); }
  .channel-facebook .channel-icon svg { fill: #1877F2; }

  @media (max-width: 760px) {
    .contacto-panel { grid-template-columns: 1fr; }
    .contacto-info { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: center; text-align: center; }
    .contacto-banner { padding: 2.5rem 1.5rem; }
  }

  /* agenda placeholder */
  .agenda-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border: 1px dashed var(--border-bright);
    border-radius: 100px;
    font-size: 0.78rem;
    font-family: 'Oxanium', sans-serif;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    opacity: 0.7;
  }

  .agenda-pill svg {
    width: 14px; height: 14px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 1.5;
  }

  /* ── FOOTER ──────────────────────────────────── */
  footer {
    position: relative;
    background: transparent;
    border-top: 1px solid var(--border);
    padding: 3.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-top {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    max-width: 320px;
  }

  footer .brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  footer .brand img { margin-right: 0.6rem; }

  footer .brand span { color: var(--red); }

  .footer-tagline {
    font-size: 0.88rem;
    color: var(--muted);
    text-align: left;
    line-height: 1.5;
    margin: 0;
  }

  .footer-social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .footer-social a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid;
    background: rgba(255,255,255,0.02);
    transition: background 0.2s, border-color 0.2s;
  }

  .footer-social svg {
    width: 26px;
    height: 26px;
  }

  .footer-social a.social-whatsapp {
    border-color: rgba(37,211,102,0.35);
    background: rgba(37,211,102,0.08);
  }
  .footer-social a.social-whatsapp:hover { background: rgba(37,211,102,0.16); }
  .footer-social a.social-whatsapp svg { fill: #25D366; }

  .footer-social a.social-instagram {
    border-color: rgba(200,55,171,0.35);
    background: rgba(200,55,171,0.08);
  }
  .footer-social a.social-instagram:hover { background: rgba(200,55,171,0.16); }

  .footer-social a.social-facebook {
    border-color: rgba(24,119,242,0.35);
    background: rgba(24,119,242,0.08);
  }
  .footer-social a.social-facebook:hover { background: rgba(24,119,242,0.16); }
  .footer-social a.social-facebook svg { fill: #1877F2; }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--red); }

  .footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

  /* ── ANIMATIONS ──────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  .hero-content > * {
    animation: fadeUp 0.7s ease both;
  }

  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.6s; }
  .hero-content > *:nth-child(7) { animation-delay: 0.7s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  .sintoma-icon svg, .service-icon svg, .comp-icon svg {
    animation: float 4s ease-in-out infinite;
  }
  .service-card, .sintoma-card, .comp-card {
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  .service-card:hover, .sintoma-card:hover, .comp-card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* ── MODAL CALENDARIO ────────────────────────── */
  .modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,6,14,0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .modal-overlay.active { opacity: 1; visibility: visible; }
  .modal-content {
    background: var(--bg2);
    border: 1px solid var(--border-bright);
    border-radius: 16px;
    width: 90%; max-width: 420px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }
  .modal-overlay.active .modal-content { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 1rem; right: 1.25rem;
    background: transparent; border: none; color: var(--muted);
    font-size: 1.8rem; cursor: pointer; transition: color 0.2s; line-height:1;
  }
  .modal-close:hover { color: #fff; }

  .modal-content-wide {
    max-width: 620px;
    max-height: 85vh;
    max-height: 85dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* ── PERIODICIDAD DE PAGO ────────────────────── */
  .period-toggle {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .period-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .period-btn:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
  .period-btn.selected {
    background: rgba(217,45,45,0.12);
    border-color: rgba(217,45,45,0.5);
    color: #fff;
  }
  .period-badge {
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
  }
  .period-btn:not(.selected) .period-badge {
    background: rgba(217,45,45,0.2);
    color: #ff8a8a;
  }

  .price-savings {
    font-size: 0.78rem;
    color: var(--red);
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.5rem;
    line-height: 1.4;
  }

  /* ── ANALIZADOR DE PC ────────────────────────── */
  .analyzer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: rgba(217,45,45,0.06);
    border: 1px solid rgba(217,45,45,0.25);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
  }
  .analyzer-banner-text h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
  }
  .analyzer-banner-text p {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 460px;
  }

  .analyzer-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .analyzer-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
  }

  .analyzer-field { margin-bottom: 1.25rem; }
  .analyzer-field > label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .analyzer-field select {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C8C94' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 16px;
  }
  .analyzer-field select:focus { outline: none; border-color: var(--red); }

  .analyzer-brand-toggle {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .analyzer-brand-btn {
    flex: 1;
    min-width: 110px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .analyzer-brand-btn:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
  .analyzer-brand-btn.selected {
    background: rgba(217,45,45,0.12);
    border-color: rgba(217,45,45,0.5);
    color: #fff;
  }

  .analyzer-checks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .analyzer-check {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--muted);
    cursor: pointer;
    font-weight: 400;
  }
  .analyzer-check input {
    width: 16px; height: 16px;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
  }

  .analyzer-result-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(217,45,45,0.1);
    border: 1px solid rgba(217,45,45,0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
  }
  .analyzer-result-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
  }
  .analyzer-result-reason {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .analyzer-restart-link {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
  }
  .analyzer-restart-link:hover { color: #fff; }

  @media (max-width: 640px) {
    .analyzer-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .analyzer-banner-text p { max-width: none; }
  }
  .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
  .cal-nav { 
    background: var(--bg3); border: 1px solid var(--border); color: #fff; 
    border-radius: 8px; width: 36px; height: 36px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  }
  .cal-nav:hover { background: var(--red); border-color: var(--red); }
  .cal-month-title { font-family: 'Oxanium', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: capitalize;}
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; text-align: center; margin-bottom: 0.5rem;}
  .cal-day-name { font-family: 'Oxanium', sans-serif; font-size: 0.75rem; color: var(--muted); padding-bottom: 0.5rem;}
  .cal-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; text-align: center; }
  .cal-day { 
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; cursor: pointer; border: 1px solid transparent; font-size: 0.9rem;
    transition: background 0.2s, border 0.2s, color 0.2s; background: var(--bg3);
  }
  .cal-day:hover:not(.disabled):not(.empty) { border-color: var(--border-bright); }
  .cal-day.disabled { opacity: 0.3; cursor: not-allowed; background: transparent; }
  .cal-day.empty { background: transparent; cursor: default; }
  .cal-day.selected { background: var(--red); color: #fff; font-weight: bold; box-shadow: 0 0 15px rgba(217,45,45,0.4); border-color:var(--red);}
  
  .time-slots-container { margin-top: 1.5rem; display: none; }
  .time-slots-container.active { display: block; animation: fadeUp 0.3s ease both;}
  .time-slots-title { font-family: 'Oxanium', sans-serif; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.75rem; text-align: center;}
  .time-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; 
    max-height: 160px; overflow-y: auto; padding-right: 5px; 
  }
  /* Time grid scrollbar */
  .time-grid::-webkit-scrollbar { width: 4px; }
  .time-grid::-webkit-scrollbar-track { background: transparent; }
  .time-grid::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 4px; }
  .time-slot { 
    background: var(--bg); border: 1px solid var(--border); border-radius: 6px; 
    padding: 0.5rem 0; text-align: center; font-family: 'Oxanium', sans-serif; font-size: 0.85rem;
    cursor: pointer; transition: all 0.2s; color: var(--text);
  }
  .time-slot:hover { border-color: var(--red); background: var(--red-subtle); }
  .time-slot.selected { background: var(--red); color: #fff; border-color: var(--red); }
  
  .confirm-btn-wrapper { margin-top: 1.5rem; display: none; }
  .confirm-btn-wrapper.active { display: block; animation: fadeUp 0.3s ease both;}

  /* ── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.3rem;
      line-height: 1.1;
    }
    .hero-sub {
      font-size: 0.95rem;
    }
    .hero-brand {
      margin-bottom: 1.5rem;
      gap: 0.2rem;
    }
    .hero-logo-img {
      width: 90px;
      height: 90px;
      border-radius: 18px;
    }
    .hero-wordmark {
      font-size: 2rem;
    }
    nav {
      display: flex;
      width: 100%;
      top: 0;
      padding: 0.8rem 1.25rem;
      border-radius: 0;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      background: rgba(10,10,12,0.85);
      justify-content: space-between;
      z-index: 100;
    }
    .mobile-nav-logo {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'Oxanium', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: #fff;
      text-decoration: none;
      z-index: 101;
    }
    .mobile-nav-logo span { color: var(--red); }
    .mobile-nav-logo img { width: 22px; height: 22px; border-radius: 4px; }
    
    .mobile-menu-btn {
      display: block;
      background: transparent;
      border: none;
      color: #fff;
      cursor: pointer;
      z-index: 101;
    }

    .nav-links {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100vh;
      background: rgba(7,6,10,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
      z-index: 99;
      padding: 0;
      margin: 0;
    }
    .nav-links.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-links > li {
      flex-shrink: 0;
    }
    .nav-links > li > a {
      font-size: 1.4rem;
      padding: 0.5rem 1rem;
      gap: 0.75rem;
    }
    .nav-logo-box { display: none !important; }
    .nav-credit { display: none !important; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .steps::before { display: none; }
    .steps { gap: 2rem; }
    footer { flex-direction: column; text-align: center; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand-col { align-items: center; max-width: 100%; }
    footer .brand { justify-content: center; }
    .footer-tagline { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { justify-content: center; text-align: center; }
    /* Fix: forzar visibilidad en móviles que bloquean JS */
    .reveal { opacity: 1 !important; transform: none !important; }

    /* ── BOTONES COMPACTOS EN MÓVIL ───────────────── */
    .btn-primary,
    .btn-secondary {
      padding: 0.6rem 1.25rem;
      font-size: 0.82rem;
      gap: 0.35rem;
    }
    .btn-primary svg,
    .btn-secondary svg {
      width: 15px;
      height: 15px;
    }
    .nav-cta {
      padding: 0.38rem 0.85rem;
      font-size: 0.78rem;
    }
    .hero-actions {
      gap: 0.65rem;
    }
    .cta-actions {
      gap: 0.65rem;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
      padding: 0.6rem 1.1rem;
      font-size: 0.82rem;
    }
  }
  /* ── APP SHOWCASE ─────────────────────────────── */
  #app { background: transparent; padding-top: 2rem; }

  /* Los 4 planes de la app: siempre en una fila en desktop */
  #app-plans { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  #app-plans .service-card { padding: 1.5rem 1.25rem; }
  #app-plans .service-card h3 { font-size: 1.1rem; }
  #app-plans .pricing-header h3 { font-size: 1.2rem; }
  #app-plans .price-val { font-size: 1.8rem; }
  #app-plans .price-val .price-amount { font-size: 1.8rem; }
  #app-plans .service-desc { min-height: 95px; }

  .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin: 3rem 0 3.5rem;
  }
  .plan-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color .25s, transform .25s;
    position: relative;
  }
  .plan-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
  .plan-card.featured { border-color: var(--red); box-shadow: 0 0 30px rgba(217,45,45,0.18); }
  .plan-featured-tag {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: #fff; font-family: 'Oxanium', sans-serif; font-size: .65rem;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px;
    white-space: nowrap;
  }
  .plan-name { font-family: 'Oxanium', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; }
  .plan-price { font-family: 'Oxanium', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--red); margin-top: -0.4rem; }
  .plan-price span { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .03em; margin-top: .15rem; }
  .plan-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: .55rem; font-size: .82rem; color: var(--text); }
  .plan-features li { display: flex; gap: .5rem; align-items: flex-start; line-height: 1.4; }
  .plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
  .plan-cta {
    margin-top: auto; text-align: center; padding: .7rem 1rem; border-radius: 8px;
    font-family: 'Oxanium', sans-serif; font-weight: 700; font-size: .85rem; text-decoration: none;
    border: 1px solid var(--border-bright); color: #fff; transition: background .2s, border-color .2s;
  }
  .plan-card.featured .plan-cta { background: var(--red); border-color: var(--red); }
  .plan-cta:hover { background: var(--red-subtle); border-color: var(--red); }
  .plan-card.featured .plan-cta:hover { background: #c22323; }

  .feature-chip-row {
    display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
    margin: 2.25rem 0 1rem;
  }
  .feature-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .6rem 1.1rem; border-radius: 100px;
    background: var(--bg3); border: 1px solid var(--border);
    font-size: .82rem; color: var(--text); font-family: 'Oxanium', sans-serif; font-weight: 600;
    transition: border-color .2s, transform .2s;
  }
  .feature-chip:hover { border-color: var(--border-bright); transform: translateY(-2px); }
  .feature-chip svg { width: 15px; height: 15px; stroke: var(--red); fill: none; flex-shrink: 0; }

  /* ── APP INTERACTIVE DEMO ─────────────────────── */
  .appdemo-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
  .appdemo {
    border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); 
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(217,45,45,0.06);
    max-width: 1000px; min-width: 760px; margin: 0 auto;
  }
  .appdemo-topbar {
    height: 38px; background: rgba(0,0,0,0.4); display: flex; align-items: center; gap: .5rem; padding: 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .appdemo-dot { width: 10px; height: 10px; border-radius: 50%; }
  .appdemo-dot.r { background: #ff5f56; } .appdemo-dot.y { background: #ffbd2e; } .appdemo-dot.g { background: #27c93f; }
  .appdemo-titletext { margin-left: .5rem; font-family: 'Oxanium', sans-serif; font-size: .72rem; color: #666; letter-spacing: .04em; }
  .appdemo-body { display: flex; height: 570px; position: relative; }
  .appdemo-body::before {
    content: '';
    position: absolute;
    inset: -40px;
    z-index: -1;
    background-image: url('media/page-bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(40px);
    transform: scale(1.1);
  }
  .appdemo-body::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(10,5,5,0.55);
  }
  .appdemo-sidebar {
    width: 210px; flex-shrink: 0; 
    position: relative;
    border-right: 1px solid #1a1a1a;
    display: flex; flex-direction: column; padding: 1rem .7rem; overflow-y: auto;
    z-index: 1;
  }
  .appdemo-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #060606;
    background-image: 
      radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
      linear-gradient(60deg, transparent 40%, rgba(217,45,45,0.25) 40%, rgba(217,45,45,0.25) 43%, transparent 45%),
      linear-gradient(-30deg, transparent 60%, rgba(59,130,246,0.2) 60%, rgba(59,130,246,0.2) 62%, transparent 64%),
      linear-gradient(15deg, transparent 20%, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 21%, transparent 22%),
      radial-gradient(ellipse 80% 80% at 10% 20%, rgba(217,45,45,0.3) 0%, transparent 60%),
      radial-gradient(ellipse 100% 80% at 90% 80%, rgba(59,130,246,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 50% 100%, rgba(217,45,45,0.2) 0%, transparent 60%);
    background-size: 15px 15px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    filter: blur(12px);
    opacity: 0.9;
  }
  .appdemo-brand { display: flex; align-items: center; gap: .6rem; padding: .3rem .5rem 1.1rem; }
  .appdemo-brand img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
  .appdemo-brand strong { display: block; font-family: 'Oxanium', sans-serif; font-size: .8rem; color: #fff; }
  .appdemo-brand span { font-size: .62rem; color: #666; }
  .appdemo-navlabel { font-size: .62rem; color: #555; text-transform: uppercase; letter-spacing: .08em; padding: .6rem .5rem .3rem; }
  .appdemo-navitem {
    display: flex; align-items: center; gap: .6rem; width: 100%; background: none; border: none; cursor: pointer;
    color: #8a8a8a; font-family: 'DM Sans', sans-serif; font-size: .78rem; padding: .5rem .55rem; border-radius: 8px;
    text-align: left; transition: background .15s, color .15s;
  }
  .appdemo-navitem svg { width: 15px; height: 15px; stroke: currentColor; fill: none; flex-shrink: 0; }
  .appdemo-navitem:hover { color: #ddd; background: rgba(255,255,255,0.03); }
  .appdemo-navitem.active { color: #fff; background: #1c1c22; box-shadow: 0 0 14px rgba(217,45,45,0.18); }
  .appdemo-navitem .appdemo-badge { margin-left: auto; font-size: .55rem; font-weight: 700; background: rgba(217,45,45,0.18); color: var(--red); padding: .15rem .35rem; border-radius: 4px; }
  .appdemo-navitem .appdemo-lock { margin-left: auto; opacity: .5; width: 12px !important; height: 12px !important; }
  .appdemo-sidebar-footer { margin-top: auto; display: flex; flex-direction: column; gap: .6rem; padding-top: 1rem; }
  .appdemo-support { display: flex; align-items: center; gap: .5rem; font-size: .72rem; color: #ccc; background: #141414; border: 1px solid #232323; border-radius: 10px; padding: .55rem .7rem; }
  .appdemo-support svg { width: 14px; height: 14px; stroke: #39FF8F; flex-shrink: 0; }
  .appdemo-user { display: flex; align-items: center; gap: .6rem; background: #141414; border: 1px solid #232323; border-radius: 10px; padding: .55rem .7rem; }
  .appdemo-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
  .appdemo-user strong { display: block; font-size: .75rem; color: #eee; }
  .appdemo-user span { font-size: .62rem; color: #888; }

  .appdemo-main { flex: 1; overflow-y: auto; padding: 1.5rem; background: transparent; }
  .appdemo-panel { display: none; }
  .appdemo-panel.active { display: block; animation: fadeUp .35s ease both; }

  .appdemo-h1 { font-size: 1.15rem; font-weight: 700; color: #fff; font-family: 'Oxanium', sans-serif; }
  .appdemo-h1sub { font-size: .72rem; color: #666; margin-top: .25rem; }
  .appdemo-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.3rem; gap: 1rem; flex-wrap: wrap; }
  .appdemo-btn-ghost { font-size: .68rem; padding: .4rem .8rem; border-radius: 7px; border: 1px solid #262626; background: rgba(255,255,255,0.03); color: #ccc; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .15s; white-space: nowrap; }
  .appdemo-btn-ghost:hover { background: rgba(255,255,255,0.07); }

  .appdemo-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1rem; }
  .appdemo-stat-card { background: #141414; border: 1px solid #1e1e1e; border-radius: 14px; padding: 1rem; position: relative; overflow: hidden; }
  .appdemo-stat-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem; }
  .appdemo-stat-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,0.04); border: 1px solid #232323; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .appdemo-stat-icon svg { width: 16px; height: 16px; stroke: #999; fill: none; }
  .appdemo-stat-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
  .appdemo-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; font-family: 'Oxanium', sans-serif; }
  .appdemo-stat-label { font-size: .66rem; color: #777; margin-top: .2rem; }
  .appdemo-ring circle:last-child { transition: stroke-dashoffset 1s ease; }

  .appdemo-lower-row { display: grid; grid-template-columns: 1.65fr 1fr; gap: 1rem; }
  .appdemo-card { background: #141414; border: 1px solid #1e1e1e; border-radius: 14px; padding: 1.25rem; }
  .appdemo-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; gap: .5rem; }
  .appdemo-card-head-left { display: flex; align-items: center; gap: .6rem; }
  .appdemo-card-title { font-size: .92rem; font-weight: 700; color: #fff; }

  .appdemo-chart { position: relative; height: 150px; border-left: 1px solid #262626; border-bottom: 1px solid #262626; margin: 0 .5rem .5rem 2.2rem; }
  .appdemo-chart-fill { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, rgba(217,45,45,.35), rgba(217,45,45,.02)); border-top: 2px solid var(--red); transition: height 1.2s ease; }
  .appdemo-chart-ylabels { position: absolute; left: -2.1rem; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-between; font-size: .58rem; color: #555; }
  .appdemo-chart-tooltip { position: absolute; top: 12px; right: 12px; background: #1a1a1f; border: 1px solid #262626; border-radius: 10px; padding: .4rem .65rem; text-align: center; }
  .appdemo-chart-tooltip small { display: block; font-size: .58rem; color: #666; }
  .appdemo-chart-tooltip strong { font-size: 1rem; color: #fff; font-family: 'Oxanium', sans-serif; }

  .appdemo-optimize-card { border: 1px solid rgba(217,45,45,0.18); background: #141414; border-radius: 14px; padding: 1.25rem; margin-bottom: 1rem; }
  .appdemo-mesh-red, .appdemo-mesh-orange {
    background-color: #121212;
    background-image:
      radial-gradient(125% 125% at 0% 100%, var(--mesh-rgb,rgba(217,45,45,.30)) 0%, var(--mesh-rgb-soft,rgba(217,45,45,.07)) 34%, transparent 62%),
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 100% 100%, 22px 22px, 22px 22px;
  }
  .appdemo-mesh-orange { --mesh-rgb: rgba(249,115,22,.30); --mesh-rgb-soft: rgba(249,115,22,.07); }
  .appdemo-optimize-desc { font-size: .72rem; color: #999; line-height: 1.6; margin: .5rem 0 1rem; min-height: 2.4em; }
  .appdemo-btn-primary { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--red); color: #fff; border: none; padding: .75rem; border-radius: 10px; font-weight: 700; font-size: .82rem; font-family: 'Oxanium', sans-serif; cursor: pointer; transition: background .2s; }
  .appdemo-btn-primary:hover { background: #c22323; }
  .appdemo-btn-primary:disabled { opacity: .7; cursor: wait; }
  .appdemo-btn-ghost-full { width: 100%; margin-top: .7rem; }

  .appdemo-disk-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; font-size: .72rem; color: #ccc; }
  .appdemo-disk-bar { height: 9px; border-radius: 100px; background: #222; border: 1px solid #2c2c2c; overflow: hidden; margin-bottom: 1rem; }
  .appdemo-disk-fill { height: 100%; border-radius: 100px; background: #f59e0b; transition: width .8s ease; }

  /* Tweaks tab */
  .appdemo-filter-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .appdemo-filter-btn { font-size: .7rem; padding: .4rem .8rem; border-radius: 100px; border: 1px solid #262626; background: rgba(255,255,255,0.02); color: #999; cursor: pointer; font-family: 'Oxanium', sans-serif; }
  .appdemo-filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
  .appdemo-search { width: 100%; padding: .6rem .9rem; border-radius: 9px; background: #141414; border: 1px solid #232323; color: #eee; font-size: .78rem; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
  .appdemo-tweak-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .8rem; }
  .appdemo-tweak-card { background: #141414; border: 1px solid #1e1e1e; border-radius: 12px; padding: .9rem; transition: border-color .2s; }
  .appdemo-tweak-card.on { border-color: rgba(217,45,45,0.35); }
  .appdemo-tweak-top { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; }
  .appdemo-tweak-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid #232323; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s; }
  .appdemo-tweak-icon svg { width: 15px; height: 15px; stroke: #999; fill: none; transition: stroke .2s; }
  .appdemo-tweak-card.on .appdemo-tweak-icon { background: rgba(217,45,45,0.1); border-color: rgba(217,45,45,0.3); }
  .appdemo-tweak-card.on .appdemo-tweak-icon svg { stroke: var(--red); }
  .appdemo-tweak-headtext { min-width: 0; flex: 1; }
  .appdemo-tweak-badge { font-size: .55rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #777; background: rgba(255,255,255,0.04); padding: .15rem .4rem; border-radius: 4px; white-space: nowrap; display: inline-block; }
  .appdemo-tweak-title { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .3rem; line-height: 1.25; }
  .appdemo-tweak-desc { font-size: .68rem; color: #888; line-height: 1.5; margin-bottom: .7rem; }
  .appdemo-tweak-bottom { display: flex; justify-content: space-between; align-items: center; }
  .appdemo-tweak-state { font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
  .appdemo-tweak-state.off { color: #666; }
  .appdemo-tweak-state.on { color: var(--red); }

  .appdemo-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
  .appdemo-switch input { opacity: 0; width: 0; height: 0; }
  .appdemo-switch-slider { position: absolute; inset: 0; background: #333; border-radius: 6px; transition: background .2s; cursor: pointer; }
  .appdemo-switch-slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #888; border-radius: 4px; transition: transform .2s, background .2s; }
  .appdemo-switch input:checked + .appdemo-switch-slider { background: var(--red); box-shadow: 0 0 10px rgba(217,45,45,0.5); }
  .appdemo-switch input:checked + .appdemo-switch-slider::before { transform: translateX(18px); background: #fff; }

  /* Games tab */
  .appdemo-games-layout { display: grid; grid-template-columns: 190px 1fr; gap: 1rem; }
  .appdemo-games-list { display: flex; flex-direction: column; gap: .35rem; max-height: 470px; overflow-y: auto; }
  .appdemo-game-item { display: flex; align-items: center; gap: .6rem; padding: .5rem; border-radius: 9px; cursor: pointer; border: 1px solid transparent; background: #141414; text-align: left; }
  .appdemo-game-item:hover { border-color: #262626; }
  .appdemo-game-item.active { border-color: rgba(217,45,45,.4); background: #1a1414; }
  .appdemo-game-avatar { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 800; color: #fff; flex-shrink: 0; }
  .appdemo-game-name { font-size: .74rem; font-weight: 700; color: #eee; line-height: 1.2; }
  .appdemo-game-studio { font-size: .6rem; color: #777; }
  .appdemo-game-detail { background: #141414; border: 1px solid #1e1e1e; border-radius: 14px; padding: 1.3rem; }
  .appdemo-detail-fields { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.2rem 0; }
  .appdemo-field label { display: block; font-size: .62rem; color: #777; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
  .appdemo-field .val { background: #0c0c0c; border: 1px solid #232323; border-radius: 8px; padding: .5rem .7rem; font-size: .8rem; color: #eee; }
  .appdemo-detail-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
  .appdemo-btn-sm { font-size: .72rem; padding: .55rem 1rem; border-radius: 8px; border: 1px solid #262626; background: rgba(255,255,255,0.03); color: #ddd; cursor: pointer; font-family: 'Oxanium', sans-serif; font-weight: 700; }
  .appdemo-btn-sm.primary { background: var(--red); border-color: var(--red); color: #fff; }
  .appdemo-status-ok { display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; color: #22c55e; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); padding: .3rem .7rem; border-radius: 100px; margin-bottom: .6rem; opacity: 0; transition: opacity .25s; }
  .appdemo-status-ok.show { opacity: 1; }

  /* Restore tab */
  .appdemo-restore-form { background: #141414; border: 1px solid #1e1e1e; border-radius: 14px; padding: 1.3rem; margin-bottom: 1.2rem; }
  .appdemo-color-row { display: flex; gap: .5rem; margin: .6rem 0 1rem; flex-wrap: wrap; }
  .appdemo-color-dot { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; padding: 0; }
  .appdemo-color-dot.sel { border-color: #fff; }
  .appdemo-restore-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1rem; }
  .appdemo-restore-inputs input { width: 100%; padding: .55rem .7rem; border-radius: 8px; background: #0c0c0c; border: 1px solid #232323; color: #eee; font-size: .78rem; font-family: 'DM Sans', sans-serif; }
  .appdemo-restore-list { display: flex; flex-direction: column; gap: .5rem; }
  .appdemo-restore-item { display: flex; align-items: center; gap: .7rem; background: #141414; border: 1px solid #1e1e1e; border-radius: 10px; padding: .7rem .9rem; }
  .appdemo-restore-bar { width: 5px; height: 26px; border-radius: 100px; flex-shrink: 0; }
  .appdemo-restore-item strong { display: block; font-size: .78rem; color: #eee; }
  .appdemo-restore-item span { font-size: .64rem; color: #777; }
  .appdemo-empty { font-size: .75rem; color: #666; text-align: center; padding: 1.5rem 0; }

  .appdemo-lockmsg { text-align: center; padding: 3rem 1rem; }
  .appdemo-lockmsg svg { width: 32px; height: 32px; stroke: #444; fill: none; margin: 0 auto 1rem; }
  .appdemo-lockmsg p { font-size: .8rem; color: #777; max-width: 300px; margin: 0 auto 1.2rem; }

  /* ── PRICING GRIDS: responsive (debe ir después de las reglas base) ── */
  @media (max-width: 980px) {
    #app-plans { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    #servicios .services-grid { grid-template-columns: 1fr; }
    #app-plans { grid-template-columns: 1fr; }
  }
/* ── COMO FUNCIONA ZIG ZAG ────────────────────────── */
.zig-zag-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.zig-zag-layout.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.steps-vertical .step {
  text-align: left;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(17, 17, 17, 0.45);
}
.steps-vertical .step-num {
  margin-bottom: 0;
  width: 38px; height: 38px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.steps-vertical .step-content h3 {
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 1.1rem;
}
.steps-vertical .step-content p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 980px) {
  .zig-zag-layout, .zig-zag-layout.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zig-zag-visual {
    grid-row: 1;
  }
  .steps-vertical {
    grid-row: 2;
  }
}

/* ── ZIG ZAG MOCKUPS CSS ──────────────────────────── */
.mockup-container {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(10, 10, 12, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mockup-glow-blue {
  position: absolute; top: -20%; right: -20%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  pointer-events: none; filter: blur(40px);
}
.mockup-glow-red {
  position: absolute; top: -20%; left: -20%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(217,45,45,0.25) 0%, transparent 70%);
  pointer-events: none; filter: blur(40px);
}
.mockup-topbar {
  height: 44px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 1.25rem; gap: 0.5rem; background: rgba(0,0,0,0.4);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.mockup-dot.r { background: #ff5f56; } .mockup-dot.y { background: #ffbd2e; } .mockup-dot.g { background: #27c93f; }
.mockup-body {
  flex: 1; padding: 2rem; position: relative; display:flex; flex-direction:column; justify-content:center;
}

/* App Mockup specific */
.m-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 100%; }
.m-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; position: relative;}
.m-dial { width: 120px; height: 120px; border-radius: 50%; border: 6px solid #1a1a1a; border-top-color: #3b82f6; border-right-color: #3b82f6; border-bottom-color: #3b82f6; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(59,130,246,0.2); }
.m-dial-inner { font-family: 'Oxanium', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; transform: rotate(45deg); display:flex; flex-direction:column; align-items:center;}
.m-dial-inner span { font-size: 0.6rem; color: #3b82f6; letter-spacing: 2px; text-transform: uppercase; }
.m-bars { width: 100%; display: flex; flex-direction: column; gap: 0.8rem; }
.m-bar-row { display: flex; flex-direction: column; gap: 0.3rem; }
.m-bar-label { font-size: 0.6rem; color: #888; text-transform: uppercase; letter-spacing: 1px;}
.m-bar-track { height: 6px; background: #222; border-radius: 10px; overflow: hidden; }
.m-bar-fill { height: 100%; background: linear-gradient(90deg, #3b82f6, #60a5fa); border-radius: 10px; }
.m-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; width: 100%; margin-top: 1rem;}
.m-toggle { background: #1a1a1a; padding: 0.7rem; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #2a2a2a;}
.m-toggle-txt { font-size: 0.6rem; color: #aaa; }
.m-switch { width: 26px; height: 14px; background: #3b82f6; border-radius: 10px; position: relative; }
.m-switch::after { content:''; position:absolute; width: 10px; height:10px; background:#fff; border-radius:50%; top:2px; right:2px; box-shadow: 0 0 5px rgba(0,0,0,0.5);}

/* Manual Mockup specific */
.m-manual-center { text-align: center; max-width: 250px; margin: 0 auto; position: relative; z-index: 2;}
.m-shield { width: 80px; height: 90px; margin: 0 auto 1.5rem; position: relative; }
.m-shield svg { width: 100%; height: 100%; filter: drop-shadow(0 0 20px rgba(217,45,45,0.4)); stroke: var(--red); fill: rgba(217,45,45,0.1); stroke-width: 1.5; }
.m-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; border: 2px solid var(--red); border-radius: 50%; opacity: 0; animation: mPulse 2s infinite; }
@keyframes mPulse { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(2); opacity: 0; } }
.m-anydesk-box { background: #1a1a1a; border: 1px solid #333; padding: 1rem; border-radius: 12px; margin-bottom: 1rem; text-align: left; box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);}
.m-anydesk-label { font-size: 0.6rem; color: #888; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 1px;}
.m-anydesk-id { font-family: 'Oxanium', monospace; font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 2px;}
.m-conn-btn { background: var(--red); color: #fff; border: none; padding: 0.7rem 1.5rem; border-radius: 8px; font-size: 0.8rem; font-weight: bold; width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.m-conn-btn svg { width: 16px; height: 16px; }

/* ── SIGNATURE ANIMATIONS (microchip / speedometer) ──────────────── */
.anim-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(217,45,45,0.10), 0 40px 90px rgba(0,0,0,0.55);
  background: #050506;
  overflow: hidden;
}
.anim-mockup.anim-mockup--clock { max-width: 470px; }
.tm-anim-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1080px;
  height: 1080px;
  transform-origin: center center;
}
@media (max-width: 640px) {
  .anim-mockup, .anim-mockup.anim-mockup--clock { max-width: 320px; }
}

