/* 
========================================================================
   WAVEPRO TV - PREMIUM IPTV STYLING SYSTEM
   Theme: Futuristic Dark Mode with Wave Gradients
   Typography: Outfit & Plus Jakarta Sans
========================================================================
*/

/* --- CSS Variables & Custom Properties --- */
:root {
    --bg-main: #ffffff;
    --bg-darker: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(0, 136, 255, 0.08);
    
    --primary: #0077ff; /* Adjusted for better contrast on white */
    --primary-alt: #00a2ff;
    --secondary: #8b00ff;
    --secondary-alt: #e11d48;
    
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    --grad-accent: linear-gradient(135deg, #c084fc 0%, #38bdf8 100%);
    --grad-text: linear-gradient(90deg, #0f172a 10%, #0077ff 50%, #8b00ff 90%);
    --grad-dark: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);

    --text-main: #475569;
    --text-light: #64748b;
    --text-white: #0f172a; /* Dark text for headings instead of white */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-glow: 0 0 25px rgba(0, 119, 255, 0.12);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    background: var(--grad-dark);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-main);
}

/* --- Micro-Animations & Effects --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes live-pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.2);
}

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

.btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

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

.btn-glass:hover {
    border-color: var(--primary);
    background: rgba(0, 119, 255, 0.05);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border-glass);
    padding: 12px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    transition: var(--transition-normal);
}

.header.scrolled .navbar {
    padding: 8px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    filter: drop-shadow(0 0 8px rgba(0, 119, 255, 0.25));
}

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

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.menu-toggle {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.08) 0%, rgba(139, 0, 255, 0.03) 50%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
    animation: pulse-glow 8s infinite alternate;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(235, 245, 255, 0.60) 60%,
        rgba(255, 255, 255, 0.45) 100%
    );
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    max-width: 640px;
}

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 119, 255, 0.08);
    border: 1px solid rgba(0, 119, 255, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: live-pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #0a0f2e;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 30px;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0a0f2e;
}

.stat-label {
    font-size: 0.85rem;
    color: #4b5563;
}

/* TV Mockup Graphics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-mockup {
    width: 100%;
    max-width: 520px;
    background: #111;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15), 0 0 40px rgba(0, 119, 255, 0.08);
    position: relative;
}

.tv-screen {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.tv-stream-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.tv-overlay-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 0.75rem;
}

.tv-logo {
    font-family: var(--font-heading);
    font-weight: 800;
}

.tv-logo span {
    color: var(--primary);
}

.tv-categories {
    display: flex;
    gap: 8px;
    overflow: hidden;
}

.tv-cat {
    font-size: 0.65rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text-light);
}

.tv-cat.active {
    background: var(--primary);
    color: #000;
    font-weight: 700;
}

.tv-current-show {
    color: var(--text-white);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    background: #ff0055;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: live-pulse 1s infinite;
}

.tv-current-show h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.tv-current-show p {
    font-size: 0.7rem;
    color: var(--text-main);
}

.tv-stand {
    width: 100px;
    height: 20px;
    background: #222;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.badge-top {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 15%;
    right: -5%;
    animation-delay: 2.5s;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 119, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

.badge-info p {
    font-size: 0.7rem;
    color: var(--text-main);
}

/* --- Compatibility Bar --- */
.compatibility-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(15, 23, 42, 0.02);
}

.compatibility-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.device-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.device-item i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.device-item:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.feature-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 119, 255, 0.2);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.08);
}

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

.feature-card:hover .feature-icon-wrapper {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 119, 255, 0.3);
}

/* --- Channels Section --- */
.channels-section {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.01);
}

.channel-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    color: var(--text-white);
    background: rgba(15, 23, 42, 0.05);
}

.tab-btn.active {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.channel-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
}

.channel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.live-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff0055;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.channel-info {
    padding: 20px;
}

.channel-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.channel-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.channel-res {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 1px 6px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 4px;
    color: var(--text-white);
}

.channel-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.channel-current {
    font-size: 0.8rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 119, 255, 0.25);
    box-shadow: var(--shadow-card);
}

.channel-card:hover .channel-thumb img {
    transform: scale(1.08);
}

/* --- Compatibility Details --- */
.compatibility-details-section {
    padding: 100px 0;
}

.compatibility-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.compatibility-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-list-item {
    display: flex;
    gap: 20px;
}

.comp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 119, 255, 0.05);
    border: 1px solid rgba(0, 119, 255, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comp-list-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.comp-list-item p {
    font-size: 0.9rem;
}

/* Graphic mockups stack */
.compatibility-graphic {
    position: relative;
    height: 400px;
}

.stack-mockups {
    position: relative;
    width: 100%;
    height: 100%;
}

.tv-mockup-small {
    width: 80%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #1e293b;
    box-shadow: var(--shadow-card);
    position: absolute;
    top: 0;
    left: 0;
}

.tv-mockup-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tablet-mockup {
    width: 45%;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 2;
}

.tablet-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-mockup {
    width: 22%;
    aspect-ratio: 9/19;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    position: absolute;
    bottom: -5%;
    left: 30%;
    z-index: 3;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Pricing Section --- */
.pricing-section {
    position: relative;
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.02);
}

.pricing-bg-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.04) 0%, rgba(0, 119, 255, 0.02) 50%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 100px;
    gap: 16px;
    margin-top: 10px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition-fast);
}

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

.save-badge {
    background: var(--grad-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pricing-toggle.active {
    background: var(--primary);
}

.toggle-circle {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: var(--transition-normal);
}

.pricing-toggle.active .toggle-circle {
    left: 28px;
    background: #ffffff;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(0, 119, 255, 0.4);
    box-shadow: 0 20px 45px -10px rgba(0, 119, 255, 0.12);
    transform: scale(1.03);
}

.popular-ribbon {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--grad-primary);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 242, 254, 0.2);
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 24px;
}

.price-container {
    display: flex;
    align-items: baseline;
}

.price-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    transition: var(--transition-fast);
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-left: 6px;
}

.savings-text {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 8px;
    font-weight: 600;
}

/* Features List */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features li.unsupported {
    color: rgba(255,255,255,0.25);
    text-decoration: line-through;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.x-icon {
    width: 18px;
    height: 18px;
    color: #ef4444;
    flex-shrink: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(0, 119, 255, 0.18);
}

/* Guarantee Box */
.pricing-footer {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-glass);
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    max-width: 750px;
}

.guarantee-box i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-box span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-fill {
    width: 16px;
    height: 16px;
    fill: #eab308;
    color: #eab308;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-main);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.2);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.01);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.faq-left {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-left .section-title {
    margin-bottom: 24px;
    text-align: left;
}

.faq-left .section-desc {
    margin-bottom: 36px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    cursor: pointer;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
    color: var(--text-main);
}

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

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(0, 119, 255, 0.2);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

/* --- Contact & Trial Form --- */
.contact-section {
    padding: 100px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-form-side {
    padding: 60px;
    position: relative;
}

.contact-form-side h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.contact-form-side p {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input, .form-group select, .form-group textarea {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group select option {
    background: #ffffff;
    color: var(--text-white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 119, 255, 0.12);
}

/* Contact Info Sidebar */
.contact-info-side {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.03) 0%, rgba(139, 0, 255, 0.03) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--border-glass);
}

.info-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.info-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.method-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.method-icon.whatsapp { background: #25d366; }
.method-icon.telegram { background: #0088cc; }
.method-icon.email { background: rgba(255, 255, 255, 0.1); color: var(--primary); }

.method-details span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-main);
}

.method-details strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-white);
}

.contact-method-card:hover {
    transform: translateX(4px);
    border-color: rgba(0, 119, 255, 0.15);
    background: rgba(15, 23, 42, 0.03);
}

.info-footer {
    margin-top: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.uptime-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 4px;
}

.info-footer p {
    font-size: 0.75rem;
}

/* Success form state */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #25d366;
    margin-bottom: 24px;
}

.success-icon i {
    width: 100%;
    height: 100%;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Footer --- */
.footer-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.9fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-about .logo-container {
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.payment-logos i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-main);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 30px 0;
}

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

.footer-bottom p {
    font-size: 0.8rem;
}

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

.legal-links a {
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: var(--text-white);
}

/* --- Responsive Adjustments (Media Queries) --- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .faq-left .section-title {
        text-align: center;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition-normal);
        z-index: 999;
        border-top: 1px solid var(--border-glass);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .compatibility-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .compatibility-graphic {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .channel-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 30px 20px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-info-side {
        padding: 30px 20px;
    }
    
    .tv-categories {
        display: none;
    }
}

/* --- Lifestyle / Social Proof Image Section --- */
.lifestyle-section {
    padding: 60px 0 40px 0;
    background: var(--bg-main);
}

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

.lifestyle-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-main);
    letter-spacing: 0.3px;
}

.lifestyle-title strong {
    color: var(--primary);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 260px;
    gap: 16px;
}

.lifestyle-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) saturate(1.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px 16px 16px;
    background: linear-gradient(to top, rgba(0, 119, 255, 0.75) 0%, rgba(0, 40, 120, 0.3) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-normal);
}

.lifestyle-overlay p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.lifestyle-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 800;
    background: #ff0055;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lifestyle-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.75) saturate(1.2);
}

.lifestyle-card:hover .lifestyle-overlay {
    background: linear-gradient(to top, rgba(0, 119, 255, 0.88) 0%, rgba(0, 40, 120, 0.45) 60%, transparent 100%);
}

@media (max-width: 1024px) {
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .lifestyle-card {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .lifestyle-card {
        height: 170px;
    }
}

/* --- Blog Section --- */
.blog-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.blog-card {
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    align-items: center;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    width: 14px;
    height: 14px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    width: fit-content;
}

.blog-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 119, 255, 0.15);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-card:hover .blog-link i {
    transform: translateX(4px);
}

/* --- Scroll Reveal Animations --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

