/* TeeeVeee.nl - Professional IPTV Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --primary-light: #FF8533;
    --primary-grad: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFA500 100%);
    --primary-grad-hover: linear-gradient(135deg, #FF8533 0%, #FFA500 100%);
    --dark: #0a0a1a;
    --dark-blue: #12122a;
    --darker: #050510;
    --light: #f8f9fd;
    --gray: #5a5f75;
    --gray-light: #9ba3bf;
    --border-light: #e6e9f4;
    --white: #ffffff;
    --success: #00c853;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 24px 64px rgba(255, 107, 0, 0.15), 0 4px 20px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 40px rgba(255, 107, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.1);

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    color: rgba(255,255,255,0.8);
}

.top-bar-left a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.status-text {
    color: var(--success);
    font-weight: 600;
    font-size: 12px;
}

/* ==================== HEADER ==================== */
.header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-grad);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-grad);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

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

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn i {
    font-size: 16px;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 20px 24px;
}

.mobile-nav li {
    margin-bottom: 8px;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    background: var(--light);
    color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 50%, var(--darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 133, 51, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

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

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-cta .btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-number span {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==================== PLATFORM STATUS ==================== */
.status-section {
    padding: 50px 0;
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 20;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.status-header {
    text-align: center;
    margin-bottom: 50px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--success);
    font-weight: 600;
    font-size: 14px;
}

.status-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.status-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.status-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.status-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-grad);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.status-card-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.status-card-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* ==================== CONTENT LIBRARY ==================== */
.content-section {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f1e 100%);
}

.content-section .section-header {
    margin-bottom: 25px;
}

.content-section .section-label {
    background: rgba(255,107,0,0.15);
    color: var(--primary);
    font-size: 11px;
    padding: 6px 14px;
}

.content-section .section-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.content-section .section-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.content-card-emoji {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.content-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ==================== CHANNELS SECTION ==================== */
.channels-section {
    padding: 50px 0;
    background: #fff;
}

.channels-section .section-header {
    margin-bottom: 30px;
}

.channels-section .section-label {
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    font-size: 11px;
    padding: 6px 14px;
}

.channels-section .section-title {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 8px;
}

.channels-section .section-subtitle {
    color: var(--gray);
    font-size: 14px;
}

/* Movie Poster Showcase */
.movie-showcase {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.movie-scroll {
    overflow: hidden;
}

.movie-track {
    display: flex;
    gap: 8px;
    animation: movie-scroll 40s linear infinite;
    width: max-content;
}

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

@keyframes movie-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-164px * 12)); }
}

/* Movie Cards */
.movie-card {
    flex-shrink: 0;
    width: 148px;
    aspect-ratio: 2/3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.movie-info {
    display: none;
}

.movie-title {
    display: none;
}

.movie-badge {
    display: none;
}

/* Content Showcase Section */
.content-showcase {
    padding: 50px 0 30px;
    background: linear-gradient(160deg, #fff5f0 0%, #fff8f5 60%, #ffefe8 100%);
    overflow: hidden;
}

.content-showcase .section-overline {
    display: inline-block;
    background: rgba(255,107,0,0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.showcase-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.showcase-title span {
    color: var(--primary);
}

.showcase-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.showcase-note {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 25px;
}

.marquee-container {
    overflow: hidden;
    margin: 0 -24px;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* Channel Logos Section */
.channel-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 1000px;
    margin: 0 auto;
}

.channel-logo-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 80px;
    height: 45px;
}

.channel-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.channel-logo-item img {
    max-width: 60px;
    max-height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.channel-logo-item:hover img {
    opacity: 1;
}

.channel-logo-item span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {
    .channel-logos-grid {
        gap: 6px;
    }
    .channel-logo-item {
        padding: 6px 10px;
        width: 90px;
        height: 50px;
    }
    .channel-logo-item span {
        font-size: 11px;
    }
    .movie-card {
        width: 120px;
    }
}

/* Channel Brands Grid (fallback) */
.channel-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.brand-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.25);
}

.brand-item span {
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channels-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.channel-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}

.channel-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 60px 0;
    background: linear-gradient(160deg, #fff5f0 0%, #fff 60%, #fff8f5 100%);
    position: relative;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-section .section-overline {
    display: inline-block;
    background: rgba(255,107,0,0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-section .section-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-section .section-desc {
    font-size: 13px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Connection Tabs */
.conn-tabs-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.conn-tabs-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.conn-tabs-nav {
    display: inline-flex;
    gap: 8px;
    background: #fff;
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.conn-tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.conn-tab-btn:hover {
    color: var(--dark);
    background: var(--light);
}

.conn-tab-btn.active {
    background: var(--primary);
    color: #fff;
}

/* Connection Panels */
.conn-tab-panel {
    display: none;
}

.conn-tab-panel.active {
    display: block;
}

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

.pricing-section .container {
    position: relative;
    z-index: 10;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: var(--dark);
}

.pricing-section .section-subtitle {
    color: var(--gray);
}

.duration-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.duration-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.duration-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.duration-btn.active {
    background: var(--primary-grad);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 10px 0 8px;
}

.pricing-card-header {
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.plan-period {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    padding: 16px;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #555;
    padding: 5px 0;
}

.plan-features li i {
    color: var(--primary);
    font-size: 10px;
}

.plan-btn {
    display: block;
    margin: 0 16px 16px;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    background: var(--primary-dark);
}

.extra-conn-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray);
}

.extra-conn-note i {
    color: var(--primary);
    margin-right: 6px;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-grad);
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.pricing-duration {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-duration h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.pricing-badge {
    display: inline-block;
    background: var(--light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    vertical-align: top;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-period {
    font-size: 12px;
    color: var(--gray);
    margin-top: 6px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: var(--gray);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 10px;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 16px;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 100px 0;
    background: var(--light);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-grad);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ==================== HOW IT WORKS ==================== */
.steps-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray);
}

/* ==================== DEVICES SECTION ==================== */
.devices-section {
    padding: 100px 0;
    background: var(--light);
}

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

.device-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.device-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.device-card span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

/* ==================== RESELLER SECTION ==================== */
.reseller-section {
    padding: 100px 0;
    background: var(--primary-grad);
    position: relative;
    overflow: hidden;
}

.reseller-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.reseller-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.reseller-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.reseller-section .section-title {
    color: var(--white);
}

.reseller-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.reseller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 50px 0;
}

.reseller-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.reseller-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.reseller-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.reseller-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reseller-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

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

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==================== WHATSAPP WIDGET ==================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-grad);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

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

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

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

    .steps-grid::before {
        display: none;
    }

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

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

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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