*, *::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 (degradado rojo) ─── */
  @keyframes softDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(2%, -2%) scale(1.05); }
  }

  .page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: #0a0505;
    pointer-events: none;
  }

  .page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 1400px 900px at 50% 45%, oklch(0.16 0.02 25) 0%, #0a0505 65%);
  }

  .page-bg .blob-1 {
    position: absolute;
    left: -380px; bottom: -420px;
    width: 1100px; height: 1100px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, oklch(0.32 0.16 25 / 0.9) 0%, oklch(0.22 0.14 20 / 0.6) 35%, transparent 70%);
    filter: blur(40px);
    animation: softDrift 22s ease-in-out infinite;
  }

  .page-bg .blob-2 {
    position: absolute;
    left: -200px; bottom: -560px;
    width: 900px; height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, oklch(0.24 0.15 18 / 0.85) 0%, transparent 65%);
    filter: blur(60px);
    animation: softDrift 28s ease-in-out infinite reverse;
  }

  .page-bg .blob-glow {
    position: absolute;
    left: 50%; top: 38%;
    width: 1200px; height: 700px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, oklch(0.28 0.14 22 / 0.55) 0%, transparent 70%);
    filter: blur(50px);
  }

  .page-bg .blob-accent {
    position: absolute;
    right: -260px; top: -260px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 60%, oklch(0.2 0.1 20 / 0.35) 0%, transparent 70%);
    filter: blur(50px);
  }

  .page-bg .grain-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.35) 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); }

  .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;
    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: center;
    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: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }

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

  .hero-eyebrow {
    font-family: 'Oxanium', sans-serif;
    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: 'Oxanium', 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;
  }

  .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 { padding: 6rem 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: transparent; }

  .sintomas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3.5rem;
  }
  @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; }

  .dashboard {
    margin-top: 3rem;
    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: 3.5rem;
  }
  @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-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; }

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

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

  .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: 3.5rem;
    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(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .testi-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;
  }

  .testi-card:hover { 
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(217,45,45,0.08);
  }

  .stars {
    color: var(--red);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .testi-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--red-subtle);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
  }

  .author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
  }

  .author-info span {
    font-size: 0.8rem;
    color: var(--muted);
  }

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

  .cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bg3) 0%, rgba(217,45,45,0.05) 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 120px;
    background: radial-gradient(ellipse, rgba(217,45,45,0.2), transparent 70%);
    pointer-events: none;
  }

  .cta-box h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: #fff;
    margin-bottom: 1rem;
  }

  .cta-box p {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }

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

  /* 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: 1.5rem;
    opacity: 0.7;
  }

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

  /* ── FOOTER ──────────────────────────────────── */
  footer {
    background: transparent;
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

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

  .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; }
  .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; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .steps::before { display: none; }
    .steps { gap: 2rem; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: 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; }

  /* 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 .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; }
  .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; justify-content: space-between; gap: .5rem; margin-bottom: .5rem; }
  .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; }
  .appdemo-tweak-title { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
  .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: 36px; height: 20px; flex-shrink: 0; }
  .appdemo-switch input { opacity: 0; width: 0; height: 0; }
  .appdemo-switch-slider { position: absolute; inset: 0; background: #2a2a2a; border-radius: 100px; transition: background .2s; cursor: pointer; }
  .appdemo-switch-slider::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: #888; border-radius: 50%; transition: transform .2s, background .2s; }
  .appdemo-switch input:checked + .appdemo-switch-slider { background: var(--red); }
  .appdemo-switch input:checked + .appdemo-switch-slider::before { transform: translateX(16px); 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: 3.5rem;
}
.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; }
