/* SamirST — Cinematic dark + amarillo lentes */
:root {
    --bg: #0d0d0d;
    --bg-alt: #121212;
    --bg-panel: #1a1a1a;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #f2c200;
    --accent-hover: #ffd633;
    --accent-light: #ffe566;
    --accent-dark: #c9a000;
    --accent-glow: rgba(242, 194, 0, 0.45);
    --orange: var(--accent);
    --orange-hover: var(--accent-hover);
    --orange-glow: var(--accent-glow);
    --whatsapp: #25d366;
    --whatsapp-light: #3dd87a;
    --whatsapp-dark: #1da851;
    --whatsapp-glow: rgba(37, 211, 102, 0.45);
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.75);
    --text-dim: rgba(255, 255, 255, 0.5);
    --pill: 999px;
    --header-h: 70px;
    --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-orange { color: var(--accent) !important; }
.text-accent { color: var(--accent) !important; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.95), rgba(13, 13, 13, 0.6));
    backdrop-filter: blur(8px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    height: var(--header-h);
}

.brand {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    justify-self: start;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand:hover {
    opacity: 1;
    color: var(--text);
}

.brand-icon {
    width: clamp(1.75rem, 3.3vw, 2.15rem);
    height: clamp(1.75rem, 3.3vw, 2.15rem);
    flex-shrink: 0;
    margin-top: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.brand:hover .brand-icon {
    color: rgba(255, 255, 255, 0.62);
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    gap: 0.3rem;
}

.brand-line {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--text);
}

.brand-suffix {
    color: var(--accent);
}

.brand-tag {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.header-nav {
    display: flex;
    gap: 2rem;
    justify-self: center;
}

.header-nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent); }

.header-cta { justify-self: end; }

.menu-btn {
    background: none;
    border: none;
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.menu-btn span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 16, 16, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 0 1.25rem;
}

.mobile-nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 500;
    padding: 0.35rem 0;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

@media (min-width: 1200px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ── Buttons ── */
.btn-pill {
    border-radius: var(--pill) !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-orange,
.btn-accent {
    background: linear-gradient(165deg, var(--accent-light) 0%, var(--accent) 42%, var(--accent-dark) 100%);
    border: 1px solid rgba(255, 235, 150, 0.55);
    color: #0d0d0d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow:
        0 6px 28px rgba(242, 194, 0, 0.5),
        0 0 48px rgba(242, 194, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15);
}

.btn-orange::before,
.btn-accent::before {
    content: '';
    position: absolute;
    inset: 2px 8px auto 8px;
    height: 42%;
    border-radius: var(--pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 55%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.btn-orange::after,
.btn-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.35) 48%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 1;
    transition: left 0.55s ease;
}

.btn-orange:hover,
.btn-accent:hover {
    color: #0d0d0d;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 10px 36px rgba(242, 194, 0, 0.62),
        0 0 60px rgba(242, 194, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -3px 8px rgba(0, 0, 0, 0.12);
}

.btn-orange:hover::after,
.btn-accent:hover::after {
    left: 130%;
}

.btn-orange:active,
.btn-accent:active {
    transform: translateY(0) scale(0.99);
}

.btn-ghost {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 3px 10px auto 10px;
    height: 38%;
    border-radius: var(--pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 1;
    transition: left 0.55s ease;
}

.btn-ghost:hover {
    border-color: rgba(242, 194, 0, 0.85);
    color: #fff;
    background: linear-gradient(165deg, rgba(242, 194, 0, 0.22) 0%, rgba(242, 194, 0, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(242, 194, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover::after {
    left: 130%;
}

.btn-ghost:active {
    transform: translateY(0);
}

/* WhatsApp verde */
.btn-whatsapp {
    background: linear-gradient(165deg, #3dd87a 0%, #25d366 42%, #1da851 100%);
    border: 1px solid rgba(180, 255, 210, 0.45);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow:
        0 6px 28px var(--whatsapp-glow),
        0 0 48px rgba(37, 211, 102, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.18);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 2px 8px auto 8px;
    height: 42%;
    border-radius: var(--pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 55%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 1;
    transition: left 0.55s ease;
}

.btn-whatsapp:hover {
    color: #fff;
    background: linear-gradient(165deg, #4ae088 0%, #2bd975 42%, #22b85a 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 10px 36px rgba(37, 211, 102, 0.55),
        0 0 60px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.12);
}

.btn-whatsapp:hover::after {
    left: 130%;
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.99);
}

.btn-icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn-pill span {
    position: relative;
    z-index: 2;
}

/* Hero buttons — lado a lado */
.hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.85rem;
    max-width: 100%;
}

.hero-btns .btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    white-space: nowrap;
}

.hero-btns .hero-btn-primary {
    flex: 1 1 auto;
}

.hero-btns .hero-btn-wa {
    flex: 0 0 auto;
    min-width: 148px;
}

/* ── HERO CINEMÁTICO ── */
.hero-cinema {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-cinema-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    /* Rostro visible a la izquierda */
    background-position: 22% 20%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: contrast(1.1) brightness(0.88);
}

.hero-cinema-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 13, 13, 0.05) 0%, rgba(13, 13, 13, 0.25) 38%, rgba(13, 13, 13, 0.88) 58%, rgba(13, 13, 13, 0.97) 100%),
        linear-gradient(to top, var(--bg) 0%, transparent 35%),
        linear-gradient(to bottom, rgba(13, 13, 13, 0.5) 0%, transparent 20%);
    pointer-events: none;
}

.hero-cinema-inner {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);
    padding-bottom: 4rem;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-cinema-copy {
    max-width: 520px;
    width: 100%;
    padding: 2rem 0;
    margin-left: auto;
}

@media (min-width: 992px) {
    .hero-cinema-copy {
        padding: 2.5rem;
        max-width: 540px;
    }
}

.eyebrow {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-p {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.hero-p strong {
    color: var(--text);
    font-weight: 600;
}

.hero-niches {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-niches a {
    color: var(--text-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.hero-niches a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* hero-btns definido arriba con .btn-whatsapp */

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ── About section ── */
.section-about {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background:
        radial-gradient(ellipse 55% 55% at 20% 20%, rgba(242, 194, 0, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 85% 70%, rgba(242, 194, 0, 0.05) 0%, transparent 50%),
        var(--bg-alt);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

.about-eyebrow {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-intro {
    text-align: left;
}

.about-intro .block-title {
    margin-bottom: 0.85rem;
}

.about-lead {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-checks {
    margin: 0 0 1.15rem;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-showcase-col {
    min-width: 0;
    align-self: center;
}

.about-works-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    margin: 0 0 0.75rem;
    text-align: left;
}

.about-slider {
    position: relative;
    padding: 0 2.5rem;
    perspective: 1200px;
}

.about-slider-viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.about-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.about-slide {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0.45;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.about-slider-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(14, 14, 14, 0.9);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    padding: 0;
}

.about-slider-nav:hover,
.about-slider-nav:focus-visible {
    border-color: rgba(242, 194, 0, 0.55);
    background: rgba(242, 194, 0, 0.12);
    color: var(--accent);
}

.about-slider-nav--prev { left: 0; }
.about-slider-nav--next { right: 0; }

.about-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.about-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.about-slider-dot.is-active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow);
}

.about-slider-dot:hover,
.about-slider-dot:focus-visible {
    background: rgba(242, 194, 0, 0.65);
}

.about-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.about-card-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.about-card-browser {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.about-card-dot:nth-child(1) { background: rgba(255, 95, 87, 0.7); }
.about-card-dot:nth-child(2) { background: rgba(255, 189, 46, 0.7); }
.about-card-dot:nth-child(3) { background: rgba(39, 201, 63, 0.7); }

.about-card-url {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.about-card-screen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #0a0a0c;
}

.about-card-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.55s ease;
}

.about-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.1) 50%, transparent 65%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 2;
}

.about-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.about-card-open {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0d0d0d;
    background: var(--accent);
    padding: 0.65rem 1.25rem;
    border-radius: var(--pill);
    box-shadow: 0 0 28px var(--accent-glow);
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.about-card-tag {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 4;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(242, 194, 0, 0.4);
    color: var(--accent);
}

.about-card-meta {
    padding: 0.65rem 0.15rem 0;
}

.about-card-name {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: var(--text);
    transition: color 0.25s ease;
}

.about-card-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-card-link:hover .about-card-frame,
.about-card-link:focus-visible .about-card-frame {
    border-color: rgba(242, 194, 0, 0.5);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(242, 194, 0, 0.12);
}

.about-card-link:hover .about-card-screen img,
.about-card-link:focus-visible .about-card-screen img {
    transform: scale(1.06);
}

.about-card-link:hover .about-card-shine,
.about-card-link:focus-visible .about-card-shine {
    transform: translateX(130%);
}

.about-card-link:hover .about-card-overlay,
.about-card-link:focus-visible .about-card-overlay {
    opacity: 1;
}

.about-card-link:hover .about-card-open,
.about-card-link:focus-visible .about-card-open {
    transform: translateY(0);
}

.about-card-link:hover .about-card-name,
.about-card-link:focus-visible .about-card-name {
    color: var(--accent);
}

@media (max-width: 991px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    .about-showcase-col {
        max-width: 100%;
        width: 100%;
    }

    .about-slider {
        padding: 0 2.75rem;
    }

    .about-slider-nav {
        width: 2.5rem;
        height: 2.5rem;
        top: 38%;
    }
}

@media (max-width: 575px) {
    .about-slider {
        padding: 0 2.15rem;
    }

    .about-slider-nav {
        width: 2rem;
        height: 2rem;
        font-size: 1.15rem;
    }

    .about-card-screen {
        aspect-ratio: 16 / 11;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-slider-track {
        transition: none;
    }

    .about-slide {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-card-frame {
        transform: none !important;
    }
}

/* Scroll reveal — estilo UnrankedLoL */
.reveal-cl {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-cl.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-cl {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Diferenciadores — fondo iluminado */
.section-features {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 60% at 50% -15%, rgba(242, 194, 0, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 45% 50% at 100% 40%, rgba(242, 194, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 0% 55%, rgba(242, 194, 0, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #080808 0%, var(--bg) 28%, var(--bg) 72%, #080808 100%);
}

.section-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 15%, transparent 72%);
    pointer-events: none;
}

.section-features::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: min(920px, 95vw);
    height: 420px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(242, 194, 0, 0.09) 0%, transparent 68%);
    pointer-events: none;
}

.section-features .container {
    position: relative;
    z-index: 1;
}

.section-features .block-head {
    margin-bottom: 3.5rem;
}

.section-features .block-sub {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Calculador — fondo iluminado */
.section-calc {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% 20%, rgba(242, 194, 0, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 15% 70%, rgba(242, 194, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 85% 75%, rgba(242, 194, 0, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
}

.section-calc::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, #000 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, #000 10%, transparent 75%);
    pointer-events: none;
}

.section-calc .container {
    position: relative;
    z-index: 1;
}

.section-calc .calc-panel {
    background: rgba(20, 20, 20, 0.82);
    backdrop-filter: blur(16px);
    position: relative;
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(242, 194, 0, 0.14);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(242, 194, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ── Calculator phone mockup ── */
.calc-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.calc-phone-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calc-phone-stage {
    position: relative;
    width: min(100%, 320px);
    perspective: 900px;
    margin: 0 auto 1.5rem;
}

.calc-phone-glow {
    position: absolute;
    inset: 8% 5% 12%;
    background: radial-gradient(ellipse at 50% 60%, rgba(242, 194, 0, 0.35) 0%, transparent 68%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.calc-phone {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.calc-phone.is-pulse {
    animation: calcPhonePulse 0.45s ease;
}

@keyframes calcPhonePulse {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.025); }
}

.calc-phone-frame {
    position: relative;
    border-radius: 42px;
    padding: 10px;
    background: linear-gradient(145deg, #3a3a3e 0%, #1a1a1c 35%, #0e0e10 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(0, 0, 0, 0.8) inset,
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.calc-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 24px;
    background: #0a0a0c;
    border-radius: 0 0 16px 16px;
    z-index: 4;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.calc-phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2a2a32, #0a0a0e);
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.15);
}

.calc-phone-btn {
    position: absolute;
    background: linear-gradient(180deg, #4a4a50, #2a2a2e);
    border-radius: 2px;
    z-index: 0;
}

.calc-phone-btn--vol {
    left: -3px;
    top: 108px;
    width: 3px;
    height: 52px;
}

.calc-phone-btn--pwr {
    right: -3px;
    top: 140px;
    width: 3px;
    height: 72px;
}

.calc-phone-screen {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: #0d0d0f;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.calc-phone-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 6px;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    z-index: 2;
}

.calc-phone-signal {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 10px;
}

.calc-phone-signal i {
    display: block;
    width: 3px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
}

.calc-phone-signal i:nth-child(1) { height: 4px; opacity: 0.5; }
.calc-phone-signal i:nth-child(2) { height: 6px; opacity: 0.65; }
.calc-phone-signal i:nth-child(3) { height: 8px; opacity: 0.8; }
.calc-phone-signal i:nth-child(4) { height: 10px; }

.calc-phone-browser {
    margin: 0 12px 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
}

.calc-phone-url {
    font-size: 0.58rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.calc-phone-preview {
    flex: 1;
    overflow: hidden;
    padding: 0 10px 12px;
}

.calc-phone-home-bar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: var(--pill);
    z-index: 3;
}

/* Phone mock website inside screen */
.phone-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: phoneMockIn 0.4s ease;
}

@keyframes phoneMockIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.phone-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-mock-logo {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.phone-mock-logo span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.phone-mock-badge {
    font-size: 0.48rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 6px;
    border-radius: 6px;
    background: rgba(242, 194, 0, 0.15);
    color: var(--accent);
    border: 1px solid rgba(242, 194, 0, 0.25);
}

.phone-mock-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(242, 194, 0, 0.12) 0%, rgba(20, 20, 22, 0.95) 55%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 10px;
    min-height: 110px;
}

.phone-mock-hero-img {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(242, 194, 0, 0.2) 0%, transparent 45%),
        linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.phone-mock-hero h3 {
    position: relative;
    font-size: 0.82rem;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.2;
    color: #fff;
}

.phone-mock-hero p {
    position: relative;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.phone-mock-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-mock-btn {
    display: block;
    text-align: center;
    font-size: 0.52rem;
    font-weight: 700;
    padding: 8px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
}

.phone-mock-btn--wa {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.35);
    color: #5dffb0;
}

.phone-mock-btn--primary {
    background: rgba(242, 194, 0, 0.18);
    border-color: rgba(242, 194, 0, 0.4);
    color: var(--accent);
}

.phone-mock-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.phone-mock-chip {
    font-size: 0.48rem;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    animation: phoneChipIn 0.35s ease backwards;
}

.phone-mock-chip.is-new {
    border-color: rgba(242, 194, 0, 0.45);
    background: rgba(242, 194, 0, 0.1);
    color: var(--accent);
}

@keyframes phoneChipIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.phone-mock-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-mock-card {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.phone-mock-card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.phone-mock-card span {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.5);
}

.phone-mock-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--pill);
    overflow: hidden;
    margin-top: 4px;
}

.phone-mock-progress span {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: var(--pill);
    transition: width 0.5s ease;
}

.phone-mock-report {
    text-align: center;
    padding: 16px 8px;
}

.phone-mock-report .level-badge {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.phone-mock-report h4 {
    font-size: 0.72rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.phone-mock-report p {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 10px;
}

.phone-mock-report .phone-mock-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent);
}

.calc-phone-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    background: rgba(18, 18, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    z-index: 2;
    animation: calcFloatBob 4s ease-in-out infinite;
    pointer-events: none;
}

.calc-phone-float-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.calc-phone-float--1 {
    top: 12%;
    left: -8%;
    animation-delay: 0s;
}

.calc-phone-float--2 {
    bottom: 18%;
    right: -10%;
    animation-delay: -2s;
}

@keyframes calcFloatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.calc-phone-caption {
    text-align: center;
    max-width: 280px;
}

.calc-phone-caption__title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.calc-phone-caption__text {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .calc-phone-col {
        order: -1;
    }

    .calc-phone-stage {
        width: min(100%, 260px);
        margin-bottom: 1rem;
    }

    .calc-phone-screen {
        min-height: 420px;
    }

    .calc-phone-float {
        display: none;
    }

    .calc-phone-caption {
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 992px) {
    .calc-phone-col {
        position: sticky;
        top: 5rem;
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .calc-phone {
        transform: none !important;
    }

    .calc-phone-float {
        animation: none;
    }
}

.block-head { margin-bottom: 3rem; }

.block-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.block-sub { color: var(--text-dim); font-size: 1rem; }
.block-text { color: var(--text-soft); margin-bottom: 1.25rem; }

/* Imágenes con bordes redondeados */
.img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.img-frame-portrait {
    max-width: 380px;
    margin: 0 auto;
}

.img-frame-portrait img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

/* Feature grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    max-width: 960px;
    margin: 0 auto;
}

.feat-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(22, 22, 22, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feat-item:hover {
    border-color: rgba(242, 194, 0, 0.4);
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 32px rgba(242, 194, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.feat-icon svg {
    width: 22px;
    height: 22px;
}

.feat-item:hover .feat-icon {
    color: var(--accent);
    border-color: rgba(242, 194, 0, 0.3);
    background: rgba(242, 194, 0, 0.06);
}

.feat-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.feat-item-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.3;
    color: var(--text);
}

.feat-eyebrow {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.feat-item p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 0.35rem 0;
    color: var(--text-soft);
    font-weight: 500;
}

.check-list li::before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 800;
}

/* ── Panels ── */
.dark-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

/* ── Calculator ── */
.calc-showcase .calc-panel {
    padding: 1.65rem 1.75rem;
}

@media (max-width: 575px) {
    .calc-showcase .calc-panel {
        padding: 1.35rem 1.15rem;
    }

    .calc-question {
        font-size: 1.05rem;
    }

    .calc-option {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

.calc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    min-height: 2rem;
}

.calc-back {
    padding: 0.35rem 1rem !important;
    font-size: 0.82rem !important;
}

.calc-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-left: auto;
}

.calc-nav:has(.calc-back.d-none) .calc-step-label {
    margin-left: 0;
    width: 100%;
    text-align: center;
}

.calc-question {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.calc-option {
    display: block;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    color: var(--text-soft);
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.calc-option--icon {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.calc-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.calc-option-icon svg {
    width: 20px;
    height: 20px;
}

.calc-option-text {
    flex: 1;
    line-height: 1.35;
}

.calc-option:hover,
.calc-option.selected {
    border-color: var(--accent);
    background: rgba(242, 194, 0, 0.1);
    color: var(--text);
}

.calc-option:hover .calc-option-icon,
.calc-option.selected .calc-option-icon {
    color: var(--accent);
    border-color: rgba(242, 194, 0, 0.3);
    background: rgba(242, 194, 0, 0.06);
}

.calc-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--pill);
    overflow: hidden;
}

.calc-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.35s;
    box-shadow: 0 0 12px var(--accent-glow);
}

.level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem; height: 4.5rem;
    font-size: 2rem;
    font-weight: 900;
    background: var(--accent);
    color: #0d0d0d;
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-glow);
}

.report-plan {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.65rem;
}

.report-plan.recommended {
    border-color: var(--accent);
    background: rgba(242, 194, 0, 0.08);
}

.report-plan-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.report-day {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-soft);
}

.report-day-num {
    font-weight: 700;
    color: var(--accent);
    min-width: 3.25rem;
}

.calc-report .badge.bg-primary {
    background: var(--accent) !important;
    color: #0d0d0d !important;
}

.calc-report .text-muted { color: var(--text-dim) !important; }

.calc-report .btn-outline-orange,
.calc-report .btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--text-soft);
    background: transparent;
}

/* ── Gaming section ── */
.section-gamer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 70% at 85% 50%, rgba(180, 40, 60, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 50% at 10% 80%, rgba(242, 194, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #060606 0%, var(--bg) 40%, #060606 100%);
}

.section-gamer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.015) 2px,
        rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    opacity: 0.5;
}

.gamer-strip-inner {
    position: relative;
    z-index: 1;
}

.gamer-tab {
    position: absolute;
    left: 0.75rem;
    top: 0;
    z-index: 2;
    display: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e85d6f;
    padding: 1.25rem 0.35rem;
    text-shadow: 0 0 18px rgba(232, 93, 111, 0.45);
}

.gamer-strip-line {
    position: relative;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(232, 93, 111, 0.45) 8%,
        rgba(242, 194, 0, 0.35) 50%,
        rgba(232, 93, 111, 0.45) 92%,
        transparent 100%
    );
}

.gamer-strip-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 10%,
        rgba(255, 255, 255, 0.08) 90%,
        transparent 100%
    );
}

.gamer-strip-line--top {
    margin: 0 0 2.5rem;
}

.gamer-strip-line--bottom {
    margin: 2.5rem 0 0;
}

/* ── Gaming games ticker ── */
.gamer-games-ticker {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 1.75rem 0 2rem;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 20, 0.95) 0%,
        rgba(12, 12, 14, 0.98) 50%,
        rgba(8, 8, 10, 1) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gamer-games-ticker__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.gamer-games-ticker__track {
    display: flex;
    align-items: center;
    gap: clamp(3rem, 6vw, 5.5rem);
    width: max-content;
    padding: 0 2rem;
    animation: gamerGamesScroll 50s linear infinite;
    will-change: transform;
}

.gamer-games-ticker__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.gamer-games-ticker__item img {
    display: block;
    height: clamp(34px, 4.2vw, 48px);
    width: auto;
    max-width: clamp(150px, 18vw, 220px);
    object-fit: contain;
    filter: grayscale(100%) brightness(1.35) contrast(1.05);
    opacity: 0.82;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.gamer-games-ticker:hover .gamer-games-ticker__track {
    animation-play-state: paused;
}

.gamer-games-ticker__item:hover img {
    opacity: 1;
    filter: grayscale(70%) brightness(1.45) contrast(1.08);
    transform: scale(1.04);
}

@keyframes gamerGamesScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .gamer-games-ticker__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1.25rem 2rem;
        padding: 0 1rem;
    }

    .gamer-games-ticker__viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.gamer-eyebrow {
    color: #e85d6f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(232, 93, 111, 0.4);
}

.gamer-copy .block-title {
    margin-bottom: 0.5rem;
}

.gamer-seo-lead {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.gamer-visual-col {
    align-items: flex-end;
    justify-content: center;
    min-height: 480px;
}

.gamer-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 125%;
    max-width: 580px;
    margin-right: -12%;
    pointer-events: none;
}

.gamer-visual-fade {
    display: none;
}

.gamer-visual--mobile {
    display: none;
}

.gamer-visual-glow {
    position: absolute;
    width: 80%;
    height: 70%;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(180, 40, 60, 0.35) 0%, rgba(242, 194, 0, 0.1) 45%, transparent 72%);
    filter: blur(36px);
    pointer-events: none;
}

.gamer-elf-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.65));
}

.gamer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.gamer-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-soft);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 93, 111, 0.15);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.gamer-list li:hover {
    border-color: rgba(242, 194, 0, 0.35);
    background: rgba(242, 194, 0, 0.04);
}

.gamer-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(232, 93, 111, 0.08);
    border: 1px solid rgba(232, 93, 111, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.gamer-list-icon svg {
    width: 18px;
    height: 18px;
}

.gamer-list li:hover .gamer-list-icon {
    color: var(--accent);
    border-color: rgba(242, 194, 0, 0.3);
}

.gamer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Gamer particles */
.gamer-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 800ms ease;
}

.gamer-particles.is-active {
    opacity: 1;
}

.gamer-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    opacity: 0;
    animation: gamerParticle var(--dur) var(--delay) ease-in-out infinite;
    box-shadow: 0 0 5px currentColor;
}

.gamer-particles.is-active .gamer-particle {
    opacity: 0.55;
}

@keyframes gamerParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translate(var(--drift), -20px) scale(1.2);
        opacity: 0.65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gamer-particles {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .section-gamer {
        overflow: hidden;
    }

    .gamer-strip-inner {
        position: relative;
    }

    .gamer-visual--mobile {
        display: flex;
        position: absolute;
        top: clamp(5.5rem, 28vw, 8.5rem);
        left: auto;
        right: calc(50% - 50vw);
        transform: none;
        align-items: flex-end;
        justify-content: flex-end;
        width: 100vw;
        max-width: none;
        margin: 0;
        min-height: clamp(320px, 78vw, 480px);
        padding: 0;
        pointer-events: none;
        z-index: 0;
        background:
            radial-gradient(ellipse 70% 85% at 85% 100%, rgba(180, 40, 60, 0.22) 0%, transparent 58%),
            radial-gradient(ellipse 55% 55% at 90% 90%, rgba(242, 194, 0, 0.08) 0%, transparent 52%);
    }

    .gamer-visual--mobile .gamer-visual-glow {
        width: 80%;
        height: 100%;
        bottom: 0;
        right: 0;
        left: auto;
        transform: none;
        background: radial-gradient(ellipse 70% 60% at 80% 85%, rgba(180, 40, 60, 0.32) 0%, transparent 68%);
        filter: blur(32px);
    }

    .gamer-visual--mobile .gamer-elf-img {
        width: min(140vw, 680px);
        max-width: none;
        height: auto;
        max-height: clamp(400px, 95vw, 560px);
        margin-right: -6%;
        object-fit: contain;
        object-position: bottom right;
        filter: none;
        opacity: 0.95;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 72%, transparent 100%),
                            linear-gradient(to right, transparent 0%, #000 20%, #000 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 72%, transparent 100%),
                    linear-gradient(to right, transparent 0%, #000 20%, #000 100%);
    }

    .gamer-copy {
        position: relative;
        z-index: 1;
    }

    .gamer-copy .block-text,
    .gamer-list,
    .gamer-cta {
        position: relative;
        z-index: 1;
    }

    .gamer-seo-lead {
        margin-bottom: 1rem;
    }

    .gamer-copy .block-text {
        margin-bottom: 1.25rem !important;
    }

    .gamer-strip-line--top {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 992px) {
    .gamer-tab {
        display: block;
    }

    .gamer-strip-inner {
        padding-left: 2.5rem;
    }

    .section-gamer .gamer-strip-inner > .row {
        align-items: stretch;
    }

    .gamer-visual-col {
        position: relative;
        min-height: 720px;
        align-items: stretch;
        justify-content: center;
    }

    .gamer-visual-col .gamer-visual {
        position: absolute;
        top: -2.5rem;
        right: -16%;
        bottom: -1.5rem;
        left: -5%;
        overflow: visible;
        width: auto;
        max-width: none;
        height: auto;
        min-height: 0;
        margin: 0;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .gamer-visual-col .gamer-visual-glow {
        right: 5%;
        left: auto;
        transform: none;
        width: 80%;
        height: 95%;
        bottom: 0;
    }

    .gamer-visual-fade {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 14%;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(to top, #060606 0%, rgba(6, 6, 6, 0.75) 55%, transparent 100%);
    }

    .gamer-visual-col .gamer-elf-img {
        width: 100%;
        height: 100%;
        max-height: none;
        min-height: 700px;
        object-fit: contain;
        object-position: bottom right;
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, rgba(0, 0, 0, 0.5) 98%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 92%, rgba(0, 0, 0, 0.5) 98%, transparent 100%);
        filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.5));
    }
}

@media (min-width: 1200px) {
    .gamer-visual-col {
        min-height: 780px;
    }

    .gamer-visual-col .gamer-visual {
        top: -3rem;
        right: -18%;
        bottom: -2rem;
    }

    .gamer-visual-col .gamer-elf-img {
        min-height: 760px;
    }
}

/* ── SEO section ── */
.section-seo {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 55% at 20% 30%, rgba(66, 133, 244, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(52, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 45% 45% at 50% 50%, rgba(242, 194, 0, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 50%, var(--bg-alt) 100%);
}

.seo-eyebrow {
    color: #5b9bf5;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.seo-lead {
    margin-bottom: 1.25rem;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.seo-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-soft);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(66, 133, 244, 0.18);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.seo-list li:hover {
    border-color: rgba(242, 194, 0, 0.35);
    background: rgba(242, 194, 0, 0.04);
}

.seo-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: rgba(255, 255, 255, 0.55);
}

.seo-list-icon svg {
    width: 18px;
    height: 18px;
}

.seo-list li:hover .seo-list-icon {
    color: var(--accent);
    border-color: rgba(242, 194, 0, 0.3);
}

.seo-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Google Search Console demo panel */
.gsc-panel {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #202124;
    font-family: 'Inter', system-ui, sans-serif;
}

.gsc-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #e8eaed;
    background: #f8f9fa;
}

.gsc-panel-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.gsc-panel-brand strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #202124;
}

.gsc-panel-brand span {
    display: block;
    font-size: 0.68rem;
    color: #5f6368;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gsc-icon {
    width: 22px;
    height: 22px;
    color: #4285f4;
    flex-shrink: 0;
}

.gsc-live {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #137333;
    background: #e6f4ea;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.gsc-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e8eaed;
    padding: 0 0.5rem;
    overflow-x: auto;
}

.gsc-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #5f6368;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.gsc-tab:hover {
    color: #202124;
}

.gsc-tab.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
    font-weight: 600;
}

.gsc-hero-stat {
    padding: 1.15rem 1.15rem 0.5rem;
}

.gsc-stat-label {
    font-size: 0.72rem;
    color: #5f6368;
    margin: 0 0 0.35rem;
}

.gsc-stat-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.gsc-big-num {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    color: #202124;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.gsc-delta {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.gsc-delta--up {
    color: #137333;
    background: #e6f4ea;
}

.gsc-delta--down {
    color: #137333;
    background: #e6f4ea;
}

.gsc-stat-period {
    font-size: 0.68rem;
    color: #80868b;
    margin: 0.35rem 0 0;
}

.gsc-chart-wrap {
    position: relative;
    height: 100px;
    margin: 0.5rem 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8eaed;
}

.gsc-line-chart {
    position: absolute;
    inset: 0 0 0.5rem;
    width: 100%;
    height: calc(100% - 0.5rem);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.gsc-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100%;
    padding-bottom: 0.25rem;
}

.gsc-bar {
    flex: 1;
    min-height: 2px;
    background: linear-gradient(180deg, #4285f4 0%, #669df6 100%);
    border-radius: 2px 2px 0 0;
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.85;
}

.gsc-bar:nth-child(even) {
    background: linear-gradient(180deg, #34a853 0%, #57bb63 100%);
}

.gsc-queries {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.15rem 1rem;
}

.gsc-queries li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.75rem;
}

.gsc-queries li:last-child {
    border-bottom: none;
}

.gsc-queries span {
    color: #202124;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gsc-queries strong {
    color: #1a73e8;
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .gsc-panel {
        margin-bottom: 0.5rem;
    }
}

/* ── Legacy demos (removed from UI) ── */
.phones-row {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-height: 340px;
}

.phone-mockup {
    position: relative;
    width: 46%;
    max-width: 200px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(242, 194, 0, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(242, 194, 0, 0.1);
}

.phone-mockup-offset {
    margin-top: 2.5rem;
}

.phone-img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.85rem;
}

.demo-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.demo-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.75rem;
}

.demo-usd { color: var(--accent); }
.demo-rate { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.5rem; }
.range-orange,
.range-accent { accent-color: var(--accent); }

/* ── Problems ── */
.chip-btn {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-soft);
    min-height: 4.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.chip-btn:hover, .chip-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(242, 194, 0, 0.08);
}

.solution-box {
    background: rgba(242, 194, 0, 0.08);
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    border-radius: 0 12px 12px 0;
}

/* ── Plans ── */
.plan-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.25s;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-hot {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(242, 194, 0, 0.12);
}

.plan-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0d0d0d;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: var(--pill);
}

.plan-card h3 { font-size: 1.2rem; font-weight: 800; }
.plan-desc { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1rem; }

.plan-price {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin: 0;
}

.plan-bs { color: var(--text-dim); font-size: 0.9rem; }
.plan-days { color: var(--accent); font-weight: 600; font-size: 0.88rem; margin: 0.5rem 0 1rem; }

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.plan-card li {
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
}

.plan-card li::before { content: "→ "; color: var(--accent); }

/* ── Compare ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-panel);
    margin: 0;
}

.compare-table th, .compare-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-soft);
    text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 600; }

.compare-table thead th {
    background: rgba(242, 194, 0, 0.08);
    color: var(--text);
}

.col-me {
    background: rgba(242, 194, 0, 0.06) !important;
    color: var(--text) !important;
}

/* ── Rubros ── */
.rubro-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.rubro-card span { font-size: 1.5rem; }
.rubro-card strong { flex: 1; font-size: 0.92rem; }
.rubro-card em { color: var(--accent); font-style: normal; opacity: 0; transition: opacity 0.2s; }

.rubro-card:hover {
    border-color: var(--accent);
    color: var(--text);
    transform: translateX(3px);
}

.rubro-card:hover em { opacity: 1; }

/* ── CTA + Footer ── */
.cta-band {
    background: radial-gradient(ellipse at center, rgba(242, 194, 0, 0.1) 0%, transparent 70%);
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    background: var(--bg-alt);
}

.footer-cols h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-cols ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cols li {
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.footer-cols a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-cols a:hover { color: var(--accent); }

.footer-about {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.footer-copy {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.78rem;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Industry page ── */
.page-cinema {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 2rem) 0 3rem;
    overflow: hidden;
}

.page-cinema-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 65% 20%;
    filter: brightness(0.7);
}

.page-cinema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.95) 40%, transparent), linear-gradient(to top, var(--bg), transparent);
}

.page-cinema-content { position: relative; z-index: 2; }

.back-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.88rem;
}

.back-link:hover { color: var(--accent); }

.benefit-chip {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }
    .header-nav { display: none !important; }
    .header-cta { display: none !important; }
    .menu-btn { display: flex !important; }
}

@media (max-width: 991px) {
    .hero-cinema-inner {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 2.5rem;
    }

    .hero-cinema-copy {
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .hero-p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btns .hero-btn-primary,
    .hero-btns .hero-btn-wa {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }

    .hero-cinema-bg {
        background-position: 30% 12%;
    }

    .hero-cinema-overlay {
        background:
            linear-gradient(to top, var(--bg) 0%, rgba(13, 13, 13, 0.85) 45%, rgba(13, 13, 13, 0.35) 100%);
    }

    .feat-grid { grid-template-columns: 1fr; }
    .phones-row { flex-direction: column; align-items: center; min-height: auto; }
    .phone-mockup { width: 70%; max-width: 220px; }
    .phone-mockup-offset { margin-top: 0; }
}

@media (max-width: 575px) {
    .brand-icon {
        width: 1.48rem;
        height: 1.48rem;
    }

    .brand-line {
        font-size: 1.55rem;
    }

    .brand-tag {
        font-size: 0.55rem;
    }

    .section { padding: 3.5rem 0; }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btns .hero-btn-primary,
    .hero-btns .hero-btn-wa {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }
    .dark-panel { padding: 1.25rem; }
}

@media (min-width: 992px) {
    .hero-cinema-bg {
        background-position: 18% 18%;
    }
}
