/* ========================================
   STREAMVAULT IPTV — Premium Hero Section
   ======================================== */

/* === CSS Variables === */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #8a8a9a;
    --text-muted: #5a5a6a;

    --accent-primary: #6c5ce7;
    --accent-secondary: #a855f7;
    --accent-tertiary: #00d4ff;
    --accent-warm: #ff6b6b;
    --accent-gold: #ffd93d;

    --gradient-primary: linear-gradient(135deg, #6c5ce7, #a855f7, #00d4ff);
    --gradient-warm: linear-gradient(135deg, #ff6b6b, #ffd93d);
    --gradient-card: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(168, 85, 247, 0.05));
    --gradient-hero-bg: radial-gradient(ellipse at 50% 0%, rgba(108, 92, 231, 0.15) 0%, transparent 60%);

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BASE RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-links a.active {
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 12px;
}

.lang-switcher::after {
    content: '▼';
    font-size: 0.6rem;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

#language-selector {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 28px 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

#language-selector:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #6c5ce7;
}

#language-selector option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
}

#language-selector option {
    background: #0a0a0f;
    color: #fff;
}

/* Hide Google Translate Banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 220px 32px 60px;
    /* Increased to accommodate large desktop logo */
    background: url('hero-bg.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 15, 0.75) 0%, rgba(10, 10, 15, 0.85) 50%, rgba(10, 10, 15, 0.95) 100%),
        linear-gradient(to right, rgba(10, 10, 15, 0.8) 0%, transparent 50%, rgba(10, 10, 15, 0.8) 100%);
    z-index: 0;
}

/* Animated BG Orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.4), transparent 70%);
    top: -10%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 70%);
    top: 30%;
    right: -5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent 70%);
    bottom: -5%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 30px) scale(1.02);
    }
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating Channel Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--glass-shadow);
    animation: floatCard 8s ease-in-out infinite;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.float-card:hover {
    opacity: 1;
}

.channel-thumb {
    font-size: 1.4rem;
    line-height: 1;
}

.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 6%;
    animation-delay: -1.5s;
}

.card-3 {
    top: 55%;
    left: 3%;
    animation-delay: -3s;
}

.card-4 {
    top: 70%;
    right: 8%;
    animation-delay: -4.5s;
}

.card-5 {
    top: 40%;
    right: 3%;
    animation-delay: -6s;
}

.card-6 {
    bottom: 12%;
    left: 8%;
    animation-delay: -2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    animation: heroFadeUp 1s ease-out;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.08);
    }
}

/* Title */
.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 25px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.6);
}

.btn-primary .btn-icon {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 4px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(8px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ========================================
   FIFA WORLD CUP EXCLUSIVE SECTION
   ======================================== */
.fifa-section {
    position: relative;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #1e1e2f 0%, #0a0a0f 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fifa-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.1);
}

.fifa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

.fifa-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.fifa-year {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.fifa-sub {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fifa-files {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.fifa-deal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 16px 32px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.deal-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1px;
}

.deal-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.btn-fifa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: #000;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-fifa:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.fifa-deco {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.orb-left {
    background: #6c5ce7;
    top: -50px;
    left: -100px;
}

.orb-right {
    background: #ff4d4d;
    bottom: -50px;
    right: -100px;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .fifa-container {
        padding: 40px 20px;
    }

    .fifa-files br {
        display: none;
    }

    .deal-text {
        font-size: 1.1rem;
    }
}

/* ========================================
   OTT PLATFORMS CAROUSEL
   ======================================== */
.ott-carousel {
    position: relative;
    background: var(--bg-secondary);
    padding: 48px 0 40px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.ott-header {
    text-align: center;
    margin-bottom: 32px;
}

.ott-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Edge fade effect */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollCarousel 30s linear infinite;
}

.carousel-track::after {
    content: '';
    width: 24px;
    flex-shrink: 0;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex-shrink: 0;
}

.ott-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 70px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.ott-logo-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ott-name {
    font-family: var(--font-primary);
    white-space: nowrap;
    user-select: none;
}

/* ========================================
   TRUSTED BY SECTION
   ======================================== */
.trusted-section {
    background: var(--bg-primary);
    padding: 64px 32px;
    text-align: center;
}

.trusted-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo {
    font-family: var(--font-primary);
    font-weight: 900;
    user-select: none;
    letter-spacing: 1px;
}

/* Netflix */
.netflix-logo {
    font-size: 2rem;
    color: #E50914;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

.trusted-logo-item:hover .netflix-logo {
    text-shadow: 0 0 40px rgba(229, 9, 20, 0.6);
}

/* Hulu */
.hulu-logo {
    font-size: 2rem;
    color: #1CE783;
    text-transform: lowercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(28, 231, 131, 0.3);
}

.trusted-logo-item:hover .hulu-logo {
    text-shadow: 0 0 40px rgba(28, 231, 131, 0.6);
}

/* NBA */
.nba-logo {
    font-size: 2rem;
    color: #1D6EB5;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(29, 110, 181, 0.3);
}

.trusted-logo-item:hover .nba-logo {
    text-shadow: 0 0 40px rgba(29, 110, 181, 0.6);
}

/* Prime Video */
.prime-logo {
    font-size: 1.6rem;
    color: #00A8E1;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 0 30px rgba(0, 168, 225, 0.3);
}

.trusted-logo-item:hover .prime-logo {
    text-shadow: 0 0 40px rgba(0, 168, 225, 0.6);
}

/* Disney+ */
.disney-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0063e5, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 99, 229, 0.3));
}

.trusted-logo-item:hover .disney-logo {
    filter: drop-shadow(0 0 30px rgba(0, 99, 229, 0.6));
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--bg-secondary);
    padding: 60px 32px;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hiw-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff, #a855f7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiw-subheading {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 64px;
    font-weight: 400;
}

.hiw-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.hiw-card {
    position: relative;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-xl);
    padding: 44px 32px 40px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    transition: var(--transition-smooth);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hiw-card:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 212, 255, 0.08));
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(108, 92, 231, 0.2),
        0 0 40px rgba(108, 92, 231, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hiw-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.hiw-card:hover .hiw-card-glow {
    opacity: 1;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.hiw-step-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
    position: absolute;
    top: 10px;
    right: 18px;
    line-height: 1;
}

.hiw-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
    transition: var(--transition-smooth);
}

.hiw-card:hover .hiw-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.4);
}

.hiw-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hiw-card-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Connector between cards */
.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    flex-shrink: 0;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(108, 92, 231, 0.5), rgba(0, 212, 255, 0.5));
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: connectorShimmer 2.5s ease-in-out infinite;
}

@keyframes connectorShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.connector-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.6), 0 0 30px rgba(108, 92, 231, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

/* ========================================
   MOVIES & SERIES CAROUSEL
   ======================================== */
.movies-section {
    background: var(--bg-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.movies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.movies-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    padding: 0 32px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #a855f7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.movies-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.movies-carousel-wrapper::before,
.movies-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.movies-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.movies-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.movies-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollMovies 35s linear infinite;
    padding: 20px 0;
}

.movies-track::after {
    content: '';
    width: 24px;
    flex-shrink: 0;
}

@keyframes scrollMovies {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.movie-card {
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.movie-card:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow:
        0 20px 60px rgba(108, 92, 231, 0.3),
        0 0 40px rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.3);
    z-index: 3;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.1);
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.movie-card:hover .movie-overlay {
    transform: translateY(0);
    opacity: 1;
}

.movie-tag {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(108, 92, 231, 0.3);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: var(--radius-full);
    color: #d4c5ff;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.movie-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

/* ========================================
   CANCEL ANYTIME SECTION
   ======================================== */
.cancel-section {
    background: var(--bg-secondary);
    padding: 60px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.cancel-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cancel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cancel-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.anytime-wrap {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
}

.anytime-text {
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.anytime-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 130%;
    z-index: 0;
}

.pen-draw-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: penDraw 2.5s ease-in-out forwards infinite;
}

@keyframes penDraw {
    0% {
        stroke-dashoffset: 600;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    60% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    95% {
        opacity: 0;
    }

    100% {
        stroke-dashoffset: 600;
        opacity: 0;
    }
}

.cancel-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 48px;
}

/* Mini OTT Carousel */
.mini-ott-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.mini-ott-wrapper::before,
.mini-ott-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.mini-ott-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.mini-ott-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.mini-ott-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scrollMiniOtt 18s linear infinite;
}

.mini-ott-track::after {
    content: '';
    width: 32px;
    flex-shrink: 0;
}

@keyframes scrollMiniOtt {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mini-ott-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    opacity: 0.5;
    transition: opacity 0.3s;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.mini-ott-item:hover {
    opacity: 1;
}

/* ========================================
   SAVINGS CALCULATOR
   ======================================== */
.savings-section {
    background: var(--bg-primary);
    padding: 0px 32px 60px;
    position: relative;
    overflow: hidden;
}

.savings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.savings-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.savings-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff, #a855f7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
}

/* Toggle Switch */
.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 4px;
    bottom: 3px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.4);
}

input:checked+.toggle-slider::before {
    transform: translateX(25px);
}

input:checked+.toggle-slider {
    border-color: rgba(108, 92, 231, 0.4);
}

/* Savings Table */
.savings-table {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
}

.savings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.savings-row:last-child {
    border-bottom: none;
}

.savings-row:not(.savings-header):not(.total-others-row):not(.viewlix-row):hover {
    background: rgba(255, 255, 255, 0.02);
}

.savings-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 24px;
}

.savings-header .savings-col {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col-service {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.col-price {
    text-align: right;
    min-width: 120px;
}

.platform-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.platform-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.price-monthly,
.price-yearly {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-monthly small,
.price-yearly small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Show/hide based on toggle */
.price-yearly {
    display: none;
}

.savings-section.yearly .price-monthly {
    display: none;
}

.savings-section.yearly .price-yearly {
    display: inline;
}

/* Total Row */
.total-others-row {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.total-label {
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    font-size: 0.95rem;
}

.total-price {
    color: #ff6b6b !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* ViewlixTv Row */
.viewlix-row {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 212, 255, 0.05));
    border: none;
    padding: 20px 24px;
    position: relative;
}

.viewlix-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.viewlix-badge {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.viewlix-name {
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    font-size: 1.05rem !important;
}

.viewlix-price {
    color: #00e676 !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
}

/* Savings Summary */
.savings-summary {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(108, 92, 231, 0.06));
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    animation: savingsGlow 3s ease-in-out infinite;
}

@keyframes savingsGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.05);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 230, 118, 0.12);
    }
}

.summary-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.save-big {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    color: #00e676;
    letter-spacing: -1px;
}

.save-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.summary-percent {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.percent-highlight {
    font-weight: 800;
    color: #00e676;
}

/* ========================================
   PRICING TABLE
   ======================================== */
.pricing-section {
    background: var(--bg-secondary);
    padding: 40px 32px 60px;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pricingOrb1 8s ease-in-out infinite;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: pricingOrb2 10s ease-in-out infinite;
}

@keyframes pricingOrb1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 30px);
    }
}

@keyframes pricingOrb2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -40px);
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 20%, #c084fc 50%, #22d3ee 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ---- Price Card Base ---- */
.price-card {
    background: linear-gradient(165deg, rgba(30, 30, 45, 0.95), rgba(15, 15, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a855f7);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(108, 92, 231, 0.1);
}

.price-card:hover::before {
    opacity: 1;
}

/* ---- Popular Card (Premium) ---- */
.price-card.popular {
    border-color: rgba(168, 85, 247, 0.5);
    background: linear-gradient(165deg, rgba(55, 30, 80, 0.6), rgba(20, 15, 40, 0.95));
    transform: scale(1.06);
    box-shadow:
        0 12px 50px rgba(108, 92, 231, 0.2),
        0 0 60px rgba(168, 85, 247, 0.08),
        inset 0 1px 0 rgba(168, 85, 247, 0.2);
    animation: popularGlow 4s ease-in-out infinite;
}

.price-card.popular::before {
    height: 0;
}

@keyframes popularGlow {

    0%,
    100% {
        box-shadow: 0 12px 50px rgba(108, 92, 231, 0.2), 0 0 60px rgba(168, 85, 247, 0.08);
    }

    50% {
        box-shadow: 0 16px 60px rgba(108, 92, 231, 0.3), 0 0 80px rgba(168, 85, 247, 0.15);
    }
}

.price-card.popular:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow:
        0 24px 70px rgba(108, 92, 231, 0.35),
        0 0 80px rgba(168, 85, 247, 0.15);
}

.popular-badge {
    background: linear-gradient(135deg, #a855f7, #6c5ce7, #7c3aed);
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---- Card Top ---- */
.card-top {
    padding: 32px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.plan-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-duration {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.plan-bonus {
    font-size: 0.82rem;
    color: #34d399;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.plan-save {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.1));
    color: #34d399;
    border-radius: var(--radius-full);
    border: 1px solid rgba(52, 211, 153, 0.3);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.plan-price {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.price-card.popular .plan-price {
    background: linear-gradient(135deg, #e9d5ff, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.3));
}

.plan-per {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* ---- Feature List ---- */
.plan-features {
    list-style: none;
    padding: 22px 24px;
    margin: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-weight: 400;
}

.plan-features .check {
    color: #fbbf24;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0px;
    text-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
}

.price-card.popular .plan-features li {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- CTA Button ---- */
.plan-btn {
    display: block;
    margin: 4px 20px 24px;
    padding: 15px 20px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.4), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.price-card.popular .plan-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed, #6c5ce7);
    border: none;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
    font-size: 1rem;
    padding: 16px 20px;
}

.price-card.popular .plan-btn:hover {
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.6);
    transform: translateY(-3px);
}

/* ---- WhatsApp CTA ---- */
.whatsapp-cta-wrap {
    text-align: center;
    margin-top: 48px;
    margin-bottom: -10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 40px 18px 32px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 60px;
    text-decoration: none;
    color: white;
    font-family: var(--font-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.3),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: waPulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 14px 45px rgba(37, 211, 102, 0.45),
        0 0 25px rgba(37, 211, 102, 0.2);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.wa-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wa-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.wa-label {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wa-number {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ========================================
   INSTALLATION GUIDE
   ======================================== */
.install-section {
    background: var(--bg-secondary);
    padding: 60px 32px;
    position: relative;
    overflow: hidden;
}

.install-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.install-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.install-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

/* Tabs */
.install-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.install-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-tab svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.install-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

.install-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.install-tab.active svg {
    opacity: 1;
}

/* Content */
.install-content-wrap {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    min-height: 300px;
    position: relative;
}

.install-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.install-content.active {
    display: block;
}

.content-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.content-steps h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-num {
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-primary);
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.content-steps p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-code {
    background: rgba(108, 92, 231, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    color: #a855f7;
    font-weight: 700;
    font-family: monospace;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .install-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 12px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;

        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .install-tabs::-webkit-scrollbar {
        display: none;
    }

    .install-content-wrap {
        padding: 24px;
    }

    .content-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .float-card {
        display: none;
    }
}

@media (max-width: 1024px) {
    .install-container {
        padding: 0 20px;
    }
}

/* ========================================
   COMPATIBLE DEVICES SECTION
   ======================================== */
.devices-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.devices-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.devices-container {
    padding: 0 32px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.devices-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, white, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.devices-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Marquee Wrapper */
.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Device Card */
.device-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 160px;
    transition: all 0.3s ease;
}

.device-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.device-icon,
.device-logo {
    width: 60px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.device-card:hover .device-logo,
.device-card:hover .device-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.device-card span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.device-card:hover span {
    color: white;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Adjust based on gap */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-content {
        gap: 20px;
        animation-duration: 20s;
    }

    .device-card {
        padding: 20px 30px;
        min-width: 140px;
    }

    .device-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 14px 32px;
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        background: var(--bg-card);
        padding: 14px 18px;
        border-radius: var(--radius-md);
        border: 1px solid var(--glass-border);
        min-width: 120px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .scroll-indicator {
        display: none;
    }

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

    .price-card.popular {
        transform: scale(1);
    }

    .price-card.popular:hover {
        transform: translateY(-6px);
    }

    .trusted-logos {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hiw-steps {
        flex-direction: column;
        gap: 16px;
    }

    .hiw-connector {
        width: 2px;
        height: 40px;
        flex-direction: column;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(108, 92, 231, 0.4), rgba(0, 212, 255, 0.4));
    }

    .hiw-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        min-width: 100px;
        padding: 10px 12px;
    }

    .stat-number {
        font-size: 1.2rem;
    }
}

/* Device Logo Styles */
.device-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Ensure visibility on dark background if needed, but allow colors */
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
}

.device-card:hover .device-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* ===== ENTERTAINMENT / POSTER CAROUSEL ===== */
.entertainment-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 25, 1) 50%, var(--bg-primary) 100%);
}

.entertainment-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.entertainment-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.entertainment-sub {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Poster Marquee */
.poster-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.poster-marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
}

.poster-scroll-left {
    animation: posterScrollLeft 40s linear infinite;
}

.poster-scroll-right {
    animation: posterScrollRight 40s linear infinite;
}

.poster-marquee-content:hover {
    animation-play-state: paused;
}

/* Poster Card */
.poster-card {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.06);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-card:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 16px 48px rgba(108, 92, 231, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-primary);
    z-index: 10;
}

.poster-card:hover img {
    transform: scale(1.1);
}

/* Poster Overlay */
.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 14px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.poster-card:hover .poster-overlay {
    opacity: 1;
    transform: translateY(0);
}

.poster-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Poster Animations */
@keyframes posterScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes posterScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Poster Cards */
@media (max-width: 768px) {
    .entertainment-section {
        padding: 60px 0 70px;
    }

    .entertainment-sub {
        margin-bottom: 36px;
    }

    .poster-card {
        width: 150px;
        height: 225px;
        border-radius: 12px;
    }

    .poster-marquee-content {
        gap: 14px;
    }

    .poster-scroll-left {
        animation-duration: 30s;
    }

    .poster-scroll-right {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .poster-card {
        width: 130px;
        height: 195px;
        border-radius: 10px;
    }

    .poster-marquee-content {
        gap: 10px;
    }

    .poster-overlay span {
        font-size: 0.8rem;
    }
}

/* ===== SPORTS CHANNELS CAROUSEL ===== */
.sports-section {
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.sports-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.sports-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sports-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.sports-marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: sportsScroll 25s linear infinite;
}

.sports-marquee-content:hover {
    animation-play-state: paused;
}

.sports-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.sports-badge:hover {
    color: #fff;
    border-color: rgba(108, 92, 231, 0.6);
    background: rgba(108, 92, 231, 0.15);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
    transform: scale(1.08);
}

@keyframes sportsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== STATS SHOWCASE ===== */
.stats-showcase-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(108, 92, 231, 0.05) 50%, var(--bg-primary) 100%);
}

.stats-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stats-showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stats-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-showcase-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.15);
}

.stats-showcase-card:hover::before {
    opacity: 1;
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.stats-showcase-card .stats-number {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 60%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Stats Responsive */
@media (max-width: 768px) {
    .stats-showcase-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats-showcase-card {
        padding: 28px 16px;
    }

    .stats-icon {
        font-size: 2rem;
    }

    .sports-badge {
        padding: 8px 18px;
        font-size: 0.78rem;
    }

    .sports-marquee-content {
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .stats-showcase-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-showcase-card {
        padding: 24px 12px;
        border-radius: 14px;
    }

    .stats-icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .stats-label {
        font-size: 0.82rem;
    }

    .sports-heading {
        font-size: 1rem;
    }
}

/* ===== CUSTOMER REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(108, 92, 231, 0.03) 50%, var(--bg-primary) 100%);
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.reviews-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.reviews-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Trustpilot Badge */
.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 32px;
    margin-bottom: 40px;
}

.tp-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tp-logo .tp-star {
    font-size: 1.6rem;
    color: #00b67a;
}

.tp-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.tp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-stars {
    display: flex;
    gap: 2px;
}

.tp-star-filled {
    font-size: 1.2rem;
    color: #00b67a;
}

.tp-star-half {
    font-size: 1.2rem;
    color: #00b67a;
    opacity: 0.5;
}

.tp-score {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.tp-count {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* Reviews Carousel */
.reviews-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsScroll 45s linear infinite;
}

.reviews-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.review-card {
    flex-shrink: 0;
    width: 360px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    transition: all 0.4s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.author-location {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

/* WhatsApp Card Styles */
.whatsapp-card {
    background: rgba(18, 28, 20, 0.6) !important;
    border-color: rgba(37, 211, 102, 0.15) !important;
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4) !important;
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.1) !important;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

.wa-icon {
    font-size: 1.2rem;
}

.wa-title {
    color: #25d366;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wa-badge {
    margin-left: auto;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-chat-bubble {
    background: rgba(37, 211, 102, 0.08);
    border-radius: 0 14px 14px 14px;
    padding: 14px 18px;
    margin-bottom: 18px;
    position: relative;
}

.wa-chat-bubble p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.wa-time {
    display: block;
    text-align: right;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    margin-top: 8px;
}

.wa-avatar {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 80px 20px 100px;
    position: relative;
    background: var(--bg-primary);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.why-choose-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 24px 60px rgba(108, 92, 231, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.why-card-featured {
    border-color: rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.06);
    transform: scale(1.03);
}

.why-card-featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.why-featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6c5ce7, #a78bfa);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-icon-wrapper {
    margin-bottom: 20px;
}

.why-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.why-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.why-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.why-tag {
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reviews & Why Choose Responsive */
@media (max-width: 768px) {
    .trustpilot-badge {
        flex-direction: column;
        gap: 12px;
        padding: 14px 20px;
    }

    .tp-rating {
        flex-direction: column;
        gap: 4px;
    }

    .review-card {
        width: 300px;
        padding: 22px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card-featured {
        transform: scale(1);
        order: -1;
    }

    .why-card-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 280px;
        padding: 18px;
    }

    .review-text {
        font-size: 0.85rem;
        min-height: auto;
    }

    .reviews-heading,
    .why-choose-heading {
        font-size: 1.6rem;
    }

    .why-card {
        padding: 28px 20px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(108, 92, 231, 0.03) 50%, var(--bg-primary) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.faq-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-item.active {
    border-color: rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #a78bfa;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #a78bfa;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(108, 92, 231, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: #a78bfa;
}

/* ===== DEVICE SETUP GUIDE ===== */
.setup-guide-section {
    padding: 80px 20px 100px;
    position: relative;
    background: var(--bg-primary);
}

.setup-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.setup-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.setup-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.setup-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.setup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.setup-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.12);
}

.setup-card:hover::before {
    opacity: 1;
}

/* Popular Card */
.setup-card-popular {
    border-color: rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.06);
}

.setup-popular-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, #6c5ce7, #a78bfa);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.setup-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.setup-device-icon {
    font-size: 2rem;
}

.setup-device-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.setup-player {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.player-label {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.player-name {
    background: linear-gradient(135deg, #6c5ce7, #a78bfa);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.setup-alt-player {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.setup-alt-player strong {
    color: rgba(255, 255, 255, 0.6);
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.4;
}

.step strong {
    color: #a78bfa;
}

.step-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.15);
    color: #a78bfa;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.setup-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.setup-download-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.15);
    color: #fff;
}

/* FAQ & Setup Responsive */
@media (max-width: 768px) {
    .setup-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }
}

@media (max-width: 480px) {

    .faq-heading,
    .setup-heading {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 14px 14px;
    }

    .setup-card {
        padding: 22px 18px;
    }

    .setup-device-name {
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0a15 100%);
    padding: 60px 20px 0;
    position: relative;
    border-top: 1px solid rgba(108, 92, 231, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6c5ce7, #a78bfa, #6c5ce7, transparent);
}

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

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo span {
    background: linear-gradient(135deg, #6c5ce7, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-3px);
}

.footer-col-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #a78bfa);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #a78bfa;
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-value {
    color: var(--text-secondary);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

a.contact-value:hover {
    color: #a78bfa;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #a78bfa;
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

/* ===== SUBPAGE STYLES ===== */
.subpage-hero {
    padding: 120px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.08) 0%, var(--bg-primary) 100%);
}

.subpage-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a78bfa, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.subpage-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.subpage-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.subpage-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
}

.subpage-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a78bfa;
    margin: 28px 0 12px;
}

.subpage-content p,
.subpage-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.subpage-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.subpage-content a {
    color: #a78bfa;
    text-decoration: none;
}

.subpage-content a:hover {
    text-decoration: underline;
}

.subpage-content strong {
    color: #fff;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a78bfa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-4px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== PAYPAL BUTTONS ===== */
.paypal-btn-wrap {
    margin-top: 16px;
    border-radius: 14px;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
    .hero {
        padding-top: 140px !important;
        /* Optimized gap */
        align-items: flex-start !important;
        min-height: auto;
        height: auto;
    }

    .hero-content {
        margin-top: 10px !important;
        /* Minimal margin */
    }

    .logo-img {
        height: 85px !important;
        transition: height 0.3s ease;
    }

    .navbar {
        padding: 5px 0 !important;
        background: #0a0a0f !important;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Force 1 Column for Pricing on Mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}