/* LUNEXA STREAM TV — Pro layout · blue accent (no pink flood) */

:root {
    --bg: #000000;
    --bg-card: rgba(8, 12, 20, 0.88);
    --bg-card-solid: #080c14;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f5;
    --text-muted: #94a3b8;
    --gold: #ffb020;
    --gold-bright: #ffd54f;
    --blue: #00bfff;
    --blue-deep: #0088cc;
    --blue-rgb: 0, 191, 255;
    --neon: var(--blue);
    --neon-rgb: var(--blue-rgb);
    --gradient-brand: linear-gradient(135deg, #0088cc 0%, #00bfff 45%, #5ce1ff 100%);
    --gradient-btn: linear-gradient(135deg, #0077b6 0%, #00bfff 100%);
    --gradient-line: linear-gradient(90deg, transparent, var(--blue), transparent);
    --glow-blue: 0 0 32px rgba(0, 191, 255, 0.4);
    --glow-blue-lg: 0 0 56px rgba(0, 191, 255, 0.22);
    --font: 'Outfit', system-ui, sans-serif;
    --card: var(--bg-card);
    --card-border: rgba(0, 191, 255, 0.22);
    --ticker-h: 30px;
    --header-h: 76px;
    --top-stack: calc(var(--ticker-h) + var(--header-h));
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--top-stack);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

::selection {
    background: rgba(0, 191, 255, 0.35);
    color: #fff;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overscroll-behavior-x: none;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ─── TOP TICKER (scrolling bar) ─── */
.announcement-bar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--ticker-h);
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(8, 12, 20, 0.98) 0%,
        rgba(0, 136, 204, 0.14) 45%,
        rgba(8, 12, 20, 0.98) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.28);
    box-shadow: 0 1px 0 rgba(0, 191, 255, 0.06) inset;
}

.announcement-track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    flex-wrap: nowrap;
    animation: ticker-scroll 55s linear infinite;
    will-change: transform;
    contain: layout style;
}

.announcement-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: max-content;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 600;
    color: #c8d4e0;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.announcement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(0, 191, 255, 0.12);
    border: 1px solid rgba(0, 191, 255, 0.28);
    color: var(--blue);
    flex-shrink: 0;
}

.announcement-icon svg {
    width: 11px;
    height: 11px;
}

.announcement-sep {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 176, 32, 0.45);
    user-select: none;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-25%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge-dot,
    .contact-fab--wa {
        animation: none;
    }

    .announcement-track {
        animation: none;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 6px 12px;
    }

    .announcement-group[aria-hidden="true"] {
        display: none;
    }

    .announcement-bar {
        height: auto;
        min-height: var(--ticker-h);
    }
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.lang-btn {
    min-width: 34px;
    padding: 6px 9px;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-btn.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #0055aa);
    box-shadow: 0 2px 10px rgba(0, 191, 255, 0.35);
}

.lang-btn:hover:not(.is-active) {
    color: #fff;
}

.order-header .lang-switch {
    margin-left: auto;
}

.header a[aria-label="LUNEXA STREAM TV"] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 240px;
    min-height: 40px;
    object-fit: contain;
    display: block;
}

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

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 600;
    color: #b8c8d8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 191, 255, 0.15);
    transition: color 0.2s, text-shadow 0.2s, filter 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.65));
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}

.nav-icon svg {
    width: 16px;
    height: 16px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 0 18px rgba(0, 191, 255, 0.55);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(0, 191, 255, 0.35));
}

.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
    color: var(--blue);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(0, 191, 255, 0.5));
}

.btn-wa-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #25d366;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-wa-outline:hover {
    background: linear-gradient(135deg, #2ee06f 0%, #25d366 100%);
    border-color: #2ee06f;
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    transform: translateY(-1px);
}

.btn-wa-outline svg {
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    flex-shrink: 0;
    margin-left: 10px;
}

.mobile-toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 21px; }
.mobile-toggle span:nth-child(3) { top: 28px; }

.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--top-stack) 0 0;
    z-index: 999;
    background: #000000;
    padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-wa {
    margin-top: auto;
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    border-radius: 10px;
}

.mobile-toggle.is-open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8eef4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 14px rgba(0, 191, 255, 0.12);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.mobile-nav .nav-icon {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 10px rgba(0, 191, 255, 0.25));
}

.mobile-nav .nav-icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-neon {
    background: var(--gradient-btn);
    color: #fff;
    box-shadow: var(--glow-blue);
}

.btn-neon:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-blue-lg);
}

.btn-outline-neon {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 191, 255, 0.5);
    color: #fff;
}

.btn-outline-neon:hover {
    background: rgba(0, 191, 255, 0.08);
    border-color: var(--neon);
    box-shadow: var(--glow-blue);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.btn-block {
    width: 100%;
}

/* ─── HERO VIEWPORT (hero + stats = 1 screen) ─── */
.hero-viewport {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: var(--top-stack);
}

.hero-pro {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #000000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #050a14;
    overflow: hidden;
}

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

.hero-bg img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter: none;
    opacity: 1;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.45) 75%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 28%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-bg::after {
    display: none;
}

.hero-shell {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(60px, 1fr) minmax(280px, 420px);
    gap: 16px 22px;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 20px 10px;
    flex: 1;
    min-height: 0;
}

.hero-visual {
    min-height: 1px;
    pointer-events: none;
}

.hero-main {
    max-width: 540px;
    padding: 4px 0;
}

.hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 191, 255, 0.38);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #c8ecff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: 0 0 24px rgba(0, 191, 255, 0.1);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.95);
    flex-shrink: 0;
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(0.92); }
}

.hero-title {
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero-accent-blue {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 191, 255, 0.35));
}

.hero-gold {
    background: linear-gradient(135deg, #ffe566 0%, #ffb020 48%, #ff9f1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 12px rgba(255, 176, 32, 0.25));
}

.hero-lead {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin-bottom: 20px;
    line-height: 1.55;
}

.hero-gold-inline {
    color: var(--gold-bright);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
    margin-bottom: 20px;
}

.hero-stat-card {
    text-align: center;
    padding: 14px 8px 12px;
    border-radius: 12px;
    background: rgba(8, 14, 24, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.hero-stat-card:hover {
    border-color: rgba(0, 191, 255, 0.45);
    background: rgba(0, 191, 255, 0.08);
    box-shadow: 0 4px 28px rgba(0, 191, 255, 0.12);
    transform: none;
}

.hero-stat-num {
    display: block;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffe566 0%, #ffb020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-actions .btn {
    flex: 1 1 200px;
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 10px;
    min-height: 52px;
    font-weight: 700;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transition: background 0.2s, border-color 0.2s;
}

.btn-hero-glass:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.45);
    box-shadow: 0 0 24px rgba(0, 191, 255, 0.15);
    color: #fff;
}

.btn-hero-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-hero-arrow {
    font-size: 1.15em;
    line-height: 1;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 480px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-trust-line {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    margin: 0;
}

.hero-trust-line strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-trust-muted {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.hero-trust-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.hero-trust-bolt {
    color: var(--gold-bright);
    font-size: 14px;
}

/* Stream dashboard preview (pro IPTV app UI) */
.stream-dashboard {
    align-self: center;
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.stream-dashboard-side {
    position: relative;
    z-index: 3;
}

.stream-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 0 2px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-tab {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.stream-tab:hover {
    color: #fff;
}

.stream-tab.is-active {
    color: var(--gold-bright);
    border-color: rgba(255, 213, 79, 0.65);
    background: rgba(255, 213, 79, 0.06);
}

.stream-panel {
    position: relative;
    overflow: hidden;
    background: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 191, 255, 0.22);
    border-radius: 18px;
    padding: 12px 12px 10px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(0, 191, 255, 0.08);
}

.stream-hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0a0e14;
}

.stream-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.stream-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 35%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.stream-badge-live {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    border-radius: 100px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    z-index: 2;
}

.live-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: livePulse 1.5s ease-out infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.stream-meta-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.stream-meta-tags span {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #e8edf4;
}

.stream-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-bright);
    color: #0a0a0a;
    box-shadow: 0 4px 24px rgba(255, 213, 79, 0.45);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 2;
}

.stream-play svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.stream-play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 8px 32px rgba(255, 213, 79, 0.55);
}

.stream-match-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    z-index: 2;
}

.stream-match-title {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 4px;
}

.stream-match-meta {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.stream-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 8px;
}

.stream-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.stream-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stream-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 213, 79, 0.35);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.stream-progress {
    display: flex;
    gap: 5px;
    margin-top: 6px;
    padding: 0 2px;
}

.stream-progress span {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.stream-progress span.is-active {
    background: var(--gold-bright);
    box-shadow: 0 0 8px rgba(255, 213, 79, 0.5);
}

.stream-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(10, 12, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    z-index: 4;
}

.stream-chip strong {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stream-chip span {
    font-size: 8px;
    color: var(--text-muted);
}

.stream-hero-card .stream-chip-wm {
    top: 12px;
    right: 12px;
    border-color: rgba(255, 213, 79, 0.35);
}

.stream-hero-card .stream-chip-wm strong {
    color: var(--gold-bright);
}

.stream-chip-wm strong {
    color: var(--gold-bright);
}

.chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-icon svg {
    width: 14px;
    height: 14px;
}

.chip-icon-trophy {
    background: rgba(255, 213, 79, 0.12);
    color: var(--gold-bright);
}

/* ─── STATS BAR ─── */
.stats-bar {
    position: relative;
    z-index: 5;
    background: rgba(5, 10, 20, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 191, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -8px 32px rgba(0, 191, 255, 0.06);
}

.stats-bar-hero {
    flex-shrink: 0;
    margin-top: auto;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-block:last-child {
    border-right: none;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.cyan {
    background: rgba(0, 191, 255, 0.1);
    color: var(--neon);
    box-shadow: inset 0 0 20px rgba(0, 191, 255, 0.08);
}

.stat-icon.gold {
    background: rgba(255, 176, 32, 0.1);
    color: var(--gold-bright);
}

.stat-icon svg {
    width: 17px;
    height: 17px;
}

.stat-block strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1px;
    line-height: 1.25;
}

.stat-block span {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ─── WHY CHOOSE US ─── */
.section-pro {
    padding: 88px 0;
    background: var(--bg);
}

.section-eyebrow {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #7ee8ff;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.22);
    text-transform: uppercase;
}

.section-heading {
    text-align: center;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 44px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-deep), var(--gold));
    box-shadow: 0 0 16px rgba(0, 191, 255, 0.35);
}

.features-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-pro-card {
    background: rgba(8, 14, 24, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 191, 255, 0.16);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.feature-pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-line);
    opacity: 0.8;
}

.feature-pro-card:hover {
    border-color: rgba(0, 191, 255, 0.35);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.feature-pro-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.feature-pro-icon.cyan {
    background: rgba(0, 191, 255, 0.12);
    color: var(--neon);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.15);
}

.feature-pro-icon.blue {
    background: rgba(0, 136, 204, 0.14);
    color: var(--blue);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.18);
}

.feature-pro-icon.gold {
    background: rgba(255, 176, 32, 0.12);
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 1rem;
}

.feature-pro-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 8px;
}

.feature-pro-card h3.gold-title {
    color: var(--gold-bright);
}

.feature-pro-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.section-lead {
    text-align: center;
    max-width: 640px;
    margin: -36px auto 40px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.section-lead strong {
    color: #fff;
    font-weight: 600;
}

/* ─── MOVIES / VOD ─── */
.movies-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(4, 14, 24, 0.9) 50%, var(--bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vod-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.vod-cat {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: default;
    transition: all 0.25s;
}

.vod-cat.is-active {
    color: #fff;
    border-color: rgba(0, 191, 255, 0.5);
    background: rgba(0, 191, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.vod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 36px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.vod-card {
    background: linear-gradient(180deg, rgba(0, 191, 255, 0.05) 0%, rgba(8, 12, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.vod-card:hover {
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue);
}

.vod-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a1018;
}

.vod-carousel {
    position: absolute;
    inset: 0;
}

.vod-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.85s ease-in-out;
    pointer-events: none;
}

.vod-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.vod-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 5s ease-out;
}

.vod-slide.is-active img {
    transform: scale(1.08);
}

.vod-card[data-vod-card="sport"] .vod-poster,
.vod-card[data-vod-card="filme"] .vod-poster,
.vod-card[data-vod-card="serien"] .vod-poster {
    aspect-ratio: 2 / 3;
}

.vod-slide-poster {
    background: #0a0a0c;
}

.vod-slide-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none !important;
}

.vod-slide-poster.is-active img {
    transform: none !important;
}

.vod-slide-sport img {
    object-fit: cover;
    object-position: center;
}

.vod-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.vod-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.vod-dot.is-active {
    background: var(--blue);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

.vod-card-desc {
    min-height: 2.6em;
    transition: opacity 0.35s ease;
}

.vod-card-desc.is-fading {
    opacity: 0.35;
}

.vod-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #0f1a28 0%, #1a2840 100%);
}

.vod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: rgba(0, 191, 255, 0.9);
    color: #fff;
}

.vod-badge-series {
    background: rgba(255, 176, 32, 0.95);
    color: #1a1000;
}

.vod-badge-live {
    background: #e53935;
    color: #fff;
}

.vod-badge-anime {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
}

.vod-poster-anime {
    background: linear-gradient(135deg, #1a1030 0%, #2d1b4e 100%);
}

.vod-poster-anime .vod-poster-placeholder {
    font-size: 3.5rem;
    background: transparent;
}

.vod-card.is-highlight {
    border-color: rgba(0, 191, 255, 0.55);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}

.vod-badge,
.vod-play {
    z-index: 3;
}

.vod-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s;
}

.vod-play svg {
    width: 48px;
    height: 48px;
    color: var(--gold-bright);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.vod-card:hover .vod-play {
    opacity: 1;
}

.vod-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    padding: 14px 14px 4px;
}

.vod-card p {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 14px 14px;
}

.movies-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ─── CONTACT (3 channels) ─── */
.contact-section {
    background: #050a18;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-section .section-heading {
    margin-bottom: 16px;
}

.contact-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    color: #c8d4e0;
    line-height: 1.65;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 12, 22, 0.85);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 22px;
}

.channel-icon svg {
    width: 34px;
    height: 34px;
    color: #fff;
}

.channel-wa .channel-icon {
    background: #25d366;
    box-shadow: 0 0 28px rgba(37, 211, 102, 0.55);
}

.channel-tg .channel-icon {
    background: #2aabee;
    box-shadow: 0 0 28px rgba(42, 171, 238, 0.55);
}

.channel-email .channel-icon {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.4);
}

.channel-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.channel-card > p:not(.channel-email-address):not(.channel-handle) {
    font-size: 0.92rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 28px;
    flex: 1;
}

.channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.channel-btn:hover {
    transform: translateY(-2px);
    color: inherit;
}

.channel-btn-wa {
    background: linear-gradient(135deg, #2ee66f 0%, #25d366 50%, #1da851 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.channel-btn-wa:hover {
    filter: brightness(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.channel-btn-tg {
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(42, 171, 238, 0.45);
}

.channel-btn-tg:hover {
    filter: brightness(1.08);
    color: #fff;
}

.channel-btn-email {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 18px rgba(59, 130, 246, 0.4);
}

.channel-btn-email:hover {
    filter: brightness(1.08);
    color: #fff;
}

.channel-handle,
.channel-email-address {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-bright);
}

.channel-email-address {
    margin-top: 14px;
}

.footer-email {
    display: inline-block;
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-bright);
    transition: color 0.2s;
}

.footer-email:hover {
    color: var(--blue);
}

.footer-bottom a {
    color: var(--gold-bright);
}

.footer-bottom a:hover {
    color: var(--blue);
}


/* ─── PRICING (DE style) ─── */
.pricing-pro {
    background: #050a18;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-eyebrow {
    color: #ffb020 !important;
    letter-spacing: 3px;
}

.pricing-heading {
    background: linear-gradient(135deg, #ffe566 0%, #ffb020 45%, #ff9f1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 20px rgba(255, 176, 32, 0.25));
}

.device-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 36px;
    padding: 4px;
    border-radius: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: fit-content;
}

.device-toggle-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #9ca3af;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.device-toggle-btn:not(.is-active) {
    border: 1px solid transparent;
}

.device-toggle-btn.is-active {
    background: linear-gradient(135deg, #ffb020 0%, #ff8c00 100%);
    color: #1a1000;
    box-shadow: 0 4px 18px rgba(255, 176, 32, 0.5);
}

.device-toggle-btn:hover:not(.is-active) {
    color: #fff;
}

.pricing-cards-de {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.price-card-de {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 22px 22px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.price-card-de:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card-de-featured {
    border: 2px solid #ffb020;
    box-shadow: 0 0 32px rgba(255, 176, 32, 0.45), 0 0 60px rgba(255, 140, 0, 0.15);
}

.price-card-de-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe566 0%, #ffb020 100%);
    color: #1a1000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 176, 32, 0.55);
}

.price-card-de-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.price-card-de-sub {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.price-card-de-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 24px;
    line-height: 1;
}

.price-euro,
.price-int {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffcc00;
    letter-spacing: -0.03em;
}

.price-dec {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    align-self: flex-start;
    margin-top: 0.35em;
}

.price-card-de-features {
    list-style: none;
    text-align: left;
    margin: 0 0 22px;
    flex: 1;
}

.price-card-de-features li {
    position: relative;
    padding: 7px 0 7px 26px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
}

.price-card-de-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #22c55e;
}

.price-card-de-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffb020 0%, #ff8c00 100%);
    color: #1a1000;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 176, 32, 0.45);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.price-card-de-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 176, 32, 0.6);
    color: #1a1000;
}

.price-card-de-guarantee {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
}

/* ─── FAQ ─── */
.faq-section {
    background: var(--bg);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(8, 12, 20, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
    border-color: rgba(255, 176, 32, 0.2);
}

.faq-item.open {
    border-color: rgba(0, 191, 255, 0.35);
    box-shadow: 0 8px 28px rgba(0, 191, 255, 0.1);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 176, 32, 0.5);
    color: var(--gold-bright);
    background: rgba(255, 176, 32, 0.08);
    transition: transform 0.3s ease, background 0.3s, border-color 0.3s;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.5);
    color: var(--blue);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.65;
}

.faq-a a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-a a:hover {
    color: var(--blue);
}

/* ─── FOOTER ─── */
.footer-pro {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 52px 0 28px;
    background: #000000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo {
    height: 58px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.footer-pro p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.65;
}

.slogan-line {
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    color: #b8c4d0;
    transition: color 0.2s;
}

.footer-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 7px;
    background: #1c1c24;
    border: 1px solid rgba(255, 176, 32, 0.35);
    color: #ffb020;
}

.footer-link-icon svg {
    width: 15px;
    height: 15px;
    opacity: 1;
}

.footer-link-icon--mail {
    background: #152a38;
    border-color: rgba(0, 191, 255, 0.45);
    color: #00bfff;
}

.footer-link-icon--wa {
    background: #25d366;
    border-color: #1faa52;
    color: #ffffff;
}

.footer-link:hover {
    color: var(--blue);
}

.footer-link:hover .footer-link-icon:not(.footer-link-icon--wa) {
    background: #252530;
    border-color: rgba(0, 191, 255, 0.5);
    color: #00bfff;
}

.footer-link:hover .footer-link-icon--wa {
    background: #2ee06f;
    border-color: #25d366;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact FABs (Telegram + WhatsApp) */
.contact-fabs {
    position: fixed;
    bottom: max(18px, env(safe-area-inset-bottom));
    right: max(14px, env(safe-area-inset-right));
    z-index: 10050;
    pointer-events: none;
}

.contact-fabs-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    pointer-events: auto;
}

.contact-fabs-stack .contact-fab {
    pointer-events: auto;
}

.contact-fab {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s;
}

.contact-fab:hover {
    transform: scale(1.06);
    color: #fff;
}

.contact-fab svg {
    width: 28px;
    height: 28px;
}

.contact-fab--tg {
    background: #2aabee;
    box-shadow: 0 4px 18px rgba(42, 171, 238, 0.5);
}

.contact-fab--wa {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2ee06f 0%, #25d366 100%);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    border-color: rgba(255, 255, 255, 0.3);
    animation: wa-fab-pulse 2.4s ease-in-out infinite;
}

.contact-fab--wa svg {
    width: 28px;
    height: 28px;
}

@keyframes wa-fab-pulse {
    0%, 100% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    }
    50% {
        box-shadow: 0 8px 26px rgba(37, 211, 102, 0.75), 0 0 0 6px rgba(37, 211, 102, 0.15);
    }
}

.footer-link-icon--tg {
    background: #2aabee;
    border-color: #229ed9;
    color: #fff;
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #ff3b3b;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
}

/* ─── DEVICES STRIP (pro) ─── */
.devices-strip {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(4, 12, 22, 0.9) 100%);
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading-sm {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 36px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.device-item {
    background: rgba(8, 14, 24, 0.9);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: 10px;
    padding: 22px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.device-item span {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 10px;
    line-height: 1;
}

.device-item:hover {
    border-color: rgba(0, 191, 255, 0.4);
    color: #fff;
    box-shadow: var(--glow-blue);
}

/* ─── EASY SETUP ─── */
.setup-section {
    padding: 80px 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setup-heading {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.setup-heading-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 20px;
    background: var(--gold-bright);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 176, 32, 0.45);
}

.setup-lead {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.setup-step-card {
    text-align: center;
    padding: 40px 28px 36px;
    border-radius: 14px;
    background: rgba(8, 14, 24, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.14);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.setup-step-card:hover {
    border-color: rgba(255, 176, 32, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.setup-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 2px solid var(--gold-bright);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 176, 32, 0.15);
}

.setup-step-icon svg {
    width: 24px;
    height: 24px;
}

.setup-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.setup-step-card p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

.setup-step-card p a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.setup-step-card p a:hover {
    color: var(--blue);
}

/* ─── AFTER ORDER ─── */
.order-after-section {
    padding: 80px 0 72px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-after-section .setup-heading-line {
    margin-bottom: 40px;
}

.order-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gold-bright);
    color: #1a1000;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(255, 176, 32, 0.35);
}

.order-steps .setup-step-icon {
    display: none;
}

.order-after-link-wrap {
    text-align: center;
    margin-top: 36px;
}

.order-after-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-bright);
    transition: color 0.2s;
}

.order-after-link:hover {
    color: #ffe566;
}

.order-after-section .setup-step-card p a {
    color: var(--gold-bright);
}

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 64px 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        var(--bg);
    border-top: 1px solid rgba(0, 191, 255, 0.15);
}

.cta-inner {
    text-align: center;
    max-width: 640px;
}

.cta-inner h2 {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-inner p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-strip span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-height: 860px) {
    .hero-shell {
        padding: 10px 18px 6px;
    }

    .hero-badge-pro {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .hero-title-line {
        font-size: 1.45rem;
    }

    .hero-lead {
        margin-bottom: 10px;
        font-size: 0.82rem;
    }

    .stat-block {
        padding: 10px 12px;
    }
}

@media (max-width: 1100px) {
    .vod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 3 cards: center the lone card on the last row */
    .vod-grid .vod-card:last-child:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, calc((100% - 18px) / 2));
        max-width: calc((100% - 18px) / 2);
    }

    .contact-channels {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-cards-de {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-shell {
        grid-template-columns: 1fr;
        max-width: 520px;
        min-height: auto;
        padding-top: 28px;
        padding-bottom: 40px;
        gap: 0;
    }

    .hero-visual {
        order: 2;
        min-height: 0;
        margin: 0;
        width: 100%;
    }

    .hero-main {
        order: 1;
        max-width: 100%;
    }

    .hero-stats {
        max-width: 100%;
    }

    .stream-dashboard-side {
        order: 3;
        max-width: 100%;
        justify-self: stretch;
        margin-top: 12px;
    }

    .features-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-block:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
        --ticker-h: 28px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-links,
    .header-cta-desktop {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-inner {
        min-height: var(--header-h);
        gap: 10px;
    }

    .logo-img {
        height: 40px;
        max-width: min(180px, 52vw);
    }

    .announcement-item {
        font-size: 10px;
        padding: 0 14px;
    }

    .hero-viewport {
        min-height: auto;
    }

    .hero-pro {
        min-height: auto;
        overflow: hidden;
    }

    .hero-visual {
        display: none;
    }

    .hero-bg::after {
        display: block;
    }

    .hero-bg img {
        transform: scale(1.06);
        filter: blur(6px) brightness(0.38) saturate(0.85);
        opacity: 0.8;
        object-position: center 40%;
    }

    .hero-ambient {
        opacity: 1;
        background:
            radial-gradient(ellipse 100% 70% at 50% 15%, rgba(0, 136, 204, 0.28) 0%, transparent 55%),
            radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 176, 32, 0.06) 0%, transparent 50%);
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.88) 100%);
    }

    .hero-shell {
        padding: 18px 0 24px;
        width: 100%;
        max-width: none;
    }

    .hero-main {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-badge-pro {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .hero-title-line {
        font-size: clamp(1.55rem, 6.8vw, 2rem);
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        font-size: 0.92rem;
    }

    .hero-stats {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-stat-card {
        padding: 12px 6px 10px;
        border-radius: 10px;
    }

    .hero-stat-num {
        font-size: clamp(1rem, 3.8vw, 1.2rem);
        margin-bottom: 4px;
    }

    .hero-stat-label {
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 14px;
    }

    .hero-actions .btn {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 50px;
    }

    .hero-trust {
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .hero-trust-meta {
        justify-content: center;
    }

    .stream-dashboard-side {
        margin-top: 4px;
    }

    .stream-dashboard {
        max-width: 100%;
    }

    .stream-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .stream-tab {
        font-size: 12px;
        padding: 5px 10px;
    }

    .stream-hero-card .stream-chip-wm {
        display: none;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-block {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 10px;
        gap: 8px;
    }

    .stat-block:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-block:nth-child(even) {
        border-right: none;
    }

    .stat-block:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-block strong {
        font-size: 0.78rem;
    }

    .stat-block span {
        font-size: 9px;
    }

    .section-pro {
        padding: 52px 0;
    }

    .section-heading {
        margin-bottom: 32px;
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        padding: 0 4px;
    }

    .section-lead {
        margin: -24px auto 28px;
        font-size: 0.95rem;
        padding: 0 4px;
    }

    .features-pro-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-pro-card {
        padding: 22px 18px;
    }

    .vod-categories {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 0 24px;
        padding: 4px 0 10px;
        gap: 8px;
        max-width: 100%;
    }

    .vod-categories::-webkit-scrollbar {
        display: none;
    }

    .vod-cat {
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 14px;
    }

    .movies-cta-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 4px;
    }

    .movies-cta-row .btn {
        width: 100%;
    }

    .pricing-cards-de {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-card-de {
        padding: 24px 18px 20px;
    }

    .price-card-de-title {
        font-size: 1.45rem;
    }

    .price-euro,
    .price-int {
        font-size: 2.35rem;
    }

    .device-toggle {
        width: 100%;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .device-toggle-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 13px;
        min-height: 44px;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 4px;
    }

    .channel-card {
        padding: 28px 20px 24px;
    }

    .channel-card h3 {
        font-size: 1.2rem;
    }

    .faq-q {
        padding: 16px 14px;
        font-size: 0.95rem;
        min-height: 52px;
    }

    .faq-a {
        padding: 0 14px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col p,
    .footer-link {
        word-break: break-word;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .device-item {
        padding: 16px 10px;
        font-size: 12px;
    }

    .devices-strip {
        padding: 48px 0;
    }

    .setup-section {
        padding: 52px 0;
    }

    .setup-steps {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .contact-fabs-stack {
        gap: 5px;
    }

    .contact-fabs {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(12px, env(safe-area-inset-right));
        z-index: 10050;
    }

    .contact-fab {
        width: 48px;
        height: 48px;
    }

    .contact-fab--wa {
        width: 54px;
        height: 54px;
    }

    .footer-pro {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }

    .order-after-section {
        padding: 48px 0 40px;
    }

    .order-main {
        padding: calc(var(--header-h) + 20px) 0 calc(100px + env(safe-area-inset-bottom));
    }

    .order-header .logo-img {
        height: 38px;
        max-width: 150px;
    }

    .order-back-link {
        font-size: 12px;
        max-width: 42%;
        text-align: right;
        line-height: 1.35;
    }

    .order-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-stat-card {
        padding: 10px 5px 9px;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr;
    }

    .stat-block,
    .stat-block:nth-child(odd) {
        border-right: none;
    }

    .stat-block:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-block:last-child {
        border-bottom: none;
    }

    .price-card-de-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .contact-fab {
        width: 48px;
        height: 48px;
    }

    .footer-logo {
        max-width: 160px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .btn-neon:hover,
    .btn-hero-primary:hover,
    .btn-hero-glass:hover,
    .btn-outline-neon:hover,
    .btn-whatsapp:hover,
    .feature-pro-card:hover,
    .vod-card:hover,
    .channel-card:hover,
    .price-card-de:hover,
    .price-card-de-btn:hover,
    .device-item:hover,
    .contact-fab:hover {
        transform: none;
    }
}

/* ─── ORDER PAGE (mockup layout) ─── */
.order-page {
    --top-stack: var(--header-h);
    --order-bg: #121212;
    --order-card: #1a1a1a;
    --order-border: rgba(255, 255, 255, 0.1);
    --order-orange: #ffb82b;
}

.order-header .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
}

.order-header .nav-links,
.order-header .header-cta-desktop,
.order-header .mobile-toggle {
    display: none;
}

.order-page .order-back-link {
    flex-shrink: 1;
    min-width: 0;
}

.order-back-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.order-back-link:hover {
    color: var(--order-orange);
}

.order-main {
    padding: calc(var(--header-h) + 28px) 0 calc(100px + env(safe-area-inset-bottom));
    min-height: 100vh;
    background: var(--order-bg);
}

.order-container {
    max-width: 560px;
}

.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid var(--order-border);
    background: var(--order-card);
}

.order-summary-plan {
    font-size: 14px;
    font-weight: 600;
    color: #e8eef4;
}

.order-summary-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--order-orange);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.order-field {
    margin: 0;
    border: none;
    padding: 0;
    min-width: 0;
}

.order-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.order-label-hint {
    font-weight: 400;
    color: #9ca3af;
    font-size: 14px;
}

.order-input--plain {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--order-border);
    background: var(--order-card);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.order-input--plain::placeholder {
    color: #6b7280;
}

.order-input--plain:focus {
    outline: none;
    border-color: rgba(255, 184, 43, 0.5);
}

.order-phone-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
}

.order-phone-code {
    padding: 14px 32px 14px 14px;
    border-radius: 8px;
    border: 1px solid var(--order-border);
    background: var(--order-card);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffb82b' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.order-phone-code:focus {
    outline: none;
    border-color: rgba(255, 184, 43, 0.5);
}

.order-device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.order-device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--order-border);
    background: var(--order-card);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.order-device-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(145deg, #141414 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.order-device-icon i {
    font-size: 1.35rem;
    line-height: 1;
    display: block;
}

.order-device-icon--text span {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.order-device-name {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
}

.order-device-card--fire .order-device-icon {
    color: #ff9900;
    box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.25), 0 4px 20px rgba(255, 153, 0, 0.35);
}

.order-device-card--android .order-device-icon {
    color: #3ddc84;
    box-shadow: 0 0 0 1px rgba(61, 220, 132, 0.25), 0 4px 20px rgba(61, 220, 132, 0.35);
}

.order-device-card--phone .order-device-icon {
    color: #4da3ff;
    box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.25), 0 4px 20px rgba(77, 163, 255, 0.35);
}

.order-device-card--ios .order-device-icon {
    color: #f5f5f7;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 4px 18px rgba(255, 255, 255, 0.12);
}

.order-device-card--appletv .order-device-icon {
    color: #e8e8ed;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 4px 18px rgba(200, 200, 210, 0.15);
}

.order-device-card--smarttv .order-device-icon {
    color: #ffb020;
    box-shadow: 0 0 0 1px rgba(255, 176, 32, 0.2), 0 4px 20px rgba(255, 176, 32, 0.3);
}

.order-device-card--lg .order-device-icon--text {
    color: #ef5350;
    box-shadow: 0 0 0 1px rgba(239, 83, 80, 0.25), 0 4px 20px rgba(239, 83, 80, 0.35);
}

.order-device-card--pcmac .order-device-icon {
    color: #b388ff;
    box-shadow: 0 0 0 1px rgba(179, 136, 255, 0.25), 0 4px 20px rgba(179, 136, 255, 0.35);
}

.order-device-card--other .order-device-icon {
    color: #9ca3af;
    box-shadow: 0 0 0 1px rgba(156, 163, 175, 0.15), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.order-device-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.order-device-card:has(input:checked) {
    border-color: var(--order-orange);
    box-shadow: 0 0 0 1px rgba(255, 184, 43, 0.4);
}

.order-device-card:has(input:checked) .order-device-icon {
    transform: scale(1.04);
}

.order-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    background: var(--order-orange);
    color: #1a1000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 184, 43, 0.4);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.order-submit-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 184, 43, 0.55);
}

@media (max-width: 520px) {
    .order-phone-row {
        grid-template-columns: 1fr;
    }

    .order-phone-code {
        font-size: 15px;
        min-height: 48px;
    }

    .order-input--plain {
        min-height: 48px;
        font-size: 16px;
    }

    .order-device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .order-device-name {
        font-size: 11px;
    }

    .order-submit-btn {
        min-height: 52px;
        font-size: 17px;
    }
}

/* ─── PRO POLISH (site-wide · LUNEXA blue + gold) ─── */
#channels {
    position: relative;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 136, 204, 0.12) 0%, transparent 55%),
        var(--bg);
}

.pricing-pro {
    position: relative;
    overflow: hidden;
}

.pricing-pro::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100vw);
    max-width: 100%;
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(255, 176, 32, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-pro .container {
    position: relative;
    z-index: 1;
}

.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(0, 191, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.channel-card {
    background: rgba(8, 14, 24, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(0, 191, 255, 0.18);
}

.vod-card {
    background: rgba(8, 14, 24, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(0, 191, 255, 0.14);
}

.footer-pro {
    background: linear-gradient(180deg, #000000 0%, #050a12 100%);
    border-top-color: rgba(0, 191, 255, 0.15);
}

.device-item {
    background: rgba(8, 14, 24, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .stats-bar-hero {
        border-top: none;
        box-shadow: none;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .hero-trust {
        text-align: left;
        align-items: flex-start;
    }
}
