/* ============================================== */
/* ULTRA-PROFESSIONAL FRONTEND - TheFinch Clone  */
/* Premium IPTV Hub - Pixel Perfect Design        */
/* ============================================== */

/* ============================================== */
/* CSS CUSTOM PROPERTIES (Design Tokens)          */
/* ============================================== */
:root {
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Colors */
    --color-bg: #FFFFFF;
    --color-text-primary: #000000;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;

    /* Accent Colors */
    --color-accent-blue: #005BFF;
    --color-accent-purple: #2A00CD;
    --color-accent-orange: #F97316;
    --color-accent-blue-light: #3B82F6;
    --color-accent-green: #10B981;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #005BFF -16.75%, #2A00CD 113.25%);
    --gradient-primary-hover: linear-gradient(90deg, #0066FF -16.75%, #3500E0 113.25%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);

    /* Shadows */
    --shadow-glow: 0 10px 40px rgba(0, 91, 255, 0.4);
    --shadow-glow-hover: 0 15px 50px rgba(0, 91, 255, 0.6);
    --shadow-navbar: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-card-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Geometry */
    --color-geometric: #E5E7EB;

    /* Spacing */
    --navbar-height: 72px;
    --section-padding: 120px;
}

/* ============================================== */
/* PRELOADER                                       */
/* ============================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.preloader-logo-img {
    width: 80px;
    height: auto;
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 2;
}

.preloader-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 91, 255, 0.1);
    border-top: 3px solid var(--color-accent-blue);
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

@keyframes spinnerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================== */
/* TELEGRAM LIVE SUPPORT BUTTON                   */
/* ============================================== */
.telegram-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #00a2e8 100%);
    padding: 14px 24px 14px 16px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.4);
    z-index: 9990;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    width: auto;
    max-width: none;
}

.telegram-support:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.5);
}

.telegram-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.telegram-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.telegram-support:hover .telegram-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

.telegram-content {
    display: flex;
    flex-direction: column;
}

.telegram-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.telegram-link {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.telegram-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: #EF4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: telegramPulse 2s ease-in-out infinite;
}

@keyframes telegramPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Telegram Tooltip on Hover */
.telegram-support::after {
    content: 'Hemen Mesaj Gönderin!';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1E1E2E;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.telegram-support::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent;
    border-top-color: #1E1E2E;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.telegram-support:hover::after,
.telegram-support:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ============================================== */
/* SOCIAL SUPPORT BUTTONS CONTAINER              */
/* ============================================== */
.social-support-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9990;
}

/* Move Telegram to left side */
.social-support-buttons .telegram-support {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    right: auto !important;
}

.social-support-buttons .whatsapp-support {
    position: relative;
    bottom: auto;
    right: auto;
}

/* ============================================== */
/* WHATSAPP LIVE SUPPORT BUTTON                  */
/* ============================================== */
.whatsapp-support {
    position: fixed;
    bottom: 100px;
    right: 30px;
    left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 14px 24px 14px 16px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 9990;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    width: auto;
    max-width: none;
}

.whatsapp-support:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.whatsapp-support:hover .whatsapp-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
}

.whatsapp-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.whatsapp-link {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: #EF4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* WhatsApp Tooltip on Hover */
.whatsapp-support::after {
    content: 'WhatsApp ile Yazın!';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1E1E2E;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-support::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent;
    border-top-color: #1E1E2E;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-support:hover::after,
.whatsapp-support:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile: Compact social buttons */
@media (max-width: 768px) {
    .social-support-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .whatsapp-support,
    .telegram-support {
        padding: 12px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .whatsapp-content,
    .telegram-content {
        display: none;
    }

    .whatsapp-icon,
    .telegram-icon {
        width: 28px;
        height: 28px;
        background: transparent;
    }

    .whatsapp-icon svg,
    .telegram-icon svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-pulse,
    .telegram-pulse {
        width: 10px;
        height: 10px;
        top: 2px;
        right: 2px;
    }

    .whatsapp-support::after,
    .whatsapp-support::before,
    .telegram-support::after,
    .telegram-support::before {
        display: none;
    }
}

/* ============================================== */
/* PREMIUM CONTENTS CAROUSEL                      */
/* ============================================== */
.premium-contents-section {
    padding: 80px 0;
    background: #0a0a0f;
}

.premium-contents-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.premium-contents-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-contents-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.premium-contents-title .title-highlight {
    font-weight: 700;
    color: #005BFF;
}

.premium-contents-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-nav-btn:hover {
    background: #005BFF;
    border-color: #005BFF;
    transform: scale(1.1);
}

.pc-nav-btn svg {
    width: 20px;
    height: 20px;
}

.pc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pc-view-all:hover {
    color: #005BFF;
}

.pc-view-all svg {
    width: 16px;
    height: 16px;
}

.premium-contents-main {
    overflow: hidden;
}

.pc-filter-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pc-filter-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.pc-filter-tab:hover,
.pc-filter-tab.active {
    color: #ffffff;
}

.pc-tab-divider {
    color: rgba(255, 255, 255, 0.2);
}

.pc-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.pc-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-poster-card {
    flex-shrink: 0;
    width: 160px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.pc-poster-card:hover {
    transform: translateY(-8px);
}

.pc-poster-card.is-featured .pc-poster-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #005BFF;
    border-radius: 12px;
    pointer-events: none;
}

.pc-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #005BFF;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}

.pc-poster-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
}

.pc-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.pc-poster-placeholder svg {
    width: 48px;
    height: 48px;
}

.pc-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.pc-poster-info {
    padding: 12px 4px 0;
}

.pc-poster-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pc-meta-year,
.pc-meta-category {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.pc-poster-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-poster-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-poster-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .premium-contents-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .premium-contents-header {
        text-align: center;
    }

    .premium-contents-nav {
        justify-content: center;
    }

    .pc-filter-tabs {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .premium-contents-title {
        font-size: 1.8rem;
    }

    .pc-poster-card {
        width: 130px;
    }
}

/* ============================================== */
/* WOW ANIMATIONS - KEYFRAMES                     */
/* ============================================== */

/* Gradient Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Glow Pulse */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
    }
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text Reveal */
@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* Slide Up Fade */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rotate Gradient */
@keyframes rotateGradient {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* Particle Float */
@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(10px, -20px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-5px, -40px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translate(15px, -20px) scale(1.05);
        opacity: 0.7;
    }
}

/* ============================================== */
/* GLOBAL FIXED VIDEO BACKGROUND                  */
/* ============================================== */
.global-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.global-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.7;
}

.global-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.6) 30%,
            rgba(255, 255, 255, 0.55) 70%,
            rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
}

/* Make ALL sections transparent to show video */
.features-section,
.pricing-section,
.testimonials-section,
.faq-section,
.sponsors-section {
    background: transparent !important;
}

/* Hide mobile swipe indicator on desktop */
.pricing-swipe-indicator,
.pricing-swipe-btn {
    display: none;
}

.features-section.has-video-bg,
.pricing-section.has-video-bg {
    background: transparent !important;
}

/* ============================================== */
/* APP DOWNLOAD SECTION                           */
/* ============================================== */

.app-download-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f0f0f8 0%, #e8e8f2 100%);
}

.app-download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.app-download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 91, 255, 0.2);
}

.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    flex-shrink: 0;
    color: #8e8e9a;
    overflow: hidden;
}

.app-icon svg {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    flex-shrink: 0;
}

.app-icon-android {
    color: #8e8e9a;
}

.app-icon-windows {
    color: #8e8e9a;
}

.app-icon-webtv {
    color: #8e8e9a;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.app-action {
    font-size: 13px;
    color: #6b7280;
}

/* App Download Mobile Responsive */
@media (max-width: 991px) {
    .app-download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .app-download-card {
        padding: 16px;
        gap: 12px;
    }

    .app-icon svg {
        width: 28px;
        height: 28px;
    }

    .app-name {
        font-size: 14px;
    }

    .app-action {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .app-download-section {
        padding: 24px 0;
    }

    .app-download-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .app-download-card {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 8px;
    }

    .app-icon {
        width: 36px;
        height: 36px;
    }

    .app-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================== */
/* PRICING ORIGINAL PRICE (Strikethrough Badge)   */
/* ============================================== */

.original-price {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    text-decoration-thickness: 2px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 10;
    animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }
}

.pricing-header {
    position: relative;
}

.pricing-card-popular .original-price {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    animation: discountPulsePopular 2s ease-in-out infinite;
}

@keyframes discountPulsePopular {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    }
}

/* ============================================== */
/* PRICING CAROUSEL NAVIGATION                    */
/* ============================================== */

.pricing-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-carousel-track {
    overflow: hidden;
    flex: 1;
}

.pricing-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 40px;
    grid-template-columns: unset !important;
}

.pricing-grid::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.pricing-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0, 91, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-nav-btn:hover {
    background: linear-gradient(135deg, #005BFF 0%, #0047CC 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 91, 255, 0.3);
}

.pricing-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #005BFF;
    transition: stroke 0.3s ease;
}

.pricing-nav-btn:hover svg {
    stroke: #fff;
}

/* Mobile: smaller nav buttons */
@media (max-width: 768px) {
    .pricing-nav-btn {
        width: 36px;
        height: 36px;
        background: #fff;
        border: 2px solid #e5e7eb;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 20;
    }

    .pricing-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .pricing-card {
        flex: 0 0 260px;
    }

    .pricing-carousel-wrapper {
        gap: 8px;
    }
}

/* ============================================== */
/* WOW EFFECTS - UTILITY CLASSES                  */
/* ============================================== */

/* Shimmer Effect for CTAs */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-shimmer);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    pointer-events: none;
}

/* Glow Pulse Effect */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

/* 3D Card Tilt Container */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
}

/* Text Gradient Animation */
.animated-gradient-text {
    background: linear-gradient(90deg, #005BFF, #8B5CF6, #F97316, #005BFF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotateGradient 8s ease-in-out infinite;
}

/* Floating Element */
.floating {
    animation: float 6s ease-in-out infinite;
}

/* Magnetic Hover Effect Container */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Header Logo Image */
.header-logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Logo visibility based on navbar scroll state */
/* Default state (top of page - light background): show dark logo */
.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

/* Scrolled state (dark background): show light logo */
.navbar.scrolled .logo-dark {
    display: none;
}

.navbar.scrolled .logo-light {
    display: block;
}

/* ============================================== */
/* RESET & BASE                                   */
/* ============================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

/* ============================================== */
/* FLOATING PILL NAVBAR                           */
/* Two-State: Wide Transparent → Compact Black    */
/* Animation: Right-to-left (scaleX approach)     */
/* ============================================== */

/* Base Navbar - Wide State (Initial - Full Width) */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 32px;
    background: transparent;
    border-radius: 30px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled State - Compact Black Pill */
.navbar.navbar-scrolled .navbar-container {
    max-width: 1100px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    box-shadow: var(--shadow-navbar);
    gap: 24px;
}

/* Logo - Changes color based on state */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-primary);
    /* Black initially */
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.navbar.navbar-scrolled .navbar-logo {
    color: white;
    /* White when scrolled */
}

.navbar-logo svg {
    width: 36px;
    height: 36px;
    transition: all 0.4s ease;
}

.logo-text {
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--color-accent-blue);
}

/* Nav Links - Black initially, white when scrolled */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--color-text-secondary);
    /* Gray initially */
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-text-primary);
    /* Black on hover initially */
}

/* Nav Links - Scrolled State (White) */
.navbar.navbar-scrolled .nav-links li a {
    color: rgba(255, 255, 255, 0.75);
}

.navbar.navbar-scrolled .nav-links li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Logo SVG fill color change on scroll */
.navbar-logo svg path,
.navbar-logo svg rect {
    fill: currentColor;
    transition: fill 0.4s ease;
}

/* Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mini icons - hidden initially, shown when scrolled */
.mini-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.navbar-scrolled .mini-icons {
    opacity: 1;
}

.mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mini-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-yt {
    background: #FF0000 !important;
}

.social-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

/* Inquiry Button */
.btn-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-inquiry:hover {
    background: var(--gradient-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Panel Button - Outline Style */
.btn-panel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: transparent;
    color: var(--color-text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--color-accent-blue);
    border-radius: 9999px;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.btn-panel:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Scrolled state - panel button white border */
.navbar.navbar-scrolled .btn-panel {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.navbar-scrolled .btn-panel:hover {
    border-color: transparent;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================== */
/* HERO SECTION                                   */
/* ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

/* Background Video (TheFinch-style) */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

/* Geometric Background */
.geometric-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.arc {
    position: absolute;
    opacity: 0.7;
}

/* Flowing Arc Animations */
@keyframes arcFloat1 {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-52%) rotate(2deg) scale(1.02);
    }

    50% {
        transform: translateY(-48%) rotate(0deg) scale(1.01);
    }

    75% {
        transform: translateY(-51%) rotate(-2deg) scale(0.99);
    }
}

@keyframes arcFloat2 {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    33% {
        transform: translateY(-53%) rotate(3deg);
    }

    66% {
        transform: translateY(-47%) rotate(-2deg);
    }
}

@keyframes arcFloat3 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-52%) translateX(10px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 0px rgba(249, 115, 22, 0));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.arc-large {
    width: 800px;
    height: 800px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    animation: arcFloat1 12s ease-in-out infinite;
}

.arc-medium {
    width: 600px;
    height: 600px;
    right: -150px;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0.5;
    animation: arcFloat2 10s ease-in-out infinite;
    animation-delay: -2s;
}

.arc-small {
    width: 450px;
    height: 450px;
    right: -50px;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0.4;
    animation: arcFloat3 8s ease-in-out infinite;
    animation-delay: -4s;
}

.arc-accent-orange {
    width: 180px;
    height: 180px;
    right: 5%;
    bottom: 10%;
    opacity: 0.8;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Accent Dots */
.accent-dot {
    position: absolute;
    border-radius: 50%;
    transition: transform 0.5s ease-out;
}

.accent-dot-blue {
    width: 10px;
    height: 10px;
    background: var(--color-accent-blue);
    left: 12%;
    top: 22%;
}

.accent-dot-blue-2 {
    width: 6px;
    height: 6px;
    background: var(--color-accent-blue-light);
    left: 8%;
    top: 45%;
    opacity: 0.7;
}

.accent-dot-orange {
    width: 8px;
    height: 8px;
    background: var(--color-accent-orange);
    right: 18%;
    bottom: 25%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Headline */
.headline {
    margin-bottom: 24px;
}

.headline-light {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
}

.headline-bold {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    color: var(--color-text-primary);
    letter-spacing: -0.04em;
    margin-top: 8px;
}

/* Subtitle */
.subtitle {
    max-width: 680px;
    margin: 0 auto 56px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* Stat Item */
.stat-item {
    position: relative;
}

.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--color-geometric);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    border-color: var(--color-accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 91, 255, 0.1);
}

/* Stat Icon */
.stat-icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-blue);
    border-radius: 50%;
    color: white;
}

.stat-icon svg {
    width: 12px;
    height: 12px;
}

.stat-icon-star {
    background: var(--color-accent-blue);
}

.stat-icon-drop {
    background: var(--color-accent-blue-light);
}

.stat-icon-check {
    background: var(--color-accent-blue);
}

/* Stat Number & Label */
.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    margin-top: 8px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    margin-left: 16px;
}

.cta-button:hover {
    background: var(--gradient-primary-hover);
    box-shadow: var(--shadow-glow-hover);
    transform: translateY(-3px) scale(1.02);
}

/* ============================================== */
/* CORNER ELEMENTS                                */
/* ============================================== */

/* Date/Time - Bottom Left */
.corner-datetime {
    position: absolute;
    bottom: 32px;
    left: 32px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.datetime-date {
    font-weight: 500;
    color: var(--color-text-primary);
}

.datetime-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.datetime-location::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent-blue);
    border-radius: 50%;
}

/* Clutch Badge - Bottom Right */
.clutch-badge {
    position: absolute;
    bottom: 32px;
    right: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.clutch-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.clutch-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.clutch-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.clutch-stars {
    color: #FF3D2E;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.clutch-reviews {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ================================================== */
/* SPONSORS MARQUEE SECTION                            */
/* ================================================== */
.sponsors-section {
    padding: 24px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.sponsors-title {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.sponsors-marquee {
    overflow: hidden;
    position: relative;
}

.sponsors-marquee::before,
.sponsors-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.sponsors-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), transparent);
}

.sponsors-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), transparent);
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: sponsorScroll 40s linear infinite;
    width: fit-content;
}

.sponsor-logo {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
}

.sponsor-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%);
}

@keyframes sponsorScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Social Icons - Bottom Right Corner */
.social-icons {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-text-primary);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--color-accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 91, 255, 0.3);
}

/* Nominee Badge - Right Edge */
.nominee-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    background: var(--color-text-primary);
    color: white;
    border-radius: 8px 0 0 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.nominee-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nominee-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ============================================== */
/* SECTION VIDEO BACKGROUND                       */
/* ============================================== */
.has-video-bg {
    position: relative;
    overflow: hidden;
}

.section-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.15;
}

.section-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

/* Ensure content is above video */
.has-video-bg .container,
.has-video-bg .section-header,
.has-video-bg .features-grid,
.has-video-bg .feature-highlights,
.has-video-bg .pricing-grid {
    position: relative;
    z-index: 1;
}

/* Dark overlay variant for dark sections */
.has-video-bg.dark-bg .section-video-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* Enhanced video visibility */
.features-section .section-video {
    opacity: 0.12;
}

.pricing-section .section-video {
    opacity: 0.1;
}

/* ============================================== */
/* PLACEHOLDER SECTION                            */
/* ============================================== */
.section-placeholder {
    padding: 120px 24px;
    background: #F9FAFB;
    text-align: center;
}

.section-placeholder h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-placeholder p {
    color: var(--color-text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================== */
/* SHARED SECTION STYLES                          */
/* ============================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================== */
/* FEATURES SECTION                               */
/* ============================================== */
.features-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 91, 255, 0.1);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 91, 255, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 91, 255, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 91, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 91, 255, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    box-shadow: 0 10px 30px rgba(0, 91, 255, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(0, 91, 255, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 91, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 91, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 91, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 91, 255, 0.15);
}

.highlight-icon {
    font-size: 1.75rem;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ============================================== */
/* STATS FORMULA SECTION (TheFinch Style)        */
/* ============================================== */
.stats-formula-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.stats-formula-header {
    margin-bottom: 60px;
}

.stats-formula-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
}

.stats-formula-title .title-light {
    display: block;
    font-weight: 300;
    color: var(--color-text-primary);
}

.stats-formula-title .title-bold {
    display: block;
    font-weight: 900;
    font-style: italic;
    color: var(--color-text-primary);
}

.stats-formula-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stats-formula-grid>.stat-formula-card:nth-child(1),
.stats-formula-grid>.stat-formula-card:nth-child(2) {
    grid-column: span 1;
}

.stat-formula-card {
    background: #FAFBFC;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-formula-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 91, 255, 0.1);
}

.stat-3d-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
}

/* 3D Sphere Cluster Icon */
.icon-blue-spheres {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px;
}

.icon-blue-spheres .sphere {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #005BFF 0%, #3B82F6 100%);
    border-radius: 50%;
    box-shadow: inset -3px -3px 6px rgba(0, 0, 0, 0.2), inset 3px 3px 6px rgba(255, 255, 255, 0.3);
}

/* 3D Cube Icon */
.icon-blue-cubes {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    padding: 10px;
}

.icon-blue-cubes .cube {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    border-radius: 4px;
    transform: rotate(15deg);
    box-shadow: 4px 4px 8px rgba(0, 91, 255, 0.3);
}

.icon-blue-cubes .c2 {
    transform: rotate(-10deg) translateY(-8px);
}

.icon-blue-cubes .c3 {
    transform: rotate(5deg) translateY(-16px);
}

/* 3D Diamond Icon */
.icon-blue-diamond .diamond {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 6px 6px 16px rgba(0, 91, 255, 0.4);
    margin: 15px;
}

/* 3D Ring Icon */
.icon-blue-ring .ring {
    width: 60px;
    height: 60px;
    border: 12px solid;
    border-color: #005BFF #3B82F6 #60A5FA #93C5FD;
    border-radius: 50%;
    margin: 10px;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 3D Torus Icon */
.icon-blue-torus .torus {
    width: 55px;
    height: 55px;
    background: conic-gradient(from 0deg, #005BFF, #3B82F6, #60A5FA, #3B82F6, #005BFF);
    border-radius: 50%;
    position: relative;
    margin: 12px;
}

.icon-blue-torus .torus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: #FAFBFC;
    border-radius: 50%;
}

/* 3D Prism Icon */
.icon-blue-prism .prism {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #93C5FD 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    margin: 15px;
    box-shadow: 4px 4px 12px rgba(0, 91, 255, 0.3);
}

.stat-formula-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.stat-formula-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-formula-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.stat-formula-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Team Bar */
.stats-team-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAFBFC;
    border-radius: 20px;
    padding: 32px 40px;
    gap: 40px;
}

.team-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.team-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.team-avatars {
    display: flex;
    margin-left: 16px;
}

.team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: -8px;
    border: 3px solid #FAFBFC;
    transition: transform 0.3s ease;
}

.team-avatar:first-child {
    margin-left: 0;
}

.team-avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.team-bar-desc {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: right;
}

/* ============================================== */
/* DARK CTA SECTION (TheFinch Style)             */
/* ============================================== */
.dark-cta-section {
    background: #0A0A0F;
    padding: 0 0 100px;
    overflow: hidden;
    position: relative;
}

/* Marquee Container */
.marquee-container {
    padding: 60px 0;
    overflow: hidden;
    opacity: 0.15;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-text {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 200;
    color: white;
    font-style: italic;
}

.marquee-dash {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 200;
    color: white;
}

/* Dark CTA Content */
.dark-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dark-cta-left {
    padding-right: 40px;
}

.dark-cta-title {
    margin-bottom: 40px;
}

.dark-cta-title .title-light {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    color: #888;
}

.dark-cta-title .title-italic {
    display: block;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    font-style: italic;
    color: white;
}

.dark-cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.dark-feature {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.dark-feature strong {
    color: white;
}

.dark-cta-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #005BFF, #3B82F6);
    margin: 32px 0;
}

.dark-cta-conclusion {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    font-style: italic;
}

.dark-cta-conclusion strong {
    color: #3B82F6;
}

/* Dark Service Cards */
.dark-cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dark-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    border-radius: 20px;
    padding: 28px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dark-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dark-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.dark-service-card:hover::before {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.service-card-btn {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: white;
    color: #1E3A8A;
}

.service-card-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
}

/* 3D Icons for Service Cards */
.icon-3d {
    width: 80px;
    height: 80px;
    position: relative;
}

.diamond-icon {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
    border-radius: 8px;
    margin: 15px;
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.4);
}

.cube-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-radius: 10px;
    margin: 17px;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.sphere-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px;
}

.sphere-icon::before,
.sphere-icon::after {
    content: '';
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 100%);
    border-radius: 50%;
    box-shadow: inset -4px -4px 8px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(96, 165, 250, 0.3);
}

/* ============================================== */
/* PRICING SECTION                                */
/* ============================================== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card-popular {
    border: 2px solid var(--color-accent-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.pricing-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-blue);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--color-text-primary);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--color-text-primary);
    color: white;
}

.pricing-cta-popular {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.pricing-cta-popular:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ============================================== */
/* TESTIMONIALS SECTION                           */
/* ============================================== */
.testimonials-section {
    padding: 100px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.testimonial-duration {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
    color: white;
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================== */
/* FAQ SECTION                                    */
/* ============================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent-blue);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================== */
/* SCROLL ANIMATIONS                              */
/* ============================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grids */
.features-grid .feature-card:nth-child(1) {
    transition-delay: 0s;
}

.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(4) {
    transition-delay: 0.3s;
}

.pricing-grid .pricing-card:nth-child(1) {
    transition-delay: 0s;
}

.pricing-grid .pricing-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pricing-grid .pricing-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pricing-grid .pricing-card:nth-child(4) {
    transition-delay: 0.3s;
}

.faq-list .faq-item:nth-child(1) {
    transition-delay: 0s;
}

.faq-list .faq-item:nth-child(2) {
    transition-delay: 0.05s;
}

.faq-list .faq-item:nth-child(3) {
    transition-delay: 0.1s;
}

.faq-list .faq-item:nth-child(4) {
    transition-delay: 0.15s;
}

.faq-list .faq-item:nth-child(5) {
    transition-delay: 0.2s;
}

.faq-list .faq-item:nth-child(6) {
    transition-delay: 0.25s;
}

.faq-list .faq-item:nth-child(7) {
    transition-delay: 0.3s;
}

.faq-list .faq-item:nth-child(8) {
    transition-delay: 0.35s;
}

/* ============================================== */
/* RESPONSIVE - FEATURES, PRICING, TESTIMONIALS, FAQ */
/* ============================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {

    .features-section,
    .pricing-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-highlights {
        gap: 20px;
        padding: 24px;
    }

    .highlight-item {
        flex: 0 0 calc(50% - 10px);
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        flex: none;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }
}


/* ============================================== */
/* SPONSORS MARQUEE SECTION                       */
/* ============================================== */
.sponsors-section {
    padding: 48px 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sponsors-title {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.sponsors-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-logo {
    flex-shrink: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo svg {
    height: 40px;
    width: auto;
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sponsors-section {
        padding: 32px 0;
    }

    .sponsors-title {
        font-size: 0.6rem;
        margin-bottom: 24px;
    }

    .sponsors-track {
        gap: 40px;
        animation-duration: 25s;
    }

    .sponsor-logo {
        height: 32px;
    }

    .sponsor-logo svg {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .sponsors-track {
        gap: 30px;
        animation-duration: 20s;
    }

    .sponsor-logo {
        height: 28px;
    }

    .sponsor-logo svg {
        height: 28px;
    }
}


/* ============================================== */
/* FOOTER                                         */
/* ============================================== */
.footer {
    background: #000000;
    color: white;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Footer Hero Section */
.footer-hero {
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
}

.footer-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 40px;
}

.footer-headline-light {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: white;
    letter-spacing: -0.02em;
}

.footer-headline-italic {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    font-style: italic;
    color: white;
    letter-spacing: -0.02em;
}

/* 3D Geometric Shape / Animated Logo */
.footer-3d-shape {
    width: 120px;
    height: 100px;
    animation: float3D 4s ease-in-out infinite;
}

.footer-3d-shape svg {
    width: 100%;
    height: 100%;
}

/* Animated Footer Logo */
.footer-logo-animated {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-10px) rotateY(5deg);
    }
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8));
    }
}

/* Footer CTA */
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-cta-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.footer-cta-button svg {
    width: 14px;
    height: 14px;
}

/* Footer Links Section */
.footer-links-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-column-title-secondary {
    margin-top: 24px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list li a {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer-link-list li a:hover {
    color: var(--color-accent-blue);
}

/* Footer CTA Links */
.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.footer-cta-link:hover {
    border-color: var(--color-accent-blue);
    color: var(--color-accent-blue);
}

.footer-cta-link svg {
    width: 12px;
    height: 12px;
}

/* Badges Section */
.footer-badges-section {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-badge {
    flex-shrink: 0;
}

.badge-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.badge-icon:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.badge-label {
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-top: 4px;
}

.badge-stars {
    color: #FFD700;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.badge-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-top: 4px;
}

.badge-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-top: 4px;
}

.badge-topfirm {
    border-color: #C9A050;
}

.badge-topfirm .badge-label,
.badge-topfirm .badge-year {
    color: #C9A050;
}

/* Contact Section */
.footer-contact-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent-blue);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 0.85rem;
    font-weight: 400;
    color: white;
    line-height: 1.6;
}

.contact-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-link:hover {
    color: var(--color-accent-blue);
}

.contact-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Bottom Bar */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-link {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal-link:hover {
    color: white;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--color-accent-blue);
    color: white;
}

.footer-social-icon svg {
    width: 14px;
    height: 14px;
}

.footer-back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-back-to-top:hover {
    color: white;
}

.footer-back-to-top svg {
    width: 14px;
    height: 14px;
}

/* Large Brand Name */
.footer-brand {
    position: relative;
    padding: 60px 0 40px;
    text-align: center;
    overflow: hidden;
}

.footer-brand-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #1a3ab3 0%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
}

.footer-brand-text {
    position: relative;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    letter-spacing: -0.04em;
    line-height: 1;
}

.footer-brand-dot {
    color: var(--color-accent-blue);
    -webkit-text-stroke: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-hero {
        padding: 60px 24px 40px;
    }

    .footer-hero-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-3d-shape {
        order: -1;
    }

    .footer-links-section {
        padding: 40px 0;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-badges {
        gap: 16px;
    }

    .badge-icon {
        width: 80px;
        height: 65px;
        padding: 8px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
    }

    .footer-brand-text {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        flex-direction: column;
    }

    .badge-icon {
        width: 100%;
        max-width: 200px;
    }
}

/* ============================================== */
/* RESPONSIVE DESIGN                              */
/* ============================================== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar-container {
        gap: 20px;
        padding: 10px 14px 10px 16px;
    }

    .nav-links li a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .mini-icons {
        display: none;
    }

    .arc-large {
        width: 600px;
        height: 600px;
        right: -250px;
    }

    .arc-medium {
        width: 450px;
        height: 450px;
    }

    .clutch-badge {
        right: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        top: 16px;
        left: 16px;
        right: 16px;
        transform: none;
    }

    .navbar-container {
        justify-content: space-between;
        padding: 10px 16px;
    }

    .nav-links,
    .navbar-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 100px;
        min-height: auto;
    }

    .headline-light,
    .headline-bold {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 32px;
    }

    .stats-row {
        gap: 16px;
    }

    .stat-circle {
        width: 85px;
        height: 85px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .cta-button {
        width: 100%;
        margin: 16px 0 0 0;
        padding: 16px 32px;
    }

    .corner-datetime,
    .clutch-badge,
    .nominee-badge {
        display: none;
    }

    .social-icons {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 40px;
    }

    .geometric-container {
        opacity: 0.4;
    }

    .arc-large,
    .arc-medium {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .headline-light,
    .headline-bold {
        font-size: 2rem;
    }

    .stat-circle {
        width: 75px;
        height: 75px;
    }

    .stat-icon {
        width: 18px;
        height: 18px;
        top: -8px;
    }

    .stat-icon svg {
        width: 10px;
        height: 10px;
    }
}

/* ============================================== */
/* ANIMATIONS - Initial States                    */
/* ============================================== */
.headline-light,
.headline-bold {
    opacity: 0;
    transform: translateY(60px);
}

.subtitle {
    opacity: 0;
    transform: translateY(40px);
}

.stat-item {
    opacity: 0;
    transform: translateY(40px);
}

.cta-button {
    opacity: 0;
    transform: scale(0.8);
}

.corner-datetime,
.clutch-badge,
.social-icons,
.nominee-badge {
    opacity: 0;
}

/* Animation Active States */
.animate-in .headline-light,
.animate-in .headline-bold {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .subtitle {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .cta-button {
    opacity: 1;
    transform: scale(1);
}

.animate-in .corner-datetime,
.animate-in .clutch-badge,
.animate-in .social-icons,
.animate-in .nominee-badge {
    opacity: 1;
}

/* ============================================== */
/* CHANNEL SHOWCASE SECTION                       */
/* ============================================== */
.channel-showcase-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.channel-header {
    margin-bottom: 48px;
}

.channel-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.channel-number {
    color: #00CED1;
    font-weight: 700;
}

.channel-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.channel-countries {
    color: #00CED1;
    font-weight: 500;
}

/* Country Flags (Text Codes) */
.channel-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.flag-code {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flag-code:hover {
    color: var(--color-accent-blue);
    transform: translateY(-3px);
}

.flags-image {
    max-width: 400px;
    height: auto;
}

/* ============================================== */
/* GERMANY PREMIUM BANNER                        */
/* ============================================== */
.gp-banner-section {
    background: linear-gradient(180deg, #0a0a1a 0%, #0d1020 50%, #0a0a1a 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-banner-section .footer-brand-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 91, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.footer-brand-text {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 200;
    font-family: var(--font-primary);
    color: transparent;
    -webkit-text-stroke: 2px rgba(100, 130, 180, 0.6);
    letter-spacing: -0.02em;
    text-transform: lowercase;
    position: relative;
    z-index: 1;
}

.footer-brand-dot {
    color: var(--color-accent-blue);
    -webkit-text-stroke: 0;
    font-weight: 700;
}

/* Channel Image Style */
.channel-img {
    max-width: 80%;
    max-height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.channel-card:hover .channel-img {
    transform: scale(1.1);
}

/* Channel Grid */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.channel-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 91, 255, 0.15);
    border-color: var(--color-accent-blue);
}

.channel-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-primary);
}

/* Channel Logo Color Variants */
.channel-logo.green {
    color: #10B981;
}

.channel-logo.red {
    color: #EF4444;
}

.channel-logo.blue {
    color: #3B82F6;
}

.channel-logo.orange {
    color: #F97316;
}

.channel-logo.pink {
    color: #EC4899;
}

.channel-logo.yellow {
    color: #F59E0B;
}

.channel-logo.disney {
    color: #1E40AF;
    font-style: italic;
}

.channel-logo.wwe {
    color: #DC2626;
    font-weight: 900;
}

.channel-logo.fun {
    background: linear-gradient(135deg, #F59E0B, #EF4444, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.channel-logo.smart {
    color: #10B981;
    font-weight: 600;
}

.channel-logo.crime {
    color: #DC2626;
}

/* Inline color spans */
.channel-logo .hd-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    font-size: 0.5rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.channel-logo .sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.channel-logo .orange {
    color: #F97316;
}

.channel-logo .blue {
    color: #3B82F6;
}

.channel-logo .smart {
    color: #10B981;
}

.channel-logo .crime {
    color: #DC2626;
}

.channel-logo .fun {
    color: #22C55E;
}

/* Footer */
.channel-footer {
    text-align: right;
    padding-right: 20px;
}

.channel-more {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: #00CED1;
    font-family: 'Georgia', serif;
}

/* Stats Formula Grid - Center last row */
.stats-formula-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.stat-formula-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
}

@media (max-width: 1024px) {
    .stat-formula-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .stat-formula-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .channel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flag-item {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================== */
/* COMPREHENSIVE MOBILE RESPONSIVE STYLES         */
/* ============================================== */

/* ==================== NAVBAR MOBILE ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .mobile-menu-btn span {
    background: white;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white !important;
        font-size: 1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-right {
        display: none;
    }

    .nav-links.active~.navbar-right,
    .navbar-right.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 40px;
        left: 32px;
        right: 32px;
        z-index: 1001;
        gap: 12px;
    }

    .navbar-right .btn-inquiry,
    .navbar-right .btn-panel {
        width: 100%;
        text-align: center;
    }

    .navbar-container {
        padding: 12px 16px;
    }

    .header-logo-img {
        height: 32px;
    }

    .mini-icons {
        display: none;
    }
}

/* ==================== HERO SECTION MOBILE ==================== */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 140px 24px 80px;
    }

    .headline-light,
    .headline-bold {
        font-size: clamp(2rem, 8vw, 5rem) !important;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .stats-row {
        gap: 16px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .headline-light,
    .headline-bold {
        font-size: clamp(1.75rem, 7vw, 3.5rem) !important;
    }

    .headline-bold {
        margin-top: 4px;
    }

    .subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-circle {
        width: 85px;
        height: 85px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 0.85rem;
    }

    .geometric-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 50px;
    }

    .headline-light,
    .headline-bold {
        font-size: clamp(1.5rem, 9vw, 2.5rem) !important;
    }

    .stat-circle {
        width: 75px;
        height: 75px;
    }

    .stat-icon {
        width: 18px;
        height: 18px;
        top: -8px;
    }

    .stat-number {
        font-size: 0.9rem;
    }
}

/* ==================== SPONSORS SECTION MOBILE ==================== */
@media (max-width: 768px) {
    .sponsors-section {
        padding: 16px 0;
    }

    .sponsors-title {
        font-size: 0.6rem;
        margin-bottom: 12px;
    }

    .sponsor-logo img {
        height: 22px;
    }

    .sponsors-track {
        gap: 24px;
    }
}

/* ==================== FEATURES SECTION MOBILE ==================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 50px 16px;
    }

    .section-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ==================== STATS FORMULA SECTION MOBILE ==================== */
@media (max-width: 768px) {
    .stats-formula-section {
        padding: 60px 20px;
    }

    .formula-title {
        font-size: 1.75rem;
    }

    .formula-subtitle {
        font-size: 2rem;
    }

    .stat-formula-card {
        padding: 20px;
    }
}

/* ==================== PRICING SECTION MOBILE ==================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-grid {
        /* Old grid layout - disabled for horizontal scroll */
        /* grid-template-columns: 1fr; */
        /* gap: 20px; */
        /* max-width: 400px; */
        /* margin: 0 auto; */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .pricing-cta {
        padding: 14px 24px;
    }
}

/* ==================== TESTIMONIALS SECTION MOBILE ==================== */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials-track {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonials-nav {
        margin-top: 20px;
    }
}

/* ==================== FAQ SECTION MOBILE ==================== */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 20px 20px;
    }
}

/* ==================== FOOTER MOBILE ==================== */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-hero {
        padding: 50px 20px 40px;
    }

    .footer-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-headline-light,
    .footer-headline-italic {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .footer-3d-shape {
        order: -1;
        width: 80px;
        height: 70px;
    }

    .footer-logo-animated {
        width: 80px;
    }

    .footer-cta {
        gap: 16px;
    }

    .footer-cta-text {
        font-size: 0.9rem;
    }

    .footer-cta-button {
        padding: 12px 24px;
        font-size: 0.7rem;
    }

    .footer-links-section {
        padding: 40px 20px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-link-list li a {
        font-size: 0.8rem;
    }

    .footer-badges-section {
        padding: 32px 20px;
    }

    .footer-badges {
        flex-wrap: wrap;
        gap: 16px;
    }

    .badge-icon {
        width: 85px;
        height: 70px;
        padding: 10px;
    }

    .badge-label {
        font-size: 0.5rem;
    }

    .badge-value,
    .badge-name {
        font-size: 0.75rem;
    }

    .footer-contact-section {
        padding: 32px 20px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-badges {
        gap: 12px;
    }

    .badge-icon {
        width: 75px;
        height: 60px;
    }

    .footer-brand-text {
        font-size: clamp(2.5rem, 12vw, 6rem);
    }
}

/* ==================== GP BANNER SECTION MOBILE ==================== */
@media (max-width: 768px) {
    .gp-banner-section {
        padding: 30px 0;
    }

    .gp-banner-text,
    .footer-brand-text {
        font-size: clamp(2rem, 10vw, 5rem);
    }
}

/* ==================== CHANNEL SHOWCASE MOBILE ==================== */
@media (max-width: 768px) {
    .channel-showcase-section {
        padding: 40px 16px;
    }

    .channel-card {
        padding: 10px;
    }

    .channel-img {
        height: 32px;
    }

    .channel-name {
        font-size: 0.65rem;
    }

    .flags-image {
        max-width: 100%;
    }
}

/* ==================== TELEGRAM SUPPORT MOBILE ==================== */
@media (max-width: 768px) {
    .telegram-support {
        bottom: 16px;
        right: 16px;
        padding: 10px 14px;
    }

    .telegram-icon {
        width: 28px;
        height: 28px;
    }

    .telegram-content {
        display: none;
    }
}

/* ==================== PRELOADER MOBILE ==================== */
@media (max-width: 480px) {
    .preloader-logo-wrapper {
        width: 100px;
        height: 100px;
    }

    .preloader-logo-img {
        width: 60px;
    }
}

/* ==================== GLOBAL UTILITY MOBILE ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-padding {
        padding: 60px 20px;
    }
}

/* ============================================== */
/* TELEGRAM SUPPORT BUTTON - BASE STYLES         */
/* ============================================== */
.telegram-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0088cc, #00a0dc);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 136, 204, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.telegram-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.5);
}

.telegram-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.telegram-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.telegram-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.telegram-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.telegram-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.telegram-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(0, 136, 204, 0.3);
    animation: telegramPulse 2s infinite;
    z-index: -1;
}

@keyframes telegramPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Telegram Mobile */
@media (max-width: 768px) {
    .telegram-support {
        bottom: 16px !important;
        right: 16px !important;
        left: auto !important;
        padding: 0 !important;
        border-radius: 50% !important;
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .telegram-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .telegram-content {
        display: none !important;
    }

    .telegram-pulse {
        border-radius: 50% !important;
    }
}

/* ============================================== */
/* MOBILE MENU BUTTON - BASE STYLES              */
/* ============================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .mobile-menu-btn {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.navbar-scrolled .mobile-menu-btn span {
    background: white;
}

/* Hamburger to X Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Visibility */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column !important;
        padding: 100px 32px 40px !important;
        gap: 0 !important;
        transition: right 0.4s ease !important;
        z-index: 10000 !important;
        list-style: none !important;
        margin: 0 !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-links li a {
        display: block !important;
        color: white !important;
        font-size: 1.1rem;
        padding: 18px 0;
        text-decoration: none;
        font-weight: 500;
    }

    .navbar-right {
        display: none !important;
    }

    .navbar-right.active {
        display: none !important;
    }

    .navbar-right .btn-inquiry,
    .navbar-right .btn-panel {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        border-radius: 8px;
        font-weight: 600;
        background: var(--color-accent-blue);
        color: white;
    }

    .navbar-right .btn-panel {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar-container {
        padding: 12px 16px;
    }

    .header-logo-img {
        height: 32px;
    }

    .mini-icons {
        display: none !important;
    }

    /* Mobile CTA Buttons in Menu */
    .mobile-cta-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: none !important;
    }

    .mobile-btn-primary {
        display: block !important;
        width: 100%;
        padding: 14px 24px;
        background: linear-gradient(135deg, var(--color-accent-blue), #0066cc);
        color: white !important;
        text-align: center;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 91, 255, 0.4);
    }

    .mobile-btn-secondary {
        display: block !important;
        width: 100%;
        padding: 14px 24px;
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
        text-align: center;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    /* Mobile Menu Overlay - Full Screen */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }

    /* Force body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Hide mobile CTA buttons on desktop */
.mobile-cta-buttons {
    display: none;
}

/* ============================================== */
/* MOBILE OVERFLOW FIX - CRITICAL                 */
/* ============================================== */
@media (max-width: 768px) {

    /* Force all containers to respect viewport */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* All sections must not exceed viewport */
    section,
    .section,
    .container,
    .hero-section,
    .sponsors-section,
    .features-section,
    .pricing-section,
    .testimonials,
    .faq-section,
    .footer,
    .channel-showcase-section,
    .gp-banner-section,
    .stats-formula-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Sponsor marquee fix */
    .sponsors-track,
    .sponsors-logos {
        max-width: 100vw;
    }

    /* Geometric shapes fix */
    .geometric-container,
    .geometric-shape {
        display: none !important;
    }

    /* Hero content fix */
    .hero-content {
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    /* Stats row fix */
    .stats-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 16px !important;
    }

    /* Footer brand text fix */
    .footer-brand-text,
    .gp-banner-text {
        font-size: clamp(2rem, 8vw, 4rem) !important;
        word-break: break-word;
    }

    /* Channel grid fix */
    .channel-grid {
        max-width: 100% !important;
        overflow-x: auto;
    }

    /* Flags image fix */
    .flags-image {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ============================================== */
/* PREMIUM PLATFORMS SHOWCASE                     */
/* ============================================== */
.premium-platforms-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.platform-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Premium Marquee Container */
.premium-marquee {
    overflow: hidden;
    margin: 30px 0;
    position: relative;
    padding: 20px 0;
}

/* Add gradient fades on sides */
.premium-marquee::before,
.premium-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.premium-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.premium-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Premium Track - Row 1 (Left to Right) */
.premium-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.premium-track-1 {
    animation: scrollLeft 35s linear infinite;
}

.premium-track-2 {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Premium Logo Card */
.premium-logo {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-logo:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 91, 255, 0.2);
    border-color: rgba(0, 91, 255, 0.3);
}

.premium-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.premium-logo:hover img {
    filter: grayscale(0%);
}

/* Pause animation on hover */
.premium-marquee:hover .premium-track {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-platforms-section {
        padding: 60px 0;
    }

    .platform-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .premium-marquee {
        margin: 15px 0;
        padding: 10px 0;
    }

    .premium-marquee::before,
    .premium-marquee::after {
        width: 50px;
    }

    .premium-track {
        gap: 20px;
    }

    .premium-logo {
        width: 120px;
        height: 60px;
        padding: 12px;
        border-radius: 10px;
    }

    .premium-track-1 {
        animation-duration: 20s;
    }

    .premium-track-2 {
        animation-duration: 18s;
    }
}

/* ============================================== */
/* BLOG PREVIEW SECTION                           */
/* ============================================== */
.blog-preview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 91, 255, 0.2), transparent);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-preview-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(40px);
}

.blog-preview-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-preview-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 91, 255, 0.18);
}

.blog-preview-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-preview-card:hover .blog-preview-image {
    transform: scale(1.1);
}

.blog-preview-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-preview-placeholder svg {
    width: 60px;
    height: 60px;
    color: #94a3b8;
}

.blog-preview-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 91, 255, 0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.blog-preview-content {
    padding: 28px;
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #94a3b8;
}

.blog-preview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-preview-card:hover .blog-preview-title {
    color: #005BFF;
}

.blog-preview-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005BFF;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.blog-preview-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-link {
    gap: 12px;
}

.blog-preview-card:hover .blog-preview-link svg {
    transform: translateX(4px);
}

.blog-preview-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 91, 255, 0.3);
}

.blog-all-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 91, 255, 0.45);
}

.blog-all-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.blog-all-btn:hover svg {
    transform: translateX(6px);
}

.blog-preview-empty {
    text-align: center;
    padding: 80px 24px;
}

.blog-preview-empty .empty-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.blog-preview-empty p {
    font-size: 1.125rem;
    color: #64748b;
}

/* Blog Preview Responsive */
@media (max-width: 1024px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .blog-preview-image-wrapper {
        height: 180px;
    }

    .blog-preview-content {
        padding: 20px;
    }

    .blog-all-btn {
        padding: 14px 32px;
        font-size: 0.85rem;
    }
}

/* ============================================== */
/* BLOG CAROUSEL SECTION                          */
/* ============================================== */
.blog-carousel-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 50%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.blog-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 91, 255, 0.3), transparent);
}

.blog-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.blog-carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.blog-carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.blog-carousel-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.blog-card-inner {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 91, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-card-inner:hover {
    box-shadow: 0 24px 60px rgba(0, 91, 255, 0.18);
    border-color: rgba(0, 91, 255, 0.2);
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-inner:hover .blog-card-image {
    transform: scale(1.12);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-inner:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.blog-card-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    color: #94a3b8;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.placeholder-text {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, rgba(0, 91, 255, 0.95) 0%, rgba(60, 130, 255, 0.95) 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 91, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-card-inner:hover .blog-card-category {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 255, 0.4);
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-card-meta .meta-date,
.blog-card-meta .meta-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
    color: #94a3b8;
}

.blog-card-meta .meta-divider {
    color: #cbd5e1;
    font-weight: 300;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-inner:hover .blog-card-title {
    color: #005BFF;
}

.blog-card-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005BFF;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #005BFF, #3c82ff);
    transition: width 0.3s ease;
}

.blog-card-inner:hover .blog-card-link::after {
    width: 100%;
}

.blog-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog-card-inner:hover .blog-card-link svg {
    transform: translateX(6px);
}

.blog-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 2px solid rgba(0, 91, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-carousel-prev {
    left: 0;
}

.blog-carousel-next {
    right: 0;
}

.blog-carousel-nav svg {
    width: 24px;
    height: 24px;
    color: #005BFF;
    transition: all 0.3s ease;
}

.blog-carousel-nav:hover {
    background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 91, 255, 0.35);
}

.blog-carousel-nav:hover svg {
    color: #ffffff;
}

.blog-carousel-nav.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 91, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-dot:hover {
    background: rgba(0, 91, 255, 0.5);
    transform: scale(1.2);
}

.blog-dot.active {
    background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
    width: 36px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 91, 255, 0.4);
}

.blog-carousel-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 91, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.blog-view-all-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 91, 255, 0.5);
}

.blog-view-all-btn span,
.blog-view-all-btn svg {
    position: relative;
    z-index: 1;
}

.blog-view-all-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.blog-view-all-btn:hover svg {
    transform: translateX(6px);
}

.blog-carousel-empty {
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.9));
    border-radius: 24px;
    border: 2px dashed rgba(0, 91, 255, 0.15);
    margin-top: 60px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #94a3b8;
}

.empty-state-icon svg {
    width: 100%;
    height: 100%;
}

.blog-carousel-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.blog-carousel-empty p {
    font-size: 1rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .blog-carousel-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .blog-carousel-section {
        padding: 70px 0;
    }

    .blog-carousel-wrapper {
        padding: 0;
        margin-top: 40px;
    }

    .blog-carousel-card {
        flex: 0 0 calc(100% - 32px);
        min-width: calc(100% - 32px);
        margin: 0 16px;
    }

    .blog-carousel-nav {
        display: none;
    }

    .blog-card-image-wrapper {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-carousel-dots {
        margin-top: 30px;
    }

    .blog-dot {
        width: 10px;
        height: 10px;
    }

    .blog-dot.active {
        width: 28px;
    }

    .blog-view-all-btn {
        padding: 16px 36px;
        font-size: 0.85rem;
    }
}

/* Blog Card Link Wrapper - Makes entire card clickable */
.blog-card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-link-wrapper:hover .blog-card-inner {
    box-shadow: 0 24px 60px rgba(0, 91, 255, 0.18);
    border-color: rgba(0, 91, 255, 0.2);
}

.blog-card-link-wrapper:hover .blog-card-image {
    transform: scale(1.12);
}

.blog-card-link-wrapper:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-link-wrapper:hover .blog-card-category {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 255, 0.4);
}

.blog-card-link-wrapper:hover .blog-card-title {
    color: #005BFF;
}

.blog-card-link-wrapper:hover .blog-card-link::after {
    width: 100%;
}

.blog-card-link-wrapper:hover .blog-card-link svg {
    transform: translateX(6px);
}

/* Blog Post Hero - Light Theme */
.post-hero-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    padding-top: 160px !important;
}

.post-hero-light .post-hero-content {
    color: #1a1a2e;
}

.post-hero-light .post-category {
    background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
    color: #ffffff;
}

.post-hero-light .post-title {
    color: #1a1a2e;
}

.post-hero-light .post-meta {
    color: #64748b;
}

.post-hero-light .post-meta span {
    color: #64748b;
}

.post-hero-light .post-meta svg {
    color: #94a3b8;
}

/* ============================================== */
/* PREMIUM CONTENTS CAROUSEL SECTION              */
/* ============================================== */

.premium-contents-section {
    background: #0a0a0f;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.premium-contents-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Title Area */
.premium-contents-header {
    position: sticky;
    top: 120px;
}

.premium-contents-title-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-contents-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.premium-contents-title .title-highlight {
    color: #94a3b8;
    font-weight: 500;
}

.premium-contents-nav {
    display: flex;
    gap: 12px;
}

.pc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-nav-btn:hover {
    background: #005BFF;
    border-color: #005BFF;
    transform: scale(1.05);
}

.pc-nav-btn svg {
    width: 20px;
    height: 20px;
}

.pc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pc-view-all:hover {
    color: #005BFF;
}

.pc-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pc-view-all:hover svg {
    transform: translateX(4px);
}

/* Right Side - Main Content */
.premium-contents-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Filter Tabs */
.pc-filter-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pc-filter-tab {
    background: none;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.pc-filter-tab:hover,
.pc-filter-tab.active {
    color: #00c8ff;
}

.pc-tab-divider {
    color: #374151;
    font-size: 14px;
}

/* Carousel Wrapper */
.pc-carousel-wrapper {
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px;
}

.pc-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Poster Cards */
.pc-poster-card {
    flex-shrink: 0;
    width: 160px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pc-poster-card:hover {
    transform: translateY(-8px);
}

.pc-poster-image {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
}

.pc-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pc-poster-card:hover .pc-poster-image img {
    transform: scale(1.08);
}

.pc-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-poster-card:hover .pc-poster-overlay {
    opacity: 1;
}

.pc-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #475569;
}

.pc-poster-placeholder svg {
    width: 48px;
    height: 48px;
}

/* Featured Badge */
.pc-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #00c8ff 0%, #005BFF 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 200, 255, 0.4);
}

/* Poster Info */
.pc-poster-info {
    padding: 12px 0;
}

.pc-poster-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
    color: #64748b;
}

.pc-meta-year {
    color: #94a3b8;
}

.pc-meta-category {
    color: #64748b;
}

.pc-meta-year::after {
    content: ',';
    margin-left: 2px;
}

.pc-meta-category:last-child .pc-meta-year::after {
    content: '';
}

.pc-poster-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pc-poster-subtitle {
    font-size: 12px;
    color: #64748b;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pc-poster-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* Responsive */
@media (max-width: 1200px) {
    .premium-contents-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .premium-contents-header {
        position: relative;
        top: 0;
    }

    .premium-contents-title-area {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .premium-contents-title {
        font-size: 26px;
    }

    .premium-contents-title br {
        display: none;
    }

    .premium-contents-title .title-highlight {
        display: inline;
    }

    .premium-contents-title .title-highlight::before {
        content: ' ';
    }
}

@media (max-width: 768px) {
    .premium-contents-section {
        padding: 60px 0;
    }

    .premium-contents-container {
        padding: 0 20px;
    }

    .premium-contents-title-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-contents-title {
        font-size: 22px;
    }

    .pc-poster-card {
        width: 140px;
    }

    .pc-filter-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .pc-poster-card {
        width: 120px;
    }

    .pc-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================== */
/* FOOTER NEWSLETTER SECTION                      */
/* ============================================== */

.footer-newsletter {
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.newsletter-form {
    margin-top: 24px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrapper input:focus {
    outline: none;
    border-color: #005BFF;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input-wrapper button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-input-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 91, 255, 0.4);
}

.newsletter-input-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-input-wrapper button .btn-icon {
    width: 18px;
    height: 18px;
}

.newsletter-message {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}

.newsletter-message.success {
    color: #10b981;
}

.newsletter-message.error {
    color: #ef4444;
}

@media (max-width: 600px) {
    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-input-wrapper button {
        justify-content: center;
    }

    .newsletter-text h3 {
        font-size: 20px;
    }
}

/* ============================================== */
/* HIDE FOOTER LINK COLUMNS (ALL DEVICES)        */
/* ============================================== */
.footer-links-grid,
.footer-links-section {
    display: none !important;
}

/* ============================================== */
/* PROFESSIONAL MOBILE MENU - FULL SCREEN         */
/* ============================================== */

/* Mobile Scroll Fixes */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: none !important;
    }

    /* Hide all scrollbars on mobile */
    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    * {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* Hide any resize handles/dividers */
    *::-webkit-resizer {
        display: none !important;
    }

    /* Smooth scrolling for sections - except pricing */
    section:not(.pricing-section) {
        overflow: visible !important;
        touch-action: pan-y !important;
    }

    .pricing-section {
        touch-action: auto !important;
    }

    /* ========================================== */
    /* DISABLE ANIMATIONS ON PRICING CARDS       */
    /* For smooth horizontal scroll on mobile    */
    /* ========================================== */
    .pricing-section .animate-on-scroll,
    .pricing-section .pricing-card,
    .pricing-grid .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        animation: none !important;
        transition: none !important;
    }

    .pricing-card.animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: box-shadow 0.2s ease !important;
    }

    /* Ensure pricing cards are always visible immediately */
    .pricing-card {
        will-change: auto !important;
    }

    /* Pricing Section - Horizontal Scroll on Mobile */
    .pricing-section {
        overflow: visible !important;
        overflow-x: visible !important;
        touch-action: auto !important;
    }

    .pricing-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .pricing-section .section-header {
        padding: 0 20px !important;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        scroll-snap-type: x proximity !important;
        touch-action: pan-x pan-y !important;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .pricing-grid {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .pricing-card {
        flex: 0 0 calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 !important;
        scroll-snap-align: center !important;
    }

    /* Mobile Swipe Button - Modern, centered below cards */
    .pricing-swipe-btn {
        display: flex;
        position: relative;
        margin: 24px auto 8px;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%);
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0, 91, 255, 0.35);
        cursor: pointer;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .pricing-swipe-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 24px rgba(0, 91, 255, 0.45);
    }

    .pricing-swipe-btn:active {
        transform: scale(0.95);
    }

    .swipe-btn-icon {
        font-size: 26px;
        font-weight: 300;
        color: #ffffff;
        line-height: 1;
        margin-left: 2px;
        animation: swipeBtnPulse 1.5s ease-in-out infinite;
    }

    @keyframes swipeBtnPulse {

        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(3px);
        }
    }

    /* Hide Dark CTA Section on Mobile */
    .dark-cta-section {
        display: none !important;
    }

    /* Hide Background Videos on Mobile (prevents play button) */
    .global-video-bg,
    .global-video,
    .hero-video,
    video {
        display: none !important;
    }

    /* Footer Badges - 3 per row on Mobile */
    .footer-badges {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        justify-items: center !important;
    }

    .footer-badge {
        width: 100% !important;
        min-width: unset !important;
    }

    /* Footer Badges layout handled above */
}

@media (max-width: 991px) {

    /* Hide desktop nav elements */
    .navbar-right,
    .mini-icons {
        display: none !important;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10001;
        padding: 8px;
        position: relative;
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: #1a1a2e;
        border-radius: 3px;
    }

    .navbar-scrolled .mobile-menu-btn span {
        background: #ffffff;
    }

    /* Active state - simple X icon */
    .mobile-menu-btn.active span {
        background: #ffffff !important;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        display: none;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Full Screen Mobile Menu */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #0a0a14 !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        z-index: 10000 !important;
        padding: 80px 40px 40px !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Prevent body scroll and white flash */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Menu Items - ensure visibility */
    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 16px 0 !important;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        letter-spacing: -0.3px !important;
    }

    .nav-links li a:hover {
        color: #005BFF !important;
    }

    /* Mobile CTA Buttons */
    .mobile-cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-top: 30px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-bottom: none !important;
    }

    .mobile-btn-primary,
    .mobile-btn-secondary {
        display: block !important;
        text-align: center !important;
        padding: 16px 28px !important;
        border-radius: 12px !important;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        color: #ffffff !important;
    }

    .mobile-btn-primary {
        background: linear-gradient(135deg, #005BFF 0%, #3c82ff 100%) !important;
    }

    .mobile-btn-secondary {
        background: transparent !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
}

/* ============================================== */
/* APP DOWNLOAD CARD - FLOWING BLUE BORDER       */
/* ============================================== */
.app-download-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 16px;
}

.app-download-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #005BFF 20%,
            #3B82F6 40%,
            #60A5FA 50%,
            #3B82F6 60%,
            #005BFF 80%,
            transparent 100%);
    background-size: 200% 100%;
    border-radius: 18px;
    z-index: -2;
    animation: flowingBorder 3s linear infinite;
}

.app-download-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #ffffff;
    border-radius: 14px;
    z-index: -1;
}

@keyframes flowingBorder {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Hover effect - intensify animation */
.app-download-card:hover::before {
    animation-duration: 1.5s;
    background: linear-gradient(90deg,
            transparent 0%,
            #005BFF 15%,
            #3B82F6 30%,
            #93C5FD 50%,
            #3B82F6 70%,
            #005BFF 85%,
            transparent 100%);
    background-size: 200% 100%;
}