/* ============================================
   BestLiveIPTV - Premium Modern CSS
   Ultra Professional Design System
   ============================================ */

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Primary Colors - Nebula Purple */
    --primary-50: #F4EEFF;
    --primary-100: #E6D9FF;
    --primary-200: #CDB5FF;
    --primary-300: #B090FF;
    --primary-400: #966BFF;
    --primary-500: #7A4DFF;
    --primary-600: #5E37E6;
    --primary-700: #4425B8;
    --primary-800: #2E1888;
    --primary-900: #1D0F5B;

    /* Secondary - Magenta Accent */
    --secondary-400: #FF7AD9;
    --secondary-500: #F055C7;
    --secondary-600: #C53AA7;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --black: #05060D;

    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Gradients */
    --gradient-primary: linear-gradient(120deg, #7A4DFF 0%, #A86BFF 35%, #F055C7 70%, #FFD1A1 100%);
    --gradient-dark: linear-gradient(180deg, #0B0A17 0%, #05060D 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    --gradient-hero: radial-gradient(120% 120% at 18% 20%, rgba(122, 77, 255, 0.24) 0%, transparent 55%),
        radial-gradient(120% 120% at 80% 12%, rgba(240, 85, 199, 0.2) 0%, transparent 50%),
        radial-gradient(80% 80% at 75% 78%, rgba(255, 209, 161, 0.12) 0%, transparent 55%),
        linear-gradient(140deg, #05060D 0%, #120F2E 45%, #1A1540 60%, #070A14 100%);

    /* Typography */
    --font-primary: 'Sora', 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', var(--font-primary);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(122, 77, 255, 0.35);
    --shadow-glow-lg: 0 0 70px rgba(240, 85, 199, 0.4);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --container-max: 1280px;
    --section-spacing: 4rem;
    --header-height: 72px;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: #F2F4FF;
    background: var(--gradient-hero);
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-spacing {
    padding: var(--section-spacing) 0;
}

/* Global Background Utilities */
.lavender-bg {
    background: #F4EEFF !important;
}

/* Shared Hero Styles (Pricing Style) */
.page-hero-content--centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.page-hero-content--centered .page-hero-header-wrap {
    justify-content: center;
    text-align: left; /* Keep text left-aligned relative to the accent line */
}

.page-hero-header-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.hero-left-accent {
    display: flex;
    align-items: stretch;
    padding: 10px 0;
}

.vertical-accent-line {
    width: 5px;
    min-height: 80px;
    border-radius: 999px;
    background: linear-gradient(180deg, #C8A2FF 0%, #7A3CFF 100%);
    box-shadow: 0 0 15px rgba(200, 162, 255, 0.4);
}

.page-hero-visual-centered {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.page-hero-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .page-hero-header-wrap {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .hero-left-accent {
        justify-content: center;
    }
    .vertical-accent-line {
        width: 80px;
        min-height: 4px;
        height: 4px;
        background: linear-gradient(90deg, #C8A2FF 0%, #7A3CFF 100%);
    }
}

/* ============================================
   Promo Bar
   ============================================ */
:root {
    --promo-height: 42px;
}

.promo-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: auto;
    height: auto;
    background: linear-gradient(135deg, rgba(18, 18, 34, 0.95) 0%, rgba(30, 22, 56, 0.95) 100%);
    z-index: 1100;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    box-shadow: 0 20px 50px rgba(12, 10, 28, 0.5);
}

.promo-bar.is-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.promo-bar__inner {
    width: auto;
    margin: 0;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.promo-bar__compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(122, 77, 255, 0.2);
    border: 1px solid rgba(122, 77, 255, 0.4);
    color: #fff;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promo-bar__percent {
    color: #ffffff;
}

.promo-bar__code {
    padding: 0.15rem 0.4rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

.promo-bar__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, opacity 0.2s ease;
}

.promo-bar--floating:hover .promo-bar__content {
    max-width: 520px;
    opacity: 1;
}

.promo-bar__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, .2);
    border-radius: 4px;
    color: #fff;
}

.promo-bar__text {
    font-size: 0.875rem;
    color: #fff;
    margin: 0;
}

.promo-bar__text strong {
    font-weight: 700;
}

.promo-bar__text code {
    font-family: 'SF Mono', Monaco, monospace;
    background: rgba(255, 255, 255, .15);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.8125rem;
}

.promo-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, .18);
    border-radius: 6px;
    transition: background .2s ease;
}

.promo-bar__link:hover {
    background: rgba(255, 255, 255, .25);
}

.promo-bar__close {
    position: static;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.promo-bar__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* ============================================
   Site Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    background: rgba(18, 18, 34, 0.92);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(12, 12, 28, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(10, 8, 24, 0.45);
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.brand__icon svg {
    width: 100%;
    height: 100%;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    transition: color .3s ease;
}

.brand__name em {
    font-style: normal;
    color: var(--secondary-400);
}

.site-header.is-scrolled .brand__name {
    color: var(--gray-900);
}

.brand__tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .6);
    transition: color .3s ease;
}

.site-header.is-scrolled .brand__tagline {
    color: var(--gray-500);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    border-radius: 999px;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 8px 18px rgba(12, 12, 28, 0.35);
}

.main-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .main-nav a {
    color: rgba(226, 232, 255, 0.85);
}

.site-header.is-scrolled .main-nav a:hover {
    color: #fff;
    background: rgba(122, 77, 255, 0.2);
}

.site-header.is-scrolled .main-nav a.is-active {
    color: #fff;
    background: rgba(122, 77, 255, 0.28);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle::before {
    top: 14px;
}

.nav-toggle span {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle::after {
    bottom: 14px;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle::before,
.site-header.is-scrolled .nav-toggle::after {
    background: var(--gray-700);
}

.nav-toggle.is-active::before {
    transform: translateX(-50%) rotate(45deg);
    top: 21px;
}

.nav-toggle.is-active span {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
}

.nav-toggle.is-active::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 21px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #141428;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    overflow-y: auto;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav__inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__menu li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav__menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color .2s ease;
}

.mobile-nav__menu a:hover,
.mobile-nav__menu a.is-active {
    color: var(--primary-600);
}

.mobile-nav__footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.nav-open {
    overflow: hidden;
}

/* Page Hero Section - For inner pages */
.page-hero {
    position: relative;
    padding: 150px 0 70px;
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(122, 77, 255, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(240, 85, 199, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
}

.page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.page-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(122, 77, 255, 0.3);
    top: -150px;
    right: -100px;
}

.page-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(240, 85, 199, 0.25);
    bottom: -100px;
    left: -100px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.page-hero-text {
    color: var(--white);
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.page-hero-badge i {
    color: var(--secondary-400);
    font-size: 1.125rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.page-hero-title .text-gradient {
    background: linear-gradient(135deg, var(--secondary-400), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-feature i {
    color: var(--secondary-400);
    font-size: 1rem;
}

.page-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-image {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.page-hero-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-2xl);
    padding: 0.75rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(122, 77, 255, 0.15);
    overflow: hidden;
}

.page-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 70%);
    animation: shineEffect 6s ease-in-out infinite;
}

@keyframes shineEffect {

    0%,
    100% {
        transform: translateX(-100%) rotate(0deg);
    }

    50% {
        transform: translateX(100%) rotate(0deg);
    }
}

.page-hero-img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
    transition: transform 0.5s ease;
}

.page-hero-image:hover .page-hero-img {
    transform: scale(1.03);
}

.page-hero-floating {
    position: absolute;
    background: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.page-hero-floating-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.page-hero-floating-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

.page-hero-floating-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.page-hero-floating-icon.blue {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
}

.page-hero-floating-icon.cyan {
    background: linear-gradient(135deg, var(--secondary-500), var(--secondary-600));
    color: var(--white);
}

.page-hero-floating-icon.green {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
}

.page-hero-floating-text {
    display: flex;
    flex-direction: column;
}

.page-hero-floating-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.page-hero-floating-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@keyframes float {

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

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

/* ============================================
   Logo - Ultra Modern Design
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotateY(10deg);
}

.logo-icon {
    width: 52px;
    height: 52px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(122, 77, 255, 0.25));
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon svg {
    filter: drop-shadow(0 6px 20px rgba(122, 77, 255, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    transition: all 0.3s ease;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-part {
    color: var(--gray-900);
    transition: color 0.3s ease;
}

.header .logo-part {
    color: rgba(255, 255, 255, 0.95);
}

.header.scrolled .logo-part {
    color: var(--gray-900);
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

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

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

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.header .logo-tagline {
    color: rgba(255, 255, 255, 0.65);
}

.header.scrolled .logo-tagline {
    color: var(--gray-500);
}

/* ============================================
   Navigation Links - Ultra Modern with Icons
   ============================================ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.nav-link span {
    position: relative;
}

/* Sliding background effect */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.08;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2rem);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
    background: linear-gradient(135deg,
            rgba(122, 77, 255, 0.08),
            rgba(240, 85, 199, 0.08));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 77, 255, 0.12);
}

.nav-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

.nav-link.active {
    color: var(--primary-600);
    font-weight: 600;
}

/* Header default state (transparent) */
.header .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* Header scrolled state */
.header.scrolled .nav-link {
    color: var(--gray-700);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-600);
    background: linear-gradient(135deg,
            rgba(122, 77, 255, 0.08),
            rgba(240, 85, 199, 0.08));
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 70%;
}

/* ============================================
   CTA Buttons - Ultra Modern Design
   ============================================ */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: rgba(122, 77, 255, 0.08);
    color: var(--primary-600);
    border: 1.5px solid rgba(122, 77, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-ghost i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(122, 77, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-ghost:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 77, 255, 0.2);
    border-color: var(--primary-400);
}

.btn-ghost:hover i {
    transform: scale(1.1);
}

/* Header transparent state */
.header .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.header .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Gradient Button */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(122, 77, 255, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn-content i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover .btn-shine {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(122, 77, 255, 0.4),
        0 0 40px rgba(240, 85, 199, 0.2);
}

.btn-gradient:hover .btn-content i {
    transform: translateX(3px) scale(1.1);
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(122, 77, 255, 0.3);
}

/* ============================================
   Mobile Toggle - Ultra Modern
   ============================================ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 11;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.header.scrolled .mobile-toggle {
    background: rgba(122, 77, 255, 0.08);
    border-color: rgba(122, 77, 255, 0.2);
}

.header.scrolled .mobile-toggle:hover {
    background: rgba(122, 77, 255, 0.12);
    border-color: var(--primary-400);
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.header.scrolled .toggle-line {
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
}

.mobile-toggle:hover .toggle-line {
    background: linear-gradient(90deg, var(--primary-400), var(--secondary-500));
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-toggle.active {
    background: linear-gradient(135deg, rgba(122, 77, 255, 0.15), rgba(240, 85, 199, 0.15));
    border-color: var(--primary-400);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 124px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-top: 1px solid rgba(122, 77, 255, 0.1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(122, 77, 255, 0.08);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 77, 255, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a i {
    font-size: 1.25rem;
    color: var(--primary-500);
    transition: var(--transition-base);
}

.mobile-nav-links a:hover {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary-700);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(122, 77, 255, 0.15);
    border-color: var(--primary-200);
}

.mobile-nav-links a:hover i {
    color: var(--primary-600);
    transform: scale(1.1);
}

.mobile-nav-links a.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(122, 77, 255, 0.3);
}

.mobile-nav-links a.active i {
    color: var(--white);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-cta .btn {
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

/* ============================================
   Buttons - Professional BEM Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.btn i {
    font-size: 1.125rem;
}

/* Primary */
.btn--primary {
    background: linear-gradient(135deg, #7A4DFF 0%, #F055C7 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(122, 77, 255, .3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
    box-shadow: 0 8px 25px rgba(122, 77, 255, .4);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Outline */
.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.site-header.is-scrolled .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-scrolled .btn--outline:hover {
    background: rgba(122, 77, 255, 0.2);
}

/* Sizes */
.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

/* Legacy button classes for compatibility */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(122, 77, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 77, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-outline:hover {
    background: var(--primary-500);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-600);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-600);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(122, 77, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-500);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-500);
    bottom: -200px;
    left: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
    display: grid;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--secondary-400);
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature i {
    color: var(--secondary-400);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-trust {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge i {
    color: var(--success);
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device {
    position: relative;
}

.device-frame {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-screen {
    background: linear-gradient(180deg, #0d1b2a 0%, #1b263b 100%);
    border-radius: 12px;
    overflow: hidden;
    width: 400px;
    height: 280px;
}

.screen-content {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    height: 100%;
}

.channel-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: channelPulse 3s ease-in-out infinite;
    transition: var(--transition-base);
}

.channel-card:hover {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.channel-card:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes channelPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.device-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-500);
    font-size: 1.125rem;
}

.floating-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

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

@keyframes bounce {

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

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

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 2.5rem 0 4rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 77, 255, 0.2), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    padding: 0;
}

.stat-card {
    background: rgba(18, 18, 34, 0.92);
    border-radius: calc(var(--radius-2xl) + 4px);
    padding: 2.25rem 2rem;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    box-shadow: 0 12px 45px rgba(122, 77, 255, 0.08), 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(122, 77, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(122, 77, 255, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(122, 77, 255, 0.15);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(122, 77, 255, 0.3);
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(8px);
    z-index: -1;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #F4F6FF;
    line-height: 1.2;
    background: linear-gradient(135deg, #F4F6FF 0%, #C7B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(226, 232, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: left;
    max-width: 820px;
    margin: 0 0 3rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 4px;
    height: 64px;
    border-radius: 999px;
    background: var(--gradient-primary);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.25rem;
}

.feature-card {
    background: var(--white);
    border-radius: calc(var(--radius-xl) + 6px);
    padding: 2.75rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    filter: blur(20px);
    opacity: 0.4;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tags span {
    padding: 0.25rem 0.75rem;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ============================================
   Devices Section
   ============================================ */
.devices-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.devices-showcase {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.device-item:hover {
    background: var(--white);
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.device-item:hover .device-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.device-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--primary-500);
    font-size: 1.75rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.device-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
}

.tab-btn:hover {
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.tab-btn.popular {
    position: relative;
}

.tab-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.25rem 0.5rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.pricing-card.popular {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.discount-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--error);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.plan-devices {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.125rem;
    color: var(--gray-400);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.25rem;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-50);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition-base);
}

.step-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-xl);
    margin: 1rem auto 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-500);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: var(--gray-200);
}

.connector-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    color: var(--primary-500);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 1.125rem;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.25rem;
}

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

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-200);
}

.faq-item.active {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-600);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-500);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.faq-footer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 1;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: #ffffff;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
    color: #ffffff;
}

.footer-desc,
.footer-links a,
.footer-contact li,
.footer-contact a,
.footer-bottom,
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-top {
    padding: 3.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
}

.footer-logo .logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary-400);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.footer-contact li i {
    width: 20px;
    font-size: 1.125rem;
    color: var(--primary-400);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Payment Section */
.footer-payment {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icon {
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: var(--transition-base);
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

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

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .devices-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        display: none;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features,
    .hero-cta,
    .trust-badges {
        justify-content: center;
    }

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

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

    .pricing-card.popular {
        transform: none;
    }

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

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

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}

/* ============================================
   Below Hero Redesign (Light Cards)
   ============================================ */
.stats-section,
.features-section,
.devices-section,
.pricing-section,
.how-it-works-section,
.testimonials-section,
.faq-section {
    background: transparent;
}

.section-header {
    text-align: center;
    margin: 0 auto 3rem;
    padding-left: 0;
}

.section-header::before {
    display: none;
}

.section-title {
    color: #1f1b3a;
}

.section-subtitle {
    color: #4b4670;
}

.stat-card,
.feature-card,
.device-item,
.pricing-card,
.step-card,
.testimonial-card,
.faq-item {
    background: #ffffff !important;
    border: 1px solid #e6e3f7 !important;
    box-shadow: 0 16px 32px rgba(41, 30, 90, 0.08) !important;
}

.stat-number,
.feature-title,
.plan-name,
.amount,
.step-title,
.author-name,
.faq-question {
    color: #1f1b3a !important;
}

.stat-label,
.feature-desc,
.plan-devices,
.period,
.pricing-features li,
.step-desc,
.testimonial-content,
.author-location,
.faq-answer p,
.faq-footer p {
    color: #4b4670 !important;
}

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

.feature-card:nth-child(odd) {
    transform: translateY(12px);
}

.devices-showcase {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.device-item {
    min-width: 140px;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-tabs {
    background: #ffffff;
    padding: 0.5rem;
    border-radius: 999px;
    border: 1px solid #e6e3f7;
}

.tab-btn {
    border-radius: 999px;
}

.testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid {
    max-width: 920px;
}

.faq-question:hover {
    color: #5e37e6;
}

.cta-section {
    background: #f0edff;
}

.cta-content {
    color: #1f1b3a;
}

@media (max-width: 1024px) {

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .navbar {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 0.125rem;
    }

    .nav-links a {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .nav-cta {
        gap: 0.5rem;
    }

    .nav-cta .btn {
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }

    /* Announcement Bar Mobile */
    .announcement-bar {
        height: 44px;
    }

    .announcement-content {
        padding: 0 2rem;
    }

    .announcement-badge {
        font-size: 0.6875rem;
        padding: 0.2rem 0.5rem;
    }

    .announcement-text {
        font-size: 0.8125rem;
    }

    .announcement-cta {
        font-size: 0.8125rem;
        padding: 0.3rem 0.75rem;
    }

    .announcement-close {
        width: 24px;
        height: 24px;
        right: 0.5rem;
    }

    .announcement-indicators {
        bottom: 0.35rem;
        gap: 0.35rem;
    }

    /* Header Mobile */
    .header {
        top: 44px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .navbar {
        height: 70px;
        gap: 1rem;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.625rem;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        top: 114px;
    }

    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .stats-section {
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        display: none;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .mobile-menu {
        top: 98px;
    }

    .mobile-menu-content {
        padding: 1.5rem 1rem;
    }

    .mobile-nav-links a {
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .device-screen {
        width: 280px;
        height: 200px;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Large Screens */
@media (min-width: 1440px) {
    .navbar {
        height: 90px;
        gap: 3rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
    }

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

/* Page Hero Responsive */
@media (max-width: 1024px) {
    .page-hero {
        padding: 160px 0 80px;
        min-height: auto;
    }

    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .page-hero-text {
        order: 1;
    }

    .page-hero-visual {
        order: 2;
    }

    .page-hero-subtitle {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .page-hero-features {
        justify-content: center;
    }

    .page-hero-floating-1 {
        left: 0;
    }

    .page-hero-floating-2 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .page-hero-visual {
        display: none;
    }

    .page-hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Affiliate Program Styles
   ============================================ */
.affiliate-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
}

.affiliate-stats {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.affiliate-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.affiliate-stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.affiliate-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.affiliate-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.affiliate-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* How Affiliate Works */
.affiliate-how-it-works {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.affiliate-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.affiliate-step {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.affiliate-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.affiliate-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(122, 77, 255, 0.3);
}

.affiliate-step-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-500);
}

.affiliate-step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.affiliate-step-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Commission Tiers */
.affiliate-tiers {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-200);
}

.tier-card.bronze::before {
    background: linear-gradient(90deg, #CD7F32, #E5A85E);
}

.tier-card.silver::before {
    background: linear-gradient(90deg, #C0C0C0, #E8E8E8);
}

.tier-card.gold::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.tier-card.gold {
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.15);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tier-card.bronze .tier-badge {
    background: rgba(205, 127, 50, 0.1);
    color: #B87333;
}

.tier-card.silver .tier-badge {
    background: rgba(192, 192, 192, 0.2);
    color: #6B7280;
}

.tier-card.gold .tier-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #B8860B;
}

.tier-commission {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-card.bronze .tier-commission {
    color: #CD7F32;
}

.tier-card.silver .tier-commission {
    color: #71717A;
}

.tier-card.gold .tier-commission {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-requirement {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.tier-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.tier-feature i {
    color: var(--success);
    font-size: 1rem;
}

/* Affiliate Benefits */
.affiliate-benefits {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-500);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Affiliate CTA */
.affiliate-cta {
    padding: var(--section-spacing) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.affiliate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(122, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(240, 85, 199, 0.1) 0%, transparent 50%);
}

.affiliate-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.affiliate-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.affiliate-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

/* Affiliate Responsive */
@media (max-width: 1024px) {
    .affiliate-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliate-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .tier-card.gold {
        transform: none;
    }

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

@media (max-width: 768px) {
    .affiliate-stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .affiliate-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   Global Responsive - Header & Navigation
   ============================================ */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .main-nav__link {
        font-size: 0.9375rem;
        padding: 0.625rem 1rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .main-nav {
        gap: 0.25rem;
    }

    .main-nav__link {
        font-size: 0.875rem;
        padding: 0.5rem 0.625rem;
    }

    .header-actions {
        gap: 0.5rem;
    }
}

/* Tablet and below - show mobile nav */
@media (max-width: 991px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .brand__tagline {
        display: none;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .promo-bar__inner {
        padding: 0 1.5rem;
    }

    .site-header__inner {
        padding: 0 1.5rem;
    }

    .mobile-nav__inner {
        padding: 1.5rem;
    }
}

/* Mobile landscape (576px - 767px) */
@media (max-width: 767px) {
    :root {
        --promo-height: 38px;
        --header-height: 60px;
    }

    .promo-bar__tag {
        padding: 0.125rem 0.5rem;
        font-size: 0.625rem;
    }

    .promo-bar__text {
        font-size: 0.8125rem;
    }

    .promo-bar__link {
        font-size: 0.75rem;
    }

    .brand__icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .brand__name {
        font-size: 1.125rem;
    }

    .mobile-nav__menu-link {
        padding: 0.875rem 1rem;
    }
}

/* Mobile portrait (up to 575px) */
@media (max-width: 575px) {
    :root {
        --promo-height: 36px;
        --header-height: 56px;
    }

    .promo-bar__inner {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .promo-bar__tag {
        display: none;
    }

    .promo-bar__close {
        width: 24px;
        height: 24px;
    }

    .site-header__inner {
        padding: 0 1rem;
    }

    .brand__icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .brand__name {
        font-size: 1rem;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-nav__inner {
        padding: 1.25rem 1rem;
    }

    .mobile-nav__menu-link {
        font-size: 0.9375rem;
    }

    .mobile-nav__footer .btn {
        padding: 0.875rem 1rem;
    }
}

/* Small phones (up to 375px) */
@media (max-width: 375px) {
    .promo-bar__text {
        font-size: 0.75rem;
    }

    .promo-bar__link {
        display: none;
    }

    .brand {
        gap: 0.5rem;
    }

    .brand__icon {
        width: 30px;
        height: 30px;
    }

    .brand__name {
        font-size: 0.9375rem;
    }

    .nav-toggle {
        width: 32px;
        height: 32px;
    }

    .nav-toggle span {
        width: 18px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .promo-bar,
    .site-header,
    .main-nav__link,
    .mobile-nav,
    .nav-toggle span,
    .btn {
        transition: none;
    }
}

/* ============================================
   Full-Screen Hero Playing Overlay
   ============================================ */

/* Hero Section Transitions */
.hero {
    position: relative;
    transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.playing-mode .hero-bg {
    opacity: 0.3;
}

.hero.playing-mode .hero-content {
    opacity: 0.2;
    pointer-events: none;
}

/* Full-Screen Playing Overlay */
.hero-playing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 20, 0.98));
}

.hero-playing-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Channel-Specific Backgrounds for Hero */
.hero.playing-netflix .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-amazon .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-hbomax .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(123, 79, 255, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-disney .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(17, 60, 207, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-espn .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-cnn .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.25), rgba(20, 20, 30, 0.95));
}

.hero.playing-bbc .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 20, 30, 0.95));
}

.hero.playing-sky .hero-playing-overlay {
    background: linear-gradient(135deg, rgba(0, 114, 198, 0.25), rgba(20, 20, 30, 0.95));
}

/* Back to Home Button */
.back-to-home {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    animation: slideInLeft 0.5s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

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

.back-to-home:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.back-to-home i {
    font-size: 1.25rem;
}

/* Playing Fullscreen Container */
.playing-fullscreen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 30px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* Playing Fullscreen Header */
.playing-fullscreen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease 0.4s both;
}

.channel-logo-huge span {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.3);
}

.live-indicator-large {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.live-dot-large {
    width: 10px;
    height: 10px;
    background: #EF4444;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(239, 68, 68, 1);
    animation: pulse 2s ease-in-out infinite;
}

.live-indicator-large span {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Playing Fullscreen Content */
.playing-fullscreen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 700px;
}

.video-player-large {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(122, 77, 255, 0.15), rgba(240, 85, 199, 0.08));
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: scaleIn 0.6s ease 0.5s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.play-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-icon-huge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(122, 77, 255, 0.5);
    position: relative;
}

.play-icon-huge::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid rgba(122, 77, 255, 0.4);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.play-icon-huge:hover {
    transform: scale(1.15);
    box-shadow: 0 30px 90px rgba(122, 77, 255, 0.7);
}

.play-icon-huge i {
    font-size: 2.5rem;
    color: white;
    margin-left: 5px;
}

.video-gradient-large {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

/* Playing Info Large */
.playing-info-large {
    text-align: center;
    color: white;
    animation: fadeIn 0.6s ease 0.6s both;
}

.playing-info-large h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playing-info-large p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.quality-indicators-large {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.quality-tag-large {
    padding: 6px 14px;
    background: rgba(122, 77, 255, 0.2);
    border: 1px solid rgba(122, 77, 255, 0.4);
    border-radius: 8px;
    color: var(--secondary-400);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quality-tag-large:hover {
    background: rgba(122, 77, 255, 0.3);
    transform: translateY(-3px);
}

/* Interactive Channel Cards - Premium Hover Effects */
.interactive-channel {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.interactive-channel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.interactive-channel::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.interactive-channel:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 77, 255, 0.4);
    z-index: 10;
}

.interactive-channel:hover::before {
    opacity: 1;
}

.interactive-channel:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.interactive-channel:hover span {
    opacity: 0.7;
}

.interactive-channel:active {
    transform: scale(1.02);
    transition-duration: 0.1s;
}

/* Responsive Design for Fullscreen Playing */
@media (max-width: 1024px) {
    .channel-logo-huge span {
        font-size: 2rem;
    }

    .playing-fullscreen-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .video-player-large {
        max-width: 100%;
    }

    .play-icon-huge {
        width: 70px;
        height: 70px;
    }

    .play-icon-huge i {
        font-size: 2rem;
    }

    .playing-info-large h2 {
        font-size: 1.25rem;
    }

    .playing-info-large p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .back-to-home {
        top: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 0.875rem;
    }

    .playing-fullscreen {
        padding: 50px 15px 15px;
    }

    .channel-logo-huge span {
        font-size: 1.5rem;
    }

    .live-indicator-large {
        padding: 5px 10px;
    }

    .live-dot-large {
        width: 8px;
        height: 8px;
    }

    .live-indicator-large span {
        font-size: 0.75rem;
    }

    .play-icon-huge {
        width: 60px;
        height: 60px;
    }

    .play-icon-huge i {
        font-size: 1.5rem;
        margin-left: 3px;
    }

    .playing-info-large h2 {
        font-size: 1.1rem;
    }

    .playing-info-large p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .quality-tag-large {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .quality-indicators-large {
        gap: 8px;
    }
}

/* ============================================
   Professional Profile Page Styles
   ============================================ */

/* Profile Hero Section */
.profile-hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(122, 77, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 85, 199, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-glow-1 {
    top: -200px;
    left: -100px;
    background: var(--primary-500);
}

.hero-glow-2 {
    bottom: -200px;
    right: -100px;
    background: var(--secondary-500);
}

.profile-hero-wrapper {
    position: relative;
    z-index: 1;
}

.profile-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

/* Avatar Section */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.avatar-large {
    position: relative;
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(122, 77, 255, 0.4);
}

.avatar-initials {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
}

.avatar-status-ring {
    position: absolute;
    inset: -6px;
    border: 3px solid transparent;
    border-top-color: var(--success);
    border-radius: 50%;
    animation: rotate-ring 3s linear infinite;
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-status-dot {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--success);
    border: 4px solid var(--gray-900);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.profile-badges-top {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-pill--primary {
    background: rgba(122, 77, 255, 0.15);
    color: var(--primary-300);
    border: 1px solid rgba(122, 77, 255, 0.3);
}

.badge-pill--gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Profile Info Section */
.profile-info-section {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.profile-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.meta-item i {
    color: var(--primary-300);
    font-size: 1.125rem;
}

/* Stats Section */
.profile-stats-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-card--blue .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.stat-card--green .stat-icon-wrapper {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-card--purple .stat-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Main Content Section */
.profile-main-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

/* Alert Pro */
.alert-pro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.alert-pro-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-pro--success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
}

.alert-pro--success .alert-pro-icon {
    background: #10b981;
    color: var(--white);
}

.alert-pro--error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
}

.alert-pro--error .alert-pro-icon {
    background: #ef4444;
    color: var(--white);
}

.alert-pro-content {
    flex: 1;
}

.alert-pro-content strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.alert-pro-content p,
.alert-pro-content ul {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.alert-pro-content ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.alert-pro-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-pro-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--gray-900);
}

/* Profile Layout */
.profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar Pro */
.profile-sidebar-pro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.sidebar-widget--admin {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fcd34d;
}

.sidebar-widget--support {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border: 1px solid var(--primary-200);
}

.widget-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f59e0b;
}

.widget-icon--sm {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
    color: var(--primary-600);
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-align: center;
}

.widget-title--icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.widget-title--icon i {
    color: var(--primary-500);
}

.widget-desc {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-btn--gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.widget-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    color: #78350f;
}

.widget-btn--outline {
    background: var(--white);
    color: var(--primary-600);
    border: 2px solid var(--primary-200);
}

.widget-btn--outline:hover {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.widget-btn--white {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--gray-900);
}

/* Quick Nav */
.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.quick-nav-item i {
    color: var(--primary-500);
    font-size: 1.125rem;
}

.quick-nav-item:hover {
    background: var(--primary-50);
    color: var(--primary-700);
    transform: translateX(4px);
}

/* Content Card Pro */
.content-card-pro {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header-pro {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-bottom: 1px solid var(--gray-200);
}

.card-icon-pro {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon-pro--blue {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.card-icon-pro--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-icon-pro--purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-header-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.card-header-text p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.card-body-pro {
    padding: 2.5rem;
}

.card-body-pro--orders {
    padding: 2rem;
}

/* Form Pro */
.form-pro {
    max-width: 100%;
}

.form-row-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-pro {
    display: flex;
    flex-direction: column;
}

.form-group-pro--full {
    grid-column: 1 / -1;
}

.form-label-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-label-pro i {
    color: var(--primary-500);
    font-size: 1.125rem;
}

.label-required {
    color: #ef4444;
    font-weight: 700;
}

.form-control-pro {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control-pro:focus {
    outline: none;
    border-color: var(--primary-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 77, 255, 0.1);
}

.form-control-pro.is-invalid,
.form-control-pro.field-input--error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-control-pro::placeholder {
    color: var(--gray-400);
}

.form-error-pro {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #ef4444;
    font-weight: 500;
}

.form-actions-pro {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* Button Pro */
.btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pro--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-pro--primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(122, 77, 255, 0.3);
}

.btn-pro--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 77, 255, 0.4);
}

.btn-pro--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-pro--red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

/* Order Item Pro */
.order-item-pro {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.order-item-pro:not(:last-child) {
    margin-bottom: 2rem;
}

.order-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.timeline-dot--active {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.timeline-dot--inactive {
    background: linear-gradient(135deg, var(--gray-400), var(--gray-500));
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--gray-200);
    margin-top: 0.5rem;
}

.order-item-pro:last-child .timeline-line {
    display: none;
}

.order-content-pro {
    flex: 1;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.order-content-pro:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-300);
}

.order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-200);
}

.order-package-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.order-number-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-tag--success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.status-tag--warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #78350f;
}

.status-tag--danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.status-tag--default {
    background: var(--gray-200);
    color: var(--gray-700);
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.order-detail-box {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.order-detail-box i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-900);
    font-weight: 600;
}

/* Empty State Pro */
.empty-state-pro {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon-pro {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-400);
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.empty-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-hero-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-avatar-section,
    .profile-info-section {
        text-align: center;
    }

    .profile-meta-list {
        justify-content: center;
    }

    .profile-stats-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar-pro {
        position: relative;
        top: 0;
    }

    .form-row-pro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-hero-section {
        padding: 6rem 0 3rem;
    }

    .profile-hero-card {
        padding: 2rem 1.5rem;
    }

    .avatar-large {
        width: 100px;
        height: 100px;
    }

    .avatar-initials {
        font-size: 2.5rem;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .profile-main-section {
        padding: 3rem 0;
    }

    .card-header-pro,
    .card-body-pro {
        padding: 1.5rem;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-widget--admin,
    .sidebar-widget--support {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-stats-section {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
    }

    .profile-meta-list {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .order-item-pro {
        flex-direction: column;
        gap: 0;
    }

    .order-timeline-marker {
        flex-direction: row;
        margin-bottom: 1rem;
    }

    .timeline-line {
        width: 100%;
        height: 2px;
        margin-top: 0;
        margin-left: 0.5rem;
    }
}

.profile-badges-inline {
    justify-content: center;
}


/* ============================================
   Galaxy Theme Overrides
   ============================================ */
.promo-bar {
    background: linear-gradient(90deg, #140D2E 0%, #2A1D5B 45%, #140D2E 100%);
    border-bottom: 1px solid rgba(122, 77, 255, 0.35);
}

.site-header {
    background: linear-gradient(180deg, rgba(5, 6, 13, 0.75) 0%, rgba(5, 6, 13, 0) 100%);
}

.site-header.is-scrolled {
    background: rgba(7, 10, 20, 0.92);
    box-shadow: 0 8px 30px rgba(4, 8, 20, 0.6);
    border-bottom: 1px solid rgba(122, 77, 255, 0.25);
}

.main-nav a {
    color: rgba(230, 238, 255, 0.75);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #FFFFFF;
}

.brand__name,
.site-header.is-scrolled .brand__name {
    color: #F4F7FF;
}

.brand__tagline,
.site-header.is-scrolled .brand__tagline {
    color: rgba(180, 196, 230, 0.75);
}

.btn--primary,
.btn-primary {
    background: var(--gradient-primary);
    color: #051018;
    box-shadow: 0 12px 30px rgba(122, 77, 255, 0.35);
    border: none;
}

.btn--primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(240, 85, 199, 0.45);
}

.btn--outline,
.btn-outline {
    border: 1px solid rgba(122, 77, 255, 0.6);
    color: #E6EFFF;
    background: rgba(9, 16, 32, 0.35);
}

.btn--outline:hover,
.btn-outline:hover {
    background: rgba(122, 77, 255, 0.18);
    border-color: rgba(240, 85, 199, 0.7);
}

.btn-glass {
    background: rgba(9, 16, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #E6EFFF;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-gradient {
    background: var(--gradient-hero);
}

.hero-pattern {
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 120px 120px, 220px 220px;
    opacity: 0.55;
}

.hero-glow-1 {
    background: rgba(122, 77, 255, 0.5);
}

.hero-glow-2 {
    background: rgba(240, 85, 199, 0.42);
}

.hero-subtitle {
    color: rgba(224, 236, 255, 0.8);
}

.hero-feature {
    color: rgba(224, 236, 255, 0.9);
}

.hero-feature i {
    color: #FF7AD9;
}

.trust-badge i {
    color: #BFA6FF;
}

.stats-section,
.features-section,
.pricing-section,
.testimonials-section,
.faq-section,
.cta-section,
.profile-hero-section {
    background: transparent;
}

.section-title {
    color: #F2F6FF;
}

.section-subtitle {
    color: rgba(190, 206, 235, 0.75);
}

.stat-card,
.feature-card,
.pricing-card,
.testimonial-card,
.faq-item {
    background: rgba(10, 16, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(4, 10, 24, 0.45);
}

.stat-card::before,
.feature-card::before,
.pricing-card::before,
.testimonial-card::before {
    background: radial-gradient(circle at 20% 20%, rgba(122, 77, 255, 0.25), transparent 60%);
}

.stat-card:hover,
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    border-color: rgba(122, 77, 255, 0.6);
}

.pricing-card.popular {
    border-color: rgba(240, 85, 199, 0.6);
    box-shadow: 0 25px 60px rgba(240, 85, 199, 0.25);
}

.faq-question {
    color: #EEF3FF;
}

.faq-answer {
    color: rgba(190, 206, 235, 0.8);
}

.cta-gradient {
    background:
        radial-gradient(120% 120% at 20% 20%, rgba(122, 77, 255, 0.25), transparent 60%),
        linear-gradient(135deg, #05060D 0%, #120F2E 60%, #070A14 100%);
}

.cta-pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 120px 120px;
}

.page-hero-bg,
.profile-hero-bg {
    background: var(--gradient-hero);
}

.page-hero-pattern {
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 140px 140px, 260px 260px;
    opacity: 0.55;
}

.footer {
    background: #05060D;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
    color: rgba(198, 214, 243, 0.7);
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Layout Restructure Overrides */
.hero-visual {
    justify-content: flex-start;
}

.hero-device {
    transform: translateY(10px);
}

.pricing-grid,
.testimonials-grid,
.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.25rem;
}

.cta-content {
    text-align: left;
    align-items: flex-start;
}

.cta-buttons {
    justify-content: flex-start;
}

.footer-grid {
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .section-header {
        padding-left: 0;
    }

    .section-header::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* ============================================
   Hero Layout Redesign
   ============================================ */
.hero {
    align-items: center;
    padding-top: 150px;
    padding-bottom: 6rem;
}

.hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
    background: rgba(10, 12, 28, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.75rem 3rem;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(8, 6, 24, 0.65);
    max-width: 880px;
    margin: 0 auto;
}

.hero-features {
    justify-content: center;
    gap: 1rem;
}

.hero-cta {
    width: 100%;
    justify-content: center;
}

.hero-cta .btn {
    flex: 1 1 200px;
    justify-content: center;
}

.hero-trust {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
}

.trust-badges {
    justify-content: center;
    gap: 1.25rem;
}

.hero-visual {
    justify-content: center;
    padding: 2.5rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    position: relative;
}

.hero-device {
    grid-column: 1 / -1;
    transform: translateY(0);
    width: 100%;
}

.device-frame {
    border-radius: 22px;
    padding: 18px;
    width: 100%;
}

.device-screen {
    width: 100%;
    height: 210px;
    position: relative;
}

.channel-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    padding: 0.75rem 3.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
}

.channel-grid::-webkit-scrollbar {
    height: 0;
}

.channel-card {
    min-width: 180px;
    height: 56px;
    scroll-snap-align: center;
}

.channel-card:hover {
    background: #ffffff;
    color: #1a1f2e;
    transform: translateY(-2px);
}

.channel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 28, 0.9);
    color: #E6EFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(8, 6, 24, 0.4);
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.channel-arrow:hover {
    background: rgba(122, 77, 255, 0.18);
    border-color: rgba(240, 85, 199, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.channel-arrow--left {
    left: 12px;
}

.channel-arrow--right {
    right: 12px;
}

.floating-badge {
    position: static;
    justify-self: center;
    background: rgba(12, 12, 28, 0.85);
    color: #E6EFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-1 {
    grid-column: 1;
}

.floating-2 {
    grid-column: 2;
}

.floating-3 {
    grid-column: 3;
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .device-screen {
        width: 100%;
        max-width: 480px;
        height: 300px;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .floating-1,
    .floating-2,
    .floating-3 {
        grid-column: 1;
    }
}

/* ============================================
   Header Action Redesign
   ============================================ */
.site-header .header-actions .btn,
.site-header .lang-dropdown-wrapper .btn {
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(8, 6, 24, 0.35);
}

.site-header .lang-dropdown-wrapper .btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    min-height: 30px;
}

.site-header .btn--outline {
    background: rgba(122, 77, 255, 0.12);
    border: 1px solid rgba(122, 77, 255, 0.5);
    color: #F1ECFF;
}

.site-header .btn--outline:hover {
    background: rgba(240, 85, 199, 0.18);
    border-color: rgba(240, 85, 199, 0.7);
    transform: translateY(-1px);
}

.site-header .btn--primary {
    background: linear-gradient(120deg, #7A4DFF 0%, #F055C7 100%);
    color: #140A2B;
    border: none;
}

.site-header .btn--primary:hover {
    box-shadow: 0 14px 32px rgba(240, 85, 199, 0.35);
}

/* ============================================
   Global Button Hover Consistency
   ============================================ */
.btn:hover,
.btn--primary:hover,
.btn-primary:hover,
.btn--outline:hover,
.btn-outline:hover,
.btn-glass:hover,
.btn-white:hover,
.btn-outline-white:hover,
.btn-ghost:hover,
.btn-gradient:hover,
.btn-pro:hover,
.btn-pro--primary:hover,
.btn-pro--red:hover {
    background: #ffffff;
    color: #1a1f2e;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(12, 12, 28, 0.35);
}

.btn:hover i,
.btn--primary:hover i,
.btn-primary:hover i,
.btn--outline:hover i,
.btn-outline:hover i,
.btn-glass:hover i,
.btn-white:hover i,
.btn-outline-white:hover i,
.btn-ghost:hover i,
.btn-gradient:hover i,
.btn-pro:hover i,
.btn-pro--primary:hover i,
.btn-pro--red:hover i {
    color: #1a1f2e;
}