/* BASE SETUP */
:root {
    /* Dark Theme (Default) */
    --bg-base: #0B0E14;
    --bg-alt: #0A0C10;
    --bg-card: #11141A;
    --bg-footer: #050608;
    --text-main: #FFFFFF;
    --text-muted: #8A92A6;
    --brand-orange: #FF6B35;
    --brand-orange-hover: #FF8555;
    --card-bg: rgba(25, 28, 36, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: var(--border-light);
    --grid-color: var(--grid-color);
    --modal-bg: var(--modal-bg);
    --badge-bg: var(--badge-bg);
}

[data-theme="light"] {
    --bg-base: #F8FAFC; /* Very light gray/blue */
    --bg-alt: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-footer: #F1F5F9;
    --text-main: #0F172A; /* Dark slate */
    --text-muted: #64748B;
    --brand-orange: #F97316;
    --brand-orange-hover: #EA580C;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.05);
    --grid-color: rgba(0, 0, 0, 0.03);
    --modal-bg: rgba(255, 255, 255, 0.95);
    --badge-bg: rgba(0, 0, 0, 0.05);
}

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

body {
    background-color: var(--bg-base);
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px; /* Subtle grid pattern from screenshot */
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 14, 20, 0.85); /* Slightly transparent for blur */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="light"] .main-header {
    background: rgba(255, 255, 255, 0.9);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--brand-orange);
}

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

.action-btn {
    background: var(--badge-bg);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none; /* Hidden by default */
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 992px) {
    .header-nav { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Add padding to body so fixed header doesn't overlap content */
body {
    padding-top: 80px; 
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    max-width: 650px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    background: var(--badge-bg);
    border-radius: 100px;
    padding: 0.3rem 1rem 0.3rem 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-orange);
    margin-bottom: 2rem;
}
.badge-icon {
    background: var(--brand-orange);
    color: var(--text-main);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-right: 0.8rem;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.brand-color { color: var(--brand-orange); }
.brand-italic { font-style: italic; color: var(--brand-orange); font-weight: 400; }

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hero-description strong { color: #E0E4ED; font-weight: 600; }

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--brand-orange);
    color: var(--text-main);
}
.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}
.btn-secondary {
    background: var(--border-light);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.avatars {
    display: flex;
}
.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-base);
    margin-right: -10px;
}
.bg-orange { background: #FF6B35; }
.bg-blue { background: #3B82F6; }
.bg-purple { background: #8B5CF6; }
.bg-yellow { background: #FBBF24; }

.trust-info { display: flex; flex-direction: column; gap: 0.2rem; }
.stars { color: #FBBF24; font-size: 0.8rem; display: flex; align-items: center; gap: 0.2rem; }
.rating-num { color: var(--text-main); font-weight: 700; margin-left: 0.5rem; font-size: 0.9rem; }
.trust-text { color: var(--text-muted); font-size: 0.75rem; }

/* RIGHT IMAGE AREA */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    padding: 2rem 0; /* Add padding so cards have room */
}

.main-illustration {
    width: 100%;
    max-width: 550px; /* Slightly smaller to give room for cards */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    will-change: transform;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #14171D; /* Solid dark color from screenshot */
    border: 1px solid var(--badge-bg);
    border-radius: 14px;
    padding: 0.7rem 1.2rem 0.7rem 0.7rem; /* Asymmetric padding to match screenshot */
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 10;
    will-change: transform;
}
/* Adjusted desktop positions to overlap the edges exactly like mobile */
.card-top-left { top: 0%; left: -5%; }
.card-bottom-right { bottom: 5%; right: -5%; }

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--brand-orange); /* Solid orange like the screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    font-size: 1.4rem;
}
.card-text { display: flex; flex-direction: column; gap: 0.1rem; }
.card-text strong { font-size: 1rem; font-weight: 700; color: var(--text-main); letter-spacing: -0.02em; }
.card-text span { font-size: 0.8rem; color: #8A92A6; }

/* BOTTOM STATS BAR */
.stats-bar-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
}
.stats-bar {
    background: #11141D;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border-radius: 12px;
}
.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: var(--border-light);
}

.stat-icon {
    color: var(--brand-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-icon {
    opacity: 1;
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-num {
    color: var(--brand-orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.stat-item:hover .stat-label {
    color: var(--text-main);
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; padding-top: 2rem; gap: 2rem; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-description { max-width: 700px; }
    
    .stats-bar { flex-wrap: wrap; gap: 2rem; padding: 2rem; justify-content: center; }
    .stat-item { width: 30%; }
    .stat-divider { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero-description { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 0.8rem; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    .hero-image-wrapper { margin-top: 2rem; }
    .main-illustration { max-width: 90%; }
    
    /* Adjust floating cards so they fit nicely on mobile without needing transform: scale */
    .floating-card { padding: 0.5rem 0.8rem; gap: 0.6rem; border-radius: 8px; }
    .card-top-left { top: -5%; left: 0%; }
    .card-bottom-right { bottom: 0%; right: 0%; }
    
    .card-icon { width: 30px; height: 30px; font-size: 0.9rem; border-radius: 6px; }
    .card-text strong { font-size: 0.8rem; }
    .card-text span { font-size: 0.65rem; }
    
    .stats-bar { flex-direction: column; gap: 0.5rem; padding: 1.5rem; border-radius: 12px; }
    .stat-item { 
        width: 100%; 
        flex-direction: row; 
        justify-content: flex-start; 
        text-align: left; 
        align-items: center; 
        border-bottom: 1px solid var(--badge-bg); 
        padding: 1rem;
        border-radius: 12px;
    }
    .stat-item:last-child { border-bottom: none; }
    
    .stat-icon { margin-bottom: 0; font-size: 1.2rem; margin-right: 1.5rem; }
    .stat-num { font-size: 1.3rem; margin-bottom: 0; margin-right: auto; }
    .stat-label { font-size: 0.75rem; text-align: right; max-width: 120px; }
}

/* ==========================================
   SECTION 2: COVERAGE & DEVICES
   ========================================== */
.coverage-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.coverage-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Devices Grid */
.devices-header {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #4A5568;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.devices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 8rem;
}
.device-pill {
    background: #11141D;
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}
.device-pill:hover {
    background: #1A1D24;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

/* Coverage Content */
.coverage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coverage-badge {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
}
.coverage-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    box-shadow: 0 0 10px var(--brand-orange);
}

.coverage-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.coverage-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 4rem;
}
.coverage-description strong {
    color: var(--text-main);
}

/* Flags Row */
.flags-marquee-container {
    width: 100%;
    max-width: 800px; /* Constrained to match the paragraph width */
    margin: 0 auto 4rem; /* Centered */
    overflow: hidden;
    position: relative;
    /* Optional: Add gradient masks to the edges so it fades in/out smoothly */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.flags-row {
    display: flex;
    width: max-content;
    gap: 2rem; /* Adjusted gap to give more breathing room in the marquee */
    animation: scrollFlags 25s linear infinite;
    padding: 10px 0; /* padding to prevent hover cutoff */
}

.flags-row:hover {
    animation-play-state: paused;
}

@keyframes scrollFlags {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* -50% shifts exactly half the width (the first set of flags), minus half the gap */
}

.flag-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #1A1D24;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0; /* Ensure flags don't squish */
}
.flag-wrapper:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: var(--brand-orange);
    z-index: 2;
}
.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverage-footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
}
.coverage-footer-text strong {
    color: var(--text-main);
}

/* ==========================================
   SECTION 3: CONTENT SHOWCASE
   ========================================== */
.showcase-section {
    padding: 4rem 0;
    background: var(--bg-alt); /* Very dark background to match the theme */
    position: relative;
    z-index: 10;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-line span {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    /* Optional edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-wrapper.reverse .marquee-content {
    animation-direction: reverse;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: marqueeScroll 25s linear infinite;
    min-width: 100%;
    flex-shrink: 0;
}

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

.poster-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fixed width for marquee items */
    flex: 0 0 220px;
    aspect-ratio: 2/3;
}

@keyframes marqueeScroll {
    from { transform: translateX(calc(-100% - 1.5rem)); }
    to { transform: translateX(0); }
}

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

.poster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

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

/* Info Banner */
.showcase-banner {
    background: linear-gradient(145deg, #13161C 0%, #0D0F14 100%);
    border: 1px solid var(--badge-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Decorative subtle glow behind the banner */
.showcase-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: var(--brand-orange);
    filter: blur(100px);
    opacity: 0.05;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.leagues-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.league-logo {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.league-logo i {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.banner-text {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.satisfaction-text {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.streaming-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.stream-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    cursor: default;
}

.stream-logo.netflix { color: #E50914; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.stream-logo.bein { color: #5B2B82; font-style: italic; }
.stream-logo.appletv { color: var(--text-main); }
.stream-logo.prime { color: #00A8E1; font-weight: 600; }
.stream-logo.disney { color: #113CCF; font-family: cursive; font-weight: normal; }
.stream-logo.hulu { color: #1CE783; }

/* Responsive adjustments */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .satisfaction-text {
        font-size: 1.5rem;
    }
    .showcase-banner {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .leagues-logos {
        gap: 1rem;
        flex-direction: column;
    }
    .streaming-logos {
        gap: 1rem;
        flex-direction: column;
    }
}

/* ==========================================
   SECTION 4: PRICING
   ========================================== */
.pricing-section {
    padding: 4rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1rem 0;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* The Animated Glow Behind the Card */
.pricing-card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, #FF6B35, #FF2E93, #00C2FF, #FF6B35);
    background-size: 400% 400%;
    border-radius: 24px;
    filter: blur(25px);
    opacity: 0.15;
    transition: opacity 0.5s ease;
    animation: glowMove 8s linear infinite;
    z-index: 0;
}

.pricing-card-wrapper:hover .pricing-card-glow {
    opacity: 0.8;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.pricing-card {
    background: #11141D;
    border: 1px solid var(--badge-bg);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.pricing-card-wrapper:hover .pricing-card {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
}

.plan-popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF8555, #FF6B35);
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pricing-card-top {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--badge-bg);
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.plan-price .amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin: 0 0.5rem;
}

.plan-price .duration {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.95rem;
    color: #8A92A6;
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.feature-item i {
    color: var(--brand-orange);
    font-size: 1.1rem;
    background: rgba(255, 107, 53, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.feature-item strong {
    color: var(--text-main);
    font-weight: 700;
}

.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pricing-guarantee i {
    color: #10B981;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    width: 100%;
    max-width: 1000px; /* To fit beautifully inside the container */
    margin: 5rem auto 0 auto;
    padding-top: 4rem;
    border-top: 1px solid var(--badge-bg);
    text-align: center;
}

.how-title {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--badge-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--brand-orange);
    font-size: 1.8rem;
}

.step-icon .icon-divider {
    font-size: 1rem;
    margin: 0 0.5rem;
    color: rgba(255, 107, 53, 0.5);
    font-weight: 600;
}

.step-card h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.step-card p strong {
    color: var(--text-main);
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .how-it-works {
        margin: 3rem auto 0 auto;
        padding-top: 3rem;
        max-width: 450px; /* Match pricing card exactly */
    }
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-title { font-size: 2.2rem; }
    .pricing-section { padding: 4rem 0; }
    .pricing-card { padding: 2.5rem 1.5rem; }
    .plan-price .amount { font-size: 3.5rem; }
}

/* ==========================================
   ORDER MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content {
    background: #11141D;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--badge-bg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255, 107, 53, 0.1);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--brand-orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group select {
    background: #1A1D24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
    background: #1F222A;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem;
    }
}

/* ==========================================
   SECTION 5: TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: 4rem 0;
    background: transparent; /* Show the body grid */
    position: relative;
    border-top: 1px solid var(--border-light);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-badge {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10B981 !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.testimonial-badge .dot {
    background: #10B981 !important;
    box-shadow: 0 0 8px #10B981 !important;
}

.testimonials-title {
    color: var(--text-main);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.testimonials-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--badge-bg);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.stars {
    color: #FFB800; /* Gold */
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1; /* pushes author down */
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--badge-bg);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--brand-orange), #FF2E93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #10B981;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.author-info span::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-title {
        font-size: 2.2rem;
    }
}

/* ==========================================
   SECTION 6: FAQ
   ========================================== */
.faq-section {
    padding: 4rem 0;
    background: transparent; /* Show the body grid */
    position: relative;
    border-top: 1px solid var(--border-light);
}

.faq-container {
    max-width: 900px; /* Narrower for better reading */
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    background: rgba(255, 107, 53, 0.1) !important;
    color: var(--brand-orange) !important;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-title {
    color: var(--text-main);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.faq-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--badge-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-item.active {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.05);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--grid-color);
}

.faq-question h3 {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    padding-right: 2rem;
}

.faq-toggle {
    color: var(--brand-orange);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--brand-orange);
    color: var(--text-main);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.8rem 2rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer p strong {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    .faq-question {
        padding: 1.5rem;
    }
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ==========================================
   SECTION 7: FINAL CTA
   ========================================== */
.final-cta-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 46, 147, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-content {
    flex: 1;
    z-index: 2;
}

.cta-title {
    color: var(--text-main);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-mockup {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.cta-container:hover .cta-mockup {
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .cta-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    .cta-image-wrapper {
        justify-content: center;
        margin-top: 2rem;
    }
    .cta-mockup {
        width: 100%;
    }
    .cta-container:hover .cta-mockup {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--bg-footer);
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.footer-logo-img {
    display: block;
    margin: 0 auto;
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

.footer-desc {
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--badge-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--brand-orange);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================
   FLOATING ACTION BUTTON
   ========================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--brand-orange), #FF2E93);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    z-index: 99;
    opacity: 0;
    transform: translateX(100px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-btn.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    animation: floatingWobble 2.5s infinite 1s; /* Continuous wave */
}

.floating-btn.show:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    color: var(--text-main);
}

.floating-btn i {
    font-size: 1.2rem;
}

@keyframes floatingWobble {
    0%, 100% { transform: translateY(0) rotate(0); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4); }
    15% { transform: translateY(-6px) rotate(-4deg); box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6); }
    30% { transform: translateY(-2px) rotate(3deg); box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5); }
    45% { transform: translateY(-6px) rotate(-4deg); box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6); }
    60% { transform: translateY(0) rotate(0); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4); }
    80% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); } /* Pulse effect combined */
}

@media (max-width: 768px) {
    .floating-btn span {
        display: none; /* Hide text on mobile */
    }
    .floating-btn {
        bottom: 40px;
        right: 25px;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .floating-btn i {
        font-size: 1.6rem;
        margin: 0;
    }
}

.floating-btn-wa {
    position: fixed;
    bottom: 30px;
    left: 30px; /* LEFT SIDE */
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp Green */
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    opacity: 0;
    transform: translateX(-100px); /* Slide from left */
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-btn-wa.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    animation: waWobble 2.5s infinite 1.2s; /* Continuous wave (starts slightly after the right one) */
}

.floating-btn-wa.show:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: var(--text-main);
}

.floating-btn-wa i {
    font-size: 1.3rem;
}

@keyframes waWobble {
    0%, 100% { transform: translateY(0) rotate(0); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
    15% { transform: translateY(-6px) rotate(4deg); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6); }
    30% { transform: translateY(-2px) rotate(-3deg); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
    45% { transform: translateY(-6px) rotate(4deg); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6); }
    60% { transform: translateY(0) rotate(0); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
    80% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } /* Pulse effect */
}

@media (max-width: 768px) {
    .floating-btn-wa span {
        display: none; /* Hide text on mobile */
    }
    .floating-btn-wa {
        bottom: 40px;
        left: 25px;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .floating-btn-wa i {
        font-size: 1.8rem;
        margin: 0;
    }
}

/* ==========================================
   GOOGLE TRANSLATE OVERRIDES
   ========================================== */
#google_translate_element {
    display: none !important;
}
.goog-te-banner-frame.skiptranslate, .skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}
