/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #050505;
    --bg-light: #111111;
    --primary-yellow: #FFD700;
    --neon-yellow: #FFFF00;
    --text-main: #FFFFFF;
    --text-muted: #AAAAAA;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(17, 17, 17, 0.7);
    --glass-border: rgba(255, 215, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   ScrollSequence Hero - Professional Animation Styles
   ═══════════════════════════════════════════════════ */

/* Loading Overlay */
#seq-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.seq-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.seq-loader-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.1);
    border-top-color: var(--primary-yellow);
    animation: seqSpin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15),
                inset 0 0 15px rgba(255, 215, 0, 0.05);
}

@keyframes seqSpin {
    to { transform: rotate(360deg); }
}

.seq-loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.seq-loader-percent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-yellow);
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.seq-loader-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Scroll Progress Bar */
#scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-yellow) 0%, 
        #FFA500 50%, 
        var(--primary-yellow) 100%
    );
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 20;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6),
                0 0 30px rgba(255, 215, 0, 0.2);
}

/* Scroll Hint */
#scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.scroll-hint-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: scrollHintFloat 2.5s ease-in-out infinite;
}

.scroll-hint-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 13px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-hint-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-yellow);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollHintWheel 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

#scroll-hint span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes scrollHintFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes scrollHintWheel {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Canvas - enhanced */
#hero-canvas {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: contents;
}

/* Hero Content - refined typography */
.hero-container .hero-content {
    box-sizing: border-box;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 215, 0, 1), 
                 0 2px 20px #000, 
                 0 0 80px rgba(255, 215, 0, 0.5);
    will-change: transform, opacity;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 2px 10px #000, 0 0 30px rgba(0,0,0,0.9);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-cta {
    margin-top: 30px;
    font-size: 1.1rem;
    padding: 15px 40px;
    will-change: transform, opacity;
    position: relative;
}

/* ═══════════════════════════════════════════
   Mobile Responsive - Hero & ScrollSequence
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        letter-spacing: 0;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 
                     0 2px 10px #000;
        padding: 0 15px;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 20px;
        margin-top: 8px;
        line-height: 1.5;
    }
    .hero-cta {
        margin-top: 20px;
        font-size: 0.9rem;
        padding: 12px 28px;
    }
    #scroll-hint {
        bottom: 20px;
    }
    .scroll-hint-mouse {
        width: 22px;
        height: 36px;
    }
    #scroll-hint span {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}

/* Phone */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem !important;
        letter-spacing: -0.5px;
        line-height: 1.2;
        padding: 0 12px;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 
                     0 1px 8px #000;
    }
    .hero-subtitle {
        font-size: 0.8rem !important;
        padding: 0 16px;
        margin-top: 6px;
        text-shadow: 0 1px 6px #000;
    }
    .hero-cta {
        margin-top: 16px;
        font-size: 0.8rem;
        padding: 10px 24px;
    }
    .hero-container .hero-content {
        padding: 15px 8px !important;
    }
    #scroll-hint {
        bottom: 12px;
    }
    .scroll-hint-mouse {
        width: 18px;
        height: 30px;
        border-width: 1.5px;
    }
    .scroll-hint-wheel {
        width: 3px;
        height: 7px;
        margin-top: 6px;
    }
    #scroll-hint span {
        font-size: 0.55rem;
    }
    /* Reduce loading spinner on mobile */
    .seq-loader-ring {
        width: 44px;
        height: 44px;
    }
    .seq-loader-percent {
        font-size: 1.1rem;
    }
}

/* Ultra-small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 0.72rem !important;
    }
    .hero-cta {
        font-size: 0.72rem;
        padding: 8px 20px;
    }
}

/* Intense Lightning Background */
.lightning-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* Simulated Lightning Bolts */
.bolt {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: #fff;
    box-shadow: 0 0 20px 5px var(--neon-yellow);
    opacity: 0;
    transform-origin: top;
    filter: blur(1px);
}

@keyframes flashAnimation {
    0%, 100% { opacity: 0; }
    5%, 15% { opacity: 0.8; }
    10%, 20% { opacity: 0; }
}

@keyframes strikeBolt {
    0%, 100% { opacity: 0; }
    10% { opacity: 1; transform: rotate(15deg) scaleY(1.2); }
    20% { opacity: 0; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-yellow);
    text-decoration: none;
    text-shadow: 0 0 10px var(--neon-yellow);
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 8px var(--primary-yellow);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-yellow), #FFA500);
    color: #000;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary-yellow);
    transform: scale(1.05);
}

/* General Layout */
.section {
    padding: 80px 20px;
    max-width: 1400px; /* Wider for 4 columns */
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.2rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }
}

/* Glass Cards (Packages, Stats, etc) */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    border-color: var(--primary-yellow);
}

.glass-card.premium {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
}

.glass-card.premium:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.05) translateY(-10px);
}

.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.glass-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.glass-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    font-size: 0.9rem;
}

.glass-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-card ul li i {
    color: var(--primary-yellow);
}

/* Quick Stats */
.stat-card {
    background: var(--primary-yellow);
    color: #000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}
.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}
.stat-card p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Accordion */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-yellow);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Swiper Sliders */
.swiper-container {
    width: 100%;
    padding: 50px 0;
    overflow: hidden; /* For custom arrows */
}

/* 3D Coverflow Slider */
.swiper-3d .swiper-slide {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid transparent;
}
.swiper-3d .swiper-slide-active {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}
.swiper-3d .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Marquee Sliders - Specific fixed widths to prevent squishing */
.swiper-marquee-1 .swiper-slide {
    width: 250px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-yellow);
    opacity: 0.7;
    transition: 0.3s;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.swiper-marquee-1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.swiper-marquee-2 .swiper-slide {
    width: 200px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-yellow);
    opacity: 0.7;
    transition: 0.3s;
}
.swiper-marquee-2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-marquee .swiper-slide:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-yellow);
    z-index: 10;
}

/* Testimonial Marquee */
.swiper-testimonials .swiper-slide {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    height: auto;
}
.rating i { color: var(--primary-yellow); }

/* How it works */
.how-it-works-step {
    text-align: center;
    position: relative;
}
.how-it-works-step .circle {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

/* Footer */
footer {
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 20px;
    margin-top: 100px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-grid p { color: var(--text-muted); margin-top: 15px; }
.footer-links h4 { color: var(--primary-yellow); margin-bottom: 20px; font-family: var(--font-heading); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-links ul a:hover { color: var(--primary-yellow); }
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}
.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.sponsor-logos img {
    height: 40px;
    opacity: 0.5;
    transition: 0.3s;
}
.sponsor-logos img:hover {
    opacity: 1;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255,215,0,0.2);
}

/* Chat Bot Float */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
    z-index: 1000;
    color: #000;
    font-size: 24px;
    transition: 0.3s;
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* Country Phone Input */
.phone-input-wrapper {
    display: flex;
}
.country-select {
    width: 100px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-right: none;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    header {
        padding: 12px 15px;
    }
    .logo {
        font-size: 16px;
        gap: 6px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .section {
        padding: 50px 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 12px;
    }
    .logo {
        font-size: 14px;
        gap: 5px;
    }
    .btn-primary {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

/* Unified site shell */
.page-main {
    padding-top: 96px;
}

.site-topbar {
    gap: 22px;
}

.site-logo {
    min-width: 0;
}

.site-logo span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logo-bolt,
.logo-image-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.22);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.logo-image-wrap::after,
.logo-bolt::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.55), transparent 65%);
    transform: translateX(-120%) skewX(-18deg);
    animation: logoLightningSweep 4s ease-in-out infinite;
}

@keyframes logoLightningSweep {
    0%, 55%, 100% { transform: translateX(-120%) skewX(-18deg); }
    70% { transform: translateX(120%) skewX(-18deg); }
}

.logo-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-bolt i {
    color: var(--primary-yellow);
    font-size: 1.4rem;
}

.site-nav a.active,
nav a.active {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.65);
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.55);
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.65);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-secondary-light {
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.04);
    box-shadow: inset 0 0 18px rgba(255, 215, 0, 0.04);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.hero-title {
    letter-spacing: 0;
}

/* Floating chat and trial buttons */
.floating-action-stack {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-action-stack .chat-widget,
.trial-float {
    position: static;
    width: auto;
    height: auto;
    min-height: 58px;
    border: 0;
    border-radius: 8px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    color: #050505;
    font-family: var(--font-heading);
    font-weight: 900;
    background: linear-gradient(135deg, #ffe766, #ffbd00 52%, #fff7ad);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.36), 0 0 70px rgba(255, 215, 0, 0.16);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    isolation: isolate;
    overflow: hidden;
}

.floating-action-stack .chat-widget::before,
.trial-float::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.75), transparent 45%);
    transform: translateX(-140%) skewX(-18deg);
    animation: buttonLightningSweep 3.2s ease-in-out infinite;
    z-index: -1;
}

.trial-float {
    background: linear-gradient(135deg, #111, #2a2100 55%, #ffd700);
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.floating-action-stack i {
    font-size: 1.25rem;
}

@keyframes buttonLightningSweep {
    0%, 45%, 100% { transform: translateX(-140%) skewX(-18deg); }
    62% { transform: translateX(145%) skewX(-18deg); }
}

.chat-panel {
    position: fixed;
    right: 26px;
    bottom: 168px;
    width: min(360px, calc(100vw - 32px));
    z-index: 1201;
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.65), 0 0 34px rgba(255,215,0,0.18);
}

.chat-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--primary-yellow);
    font-family: var(--font-heading);
}

.chat-panel-head button {
    border: 0;
    background: rgba(255,255,255,0.08);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
}

.chat-panel p {
    color: #ddd;
    margin-bottom: 16px;
}

.chat-panel-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Forms */
.form-hero,
.setup-hero {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 70px;
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent 34%),
        radial-gradient(circle at 72% 20%, rgba(255, 215, 0, 0.12), transparent 28%);
}

.form-hero h1,
.setup-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 7vw, 5.5rem);
    line-height: 1.05;
    max-width: 1000px;
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(255, 215, 0, 0.36);
}

.form-hero p,
.setup-hero p {
    margin-top: 20px;
    max-width: 760px;
    color: #d7d7d7;
    font-size: clamp(1rem, 2.3vw, 1.28rem);
}

.form-section {
    padding-top: 40px;
}

.lead-form-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    background: rgba(12, 12, 12, 0.88);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.lead-form-copy {
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.12), transparent 40%),
        #080808;
    position: relative;
}

.lead-form-copy h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 14px;
    letter-spacing: 0;
}

.lead-form-copy p {
    color: #ddd;
}

.checkout-price {
    color: var(--primary-yellow) !important;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.45rem;
}

.lightning-lines {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 36px;
    height: 88px;
    opacity: 0.55;
    background:
        linear-gradient(120deg, transparent 0 35%, var(--primary-yellow) 36% 38%, transparent 39% 100%),
        linear-gradient(145deg, transparent 0 52%, #fff4a8 53% 55%, transparent 56% 100%);
    filter: drop-shadow(0 0 16px rgba(255,215,0,0.6));
}

.lead-form {
    padding: 42px;
}

.lead-form .btn-primary {
    width: 100%;
}

.success-box {
    border: 1px solid rgba(72, 255, 125, 0.55);
    background: rgba(72, 255, 125, 0.11);
    color: #e8ffe8;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 22px;
}

.success-box a {
    display: block;
    color: var(--primary-yellow);
    margin-top: 8px;
    font-weight: 800;
}

.phone-input-wrapper {
    gap: 0;
}

.phone-input-wrapper .country-select {
    width: min(210px, 48%);
    border-right: 0;
    border-radius: 4px 0 0 4px;
}

.phone-input-wrapper input[type="tel"],
.phone-input-wrapper input[name="phone"] {
    border-radius: 0 4px 4px 0;
}

/* TV catalog */
.catalog-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 140px 28px 70px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.18);
}

.catalog-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.93), rgba(0,0,0,0.42)),
        url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&q=80&w=1800") center/cover;
    transform: scale(1.02);
    filter: saturate(1.1);
}

.catalog-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.24), transparent 26%),
        linear-gradient(180deg, transparent 0%, #050505 100%);
}

.catalog-hero-content {
    position: relative;
    z-index: 1;
    width: min(1250px, 100%);
}

.catalog-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 7.4rem);
    line-height: 0.98;
    max-width: 1000px;
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(255, 215, 0, 0.34);
}

.catalog-hero p {
    max-width: 860px;
    color: #f2f2f2;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    margin: 24px 0 34px;
}

.catalog-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 18px;
    max-width: 1020px;
}

.catalog-hero-stats div {
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(10,10,10,0.68);
    padding: 24px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.catalog-hero-stats strong {
    display: block;
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0;
}

.catalog-hero-stats span {
    color: #cfcfcf;
    font-weight: 800;
}

.catalog-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.catalog-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.catalog-intro p {
    color: #cfcfcf;
    font-size: 1.15rem;
}

.catalog-shell {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    overflow: hidden;
    background: #f4f6fa;
    color: #061126;
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    background: #090909;
    padding: 34px;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 0 22px;
    min-height: 64px;
    border: 1px solid rgba(255, 215, 0, 0.28);
}

.catalog-search i {
    color: #6d7482;
    font-size: 1.35rem;
}

.catalog-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #061126;
    font-size: 1rem;
    font-weight: 800;
}

.catalog-count {
    color: #fff;
    font-weight: 900;
}

.region-tabs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 22px 34px;
    background: #f4f6fa;
    border-bottom: 1px solid #d9dfec;
}

.region-tabs button,
.vod-filter-row button {
    border: 1px solid #d9dfec;
    border-radius: 9px;
    background: #fff;
    color: #061126;
    min-height: 52px;
    padding: 0 24px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.region-tabs button.active,
.vod-filter-row button.active {
    background: linear-gradient(135deg, var(--primary-yellow), #ffb000);
    color: #050505;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(255,215,0,0.22);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 600px;
}

.country-list {
    background: #0a0b0d;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 720px;
    overflow: auto;
}

.country-list button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #d6d6d6;
    font-weight: 900;
    padding: 0 18px;
    cursor: pointer;
    text-align: left;
}

.country-list button.active {
    background: linear-gradient(135deg, var(--primary-yellow), #ffb000);
    color: #050505;
}

.channel-panel {
    background: #fff;
    padding: 54px;
    min-width: 0;
}

.channel-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    margin-bottom: 34px;
}

.channel-panel h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    color: #061126;
    letter-spacing: 0;
}

.channel-panel-head span {
    color: #9c7800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
}

.channel-category {
    margin-bottom: 30px;
}

.channel-category-title {
    background: #101010;
    color: #fff;
    border-left: 8px solid var(--primary-yellow);
    border-radius: 8px;
    padding: 18px 22px;
    font-weight: 900;
    margin-bottom: 16px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.channel-item {
    min-height: 58px;
    border: 1px solid #dce2ef;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    background: #f8fbff;
}

.channel-item::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-yellow);
    box-shadow: 0 0 0 7px rgba(255,215,0,0.16);
    flex: 0 0 auto;
}

.country-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.country-card {
    background: rgba(24,24,28,0.86);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 24px;
    min-height: 180px;
    cursor: pointer;
}

.country-card h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.country-card span {
    color: var(--primary-yellow);
    font-weight: 900;
}

.country-card p {
    color: #ccc;
    margin-top: 10px;
}

.vod-filter-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-bottom: 28px;
}

.vod-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vod-card {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #111;
}

.vod-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(1.04);
}

.vod-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.94));
}

.vod-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
}

.vod-card span {
    display: inline-flex;
    background: linear-gradient(135deg, var(--primary-yellow), #ffb000);
    color: #050505;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

.vod-card h3 {
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.vod-card p {
    color: #ddd;
    margin-top: 8px;
}

/* Setup guide */
.setup-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.setup-workspace {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 38px;
    align-items: start;
}

.setup-sidebar {
    position: sticky;
    top: 110px;
    background: rgba(18,18,20,0.92);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 10px;
    padding: 26px;
}

.setup-sidebar h2 {
    font-family: var(--font-heading);
    color: var(--primary-yellow);
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 0;
}

.setup-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setup-link-list button {
    min-height: 62px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
    text-align: left;
}

.setup-link-list button.active {
    background: linear-gradient(135deg, var(--primary-yellow), #ffb000);
    color: #050505;
    box-shadow: 0 18px 40px rgba(255,215,0,0.18);
}

.setup-content-area {
    min-width: 0;
    background: rgba(18,18,20,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 42px;
}

.setup-content-panel {
    display: none;
}

.setup-content-panel.active {
    display: block;
}

.setup-rich-content {
    color: #e9e9e9;
    font-size: 1.05rem;
}

.setup-rich-content h1,
.setup-rich-content h2,
.setup-rich-content h3 {
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.setup-rich-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.setup-rich-content p,
.setup-rich-content li {
    color: #ddd;
}

.setup-rich-content ol,
.setup-rich-content ul {
    margin: 20px 0 0 22px;
}

.setup-rich-content li {
    margin-bottom: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    background: rgba(18,18,20,0.9);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 10px;
    padding: 30px;
}

.blog-card span {
    color: var(--primary-yellow);
    font-weight: 900;
}

.blog-card h2 {
    font-family: var(--font-heading);
    margin: 12px 0;
    letter-spacing: 0;
}

.blog-card p {
    color: #d3d3d3;
}

.blog-card a {
    color: var(--primary-yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .catalog-layout,
    .setup-workspace,
    .lead-form-card,
    .catalog-intro {
        grid-template-columns: 1fr;
    }
    .country-list {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .channel-grid,
    .country-index,
    .vod-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .setup-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-main {
        padding-top: 76px;
    }
    .site-topbar {
        padding: 12px 14px;
        gap: 12px;
    }
    .site-logo {
        flex: 1;
        max-width: calc(100vw - 160px);
    }
    .logo-image-wrap,
    .logo-bolt {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        order: 3;
    }
    .topbar-trial {
        order: 2;
        padding: 10px 14px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
    .site-nav {
        order: 4;
        width: 100%;
        display: none;
    }
    .site-nav.open {
        display: block;
    }
    .site-nav ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 14px;
    }
    .site-nav li a {
        display: block;
        padding: 12px;
        border: 1px solid rgba(255, 215, 0, 0.16);
        border-radius: 6px;
        background: rgba(0,0,0,0.42);
    }
    .catalog-hero {
        min-height: 620px;
        padding: 120px 18px 45px;
    }
    .catalog-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-toolbar {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .region-tabs {
        padding: 16px 20px;
    }
    .channel-panel {
        padding: 28px 20px;
    }
    .channel-panel-head {
        flex-direction: column;
    }
    .channel-grid,
    .country-list,
    .country-index,
    .vod-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .lead-form-copy,
    .lead-form,
    .setup-content-area {
        padding: 26px 20px;
    }
    .lightning-lines {
        display: none;
    }
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .phone-input-wrapper .country-select,
    .phone-input-wrapper input[type="tel"],
    .phone-input-wrapper input[name="phone"] {
        width: 100%;
        border: 1px solid var(--glass-border);
        border-radius: 4px;
    }
    .floating-action-stack {
        right: 14px;
        bottom: 14px;
    }
    .floating-action-stack .chat-widget,
    .trial-float {
        min-height: 50px;
        padding: 11px 14px;
        font-size: 0.8rem;
    }
    .chat-panel {
        right: 14px;
        bottom: 136px;
    }
}

@media (max-width: 460px) {
    .site-logo span:last-child {
        max-width: 110px;
    }
    .catalog-hero-stats {
        grid-template-columns: 1fr;
    }
    .catalog-hero-stats div {
        padding: 18px;
    }
    .floating-action-stack .chat-widget span,
    .trial-float span {
        display: none;
    }
    .floating-action-stack .chat-widget,
    .trial-float {
        width: 52px;
        height: 52px;
        justify-content: center;
        border-radius: 50%;
        clip-path: none;
    }
}

/* Admin refinements */
.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    background: var(--bg-light);
    padding: 18px 20px;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-nav a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.94rem;
}

.admin-nav a.active {
    color: #fff;
    text-shadow: 0 0 12px rgba(255,215,0,0.48);
}

.admin-nav .logout-link {
    margin-left: auto;
    color: #ff4d4d;
}

.admin-page {
    padding: 46px;
}

.admin-page h1,
.admin-page h2 {
    color: var(--primary-yellow);
    margin-bottom: 28px;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table-basic {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.admin-table-basic th,
.admin-table-basic td {
    border: 1px solid var(--glass-border);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.admin-table-basic th {
    color: var(--primary-yellow);
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-danger {
    background: #8a1111;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
}

.admin-small-btn {
    background: rgba(255,215,0,0.16);
    color: var(--primary-yellow);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 900;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.admin-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.admin-help {
    color: var(--text-muted);
    margin: -12px 0 24px;
}

@media (max-width: 900px) {
    .admin-page {
        padding: 26px 16px;
    }
    .admin-grid-2,
    .admin-grid-3 {
        grid-template-columns: 1fr;
    }
    .admin-nav .logout-link {
        margin-left: 0;
    }
}
