/*
Theme Name: APOLLO IPTV
Theme URI: https://iptvkaufen.top/
Description: A premium, ultra-fast, SEO-optimized WordPress theme for APOLLO IPTV free trial access.
Version: 1.0.0
Author: Antigravity
Author URI: https://github.com/google-gemini
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bestiptv-web3
Tags: dark, two-columns, right-sidebar, flexible-header, custom-menu, translation-ready, seo-friendly
*/

/* ----------------------------------------------------
   1. CSS VARIABLES & SYSTEM DESIGN
---------------------------------------------------- */
:root {
    --bg-dark: #06060c;
    --bg-dark-card: rgba(15, 15, 30, 0.6);
    --bg-dark-nav: rgba(6, 6, 12, 0.75);
    --primary-neon: #a855f7; /* Electric Purple */
    --secondary-neon: #06b6d4; /* Electric Cyan */
    --accent-neon: #10b981; /* Neon Emerald */
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-glow-cyan: 0 0 15px rgba(6, 182, 212, 0.4);
    --neon-glow-purple: 0 0 15px rgba(168, 85, 247, 0.4);
    --neon-glow-green: 0 0 15px rgba(16, 185, 129, 0.4);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset and Globals */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients/Glows (Web3 Aesthetic) */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

a {
    color: var(--secondary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-neon);
    text-shadow: var(--neon-glow-purple);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* ----------------------------------------------------
   2. REUSABLE STYLES & GLASSMORPHISM
---------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--primary-neon) 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--bg-dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-glow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--neon-glow-cyan);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--secondary-neon);
    box-shadow: var(--neon-glow-cyan);
    transform: translateY(-2px);
}

.btn-neon {
    background: transparent;
    color: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.btn-neon:hover {
    background: var(--accent-neon);
    color: #06060c;
    box-shadow: var(--neon-glow-green);
    transform: translateY(-2px);
}

/* ----------------------------------------------------
   3. HEADER & NAVIGATION
---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: padding 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.logo-dot {
    color: var(--secondary-neon);
    text-shadow: var(--neon-glow-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ----------------------------------------------------
   4. HERO SECTION
---------------------------------------------------- */
.hero-section {
    padding: 10rem 0 5rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.2);
    filter: blur(100px);
    top: 20%;
    left: 10%;
    z-index: -1;
}

.hero-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.2);
    filter: blur(100px);
    bottom: 10%;
    right: 10%;
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-neon);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------
   5. DYNAMIC CAROUSELS & SLIDERS (PageSpeed Optimized)
---------------------------------------------------- */
.section-title-wrap {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

/* Fade overlays for the edge of carousels */
.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(6, 6, 12, 0) 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, rgba(6, 6, 12, 0) 100%);
}

/* Endless scrolling marquee animation */
.marquee-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marquee 35s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

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

.league-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.league-logo:hover {
    opacity: 1;
    filter: none;
}

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

/* Films / Series Poster Row (Sliding marquee styling but with card format) */
.poster-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: marquee 50s linear infinite;
}

.poster-track.reverse {
    animation-direction: reverse;
}

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

.poster-item {
    width: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    background: #0d0d18;
}

.poster-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--secondary-neon);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.poster-img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    text-align: center;
}

.poster-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ----------------------------------------------------
   6. PRICING PLANS SECTION
---------------------------------------------------- */
.plans-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(15, 10, 30, 0.4) 0%, var(--bg-dark) 80%);
}

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

.plan-card {
    position: relative;
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.popular {
    border-color: var(--primary-neon);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
}

.plan-card.popular:hover {
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.35);
    border-color: var(--secondary-neon);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-duration {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li svg {
    color: var(--accent-neon);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-features li.disabled svg {
    color: var(--text-muted);
}

.plan-btn {
    width: 100%;
    border: 0;
}

/* APOLLO IPTV Offers Modal */
.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.offer-modal.active {
    display: flex;
}

.offer-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.offer-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(760px, 92vh);
    overflow-y: auto;
    padding: 2rem;
}

.offer-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.offer-modal__title {
    margin: 1rem 0 0.75rem;
    font-size: 2rem;
}

.offer-modal__copy {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.offer-progress {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    color: var(--text-primary);
    font-weight: 600;
}

.offer-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-item:hover {
    border-color: var(--secondary-neon);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-cyan);
    color: #ffffff;
}

.offer-item__img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.offer-item__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary-neon);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.offer-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.offer-item__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-item__conversion {
    font-size: 0.78rem;
    color: var(--accent-neon);
    font-weight: 500;
}

.offer-item__cta {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-neon);
    white-space: nowrap;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.08);
    transition: all 0.3s ease;
}

.offer-item:hover .offer-item__cta {
    background: var(--secondary-neon);
    color: #06060c;
    border-color: var(--secondary-neon);
}

.offer-empty {
    color: var(--text-secondary);
}

.offer-claim {
    width: 100%;
}

.offer-claim.disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(1);
}

/* ----------------------------------------------------
   7. PROVIDERS / ABONNEMENT LOGOS GRID
---------------------------------------------------- */
.providers-section {
    padding: 5rem 0;
    background: rgba(10, 10, 20, 0.3);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    margin-top: 3rem;
}

.provider-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: brightness(1.5) contrast(0.8);
}

.provider-logo:hover {
    opacity: 1;
    filter: none;
}

/* ----------------------------------------------------
   8. FEATURES & BENEFITS SECTION
---------------------------------------------------- */
.features-section {
    padding: 6rem 0;
}

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

.feature-box {
    padding: 2.5rem 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-neon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.feature-box:nth-child(2) .feature-icon {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--primary-neon);
}

.feature-box:nth-child(3) .feature-icon {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-neon);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   9. HOW IT WORKS
---------------------------------------------------- */
.how-section {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom, rgba(15, 10, 30, 0.3) 0%, var(--bg-dark) 70%);
}

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

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   10. INTERACTIVE FAQ (ACCORDION)
---------------------------------------------------- */
.faq-section {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--secondary-neon);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.25rem 1.5rem;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-neon);
}

/* ----------------------------------------------------
   11. SEO SEMANTIC TEXT BLOCK
---------------------------------------------------- */
.seo-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--glass-border);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
}

.seo-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.seo-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.seo-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.seo-content li {
    margin-bottom: 0.5rem;
}

/* ----------------------------------------------------
   12. PAGES (CONTACT, PRIVACY, DEFAULT)
---------------------------------------------------- */
.page-header {
    padding: 9rem 0 4rem 0;
    background: radial-gradient(circle at center, rgba(15, 10, 30, 0.4) 0%, var(--bg-dark) 100%);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 5rem 0;
}

.page-text {
    max-width: 800px;
    margin: 0 auto;
}

.page-text h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem 0;
}

.page-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.page-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.page-text li {
    margin-bottom: 0.5rem;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    padding: 3rem 2.5rem;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--secondary-neon);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

textarea.contact-form-input {
    resize: vertical;
    min-height: 150px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-neon);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-info-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   13. FOOTER
---------------------------------------------------- */
.site-footer {
    background: #040408;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-neon);
}

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

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--secondary-neon);
    padding-left: 5px;
}

.footer-about-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.footer-disclaimer {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ----------------------------------------------------
   14. RESPONSIVE DESIGN MEDIA QUERIES
---------------------------------------------------- */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 65px;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: #06060c;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--glass-border);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 3rem auto 0 auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .offer-modal {
        padding: 1rem;
    }
    .offer-modal__dialog {
        padding: 1.5rem;
    }
    .offer-modal__title {
        font-size: 1.5rem;
    }
    .offer-progress {
        align-items: flex-start;
        flex-direction: column;
    }
    .offer-item {
        gap: 0.75rem;
    }
    .offer-item__img {
        width: 44px;
        height: 44px;
    }
    .offer-item__cta {
        display: none;
    }
}
