.elementor-12 .elementor-element.elementor-element-051436b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-0fd61cd */@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ===== TRICOLORE REDESIGN OVERRIDES ===== */
:root {
    --fr-blue: #1b4dff;
    --fr-white: #f8fafc;
    --fr-red: #e11d2e;
    --primary: var(--fr-blue);

    --primary-light: var(--secondary);
    --secondary: var(--fr-red);
    --accent: var(--fr-white);
    --bg-primary: #0a0f1f;
    --bg-secondary: rgba(14, 18, 32, 0.9);
    --bg-tertiary: #10162a;
    --text-primary: #f8fafc;
    --text-secondary: rgba(248, 250, 252, 0.72);
    --btn-border: rgba(27, 77, 255, 0.35);
    --btn-border-strong: rgba(27, 77, 255, 0.55);
    --btn-border-gradient-start: rgba(27, 77, 255, 0.45);
    --btn-border-gradient-end: rgba(225, 29, 46, 0.35);
    --btn-shadow: rgba(27, 77, 255, 0.35);
    --btn-shadow-strong: rgba(27, 77, 255, 0.55);
    --btn-surface: rgba(255, 255, 255, 0.06);
    --btn-surface-hover: rgba(255, 255, 255, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
.elementor-widget-theme-post-content, .pcolor p {
        color: var(--text-primary) !important;
}
p{
    margin-bottom: 0px;
}
.w-fit-content{
    width: fit-content !important;
}

.entry-content ul, .entry-content ol {
    padding-left: 0px;
}
.acontainer {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 40px;
}
.mt-50{
    margin-top: 50px !important;
}

.txt-none{
    text-decoration: none !important;
    color: var(--text-primary) !important;
}


/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 60px 12px 20px;
    position: relative;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.promo-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
}

.promo-btn {
    padding: 8px 18px;
    background: white;
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-close {
    position: absolute;
    padding: 0;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) rotate(90deg);
}

.promo-close svg {
    display: block;
}

.beauty-links {
  position: relative;
  z-index: 2; 
  color: rgb(244, 245, 247);
  text-decoration: none !important;
}

.beauty-links::after {
  content:"";
  position: absolute;
  width: 100%;
  height: 8px;
  border-radius: 0px;
  left: -4px;
  bottom: 2px;
  padding: 0 4px;
  z-index: -1;
  background: var(--secondary);
  opacity: 0.9;
}

.beauty-links:hover {
    color: white;
}

body.light-theme .beauty-links{
    
  color: rgb(22, 60, 165);
}

body.light-theme .beauty-links::after {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.25;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner.hidden ~ .header {
    top: 0;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    border-bottom: 1px solid rgba(37, 99, 235, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled::before {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
    z-index: 1;
    transition: padding 0.4s ease;
}

.header.scrolled .nav {
    padding: 14px 0;
}

/* ===== LOGO ===== */
.logo {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img{
    
    max-width: 180px;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: flex;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* ===== NAVIGATION ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}


.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

/* ===== ACTIONS ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    padding: 0;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.btn-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-icon:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
}

.btn-icon:hover::before {
    opacity: 1;
}

.icon-sun,
.icon-moon {
    position: absolute;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.icon-moon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.btn-icon.dark .icon-sun {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.btn-icon.dark .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.btn-icon:hover .icon-sun,
.btn-icon:hover .icon-moon {
    color: var(--primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 11px;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 96, 239, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 96, 239, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* ===== MOBILE MENU BUTTON ===== */
.btn-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 11px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(6, 182, 212, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-mobile:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-mobile:hover::before {
    opacity: 1;
}

.btn-mobile span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-mobile.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.btn-mobile.active span:nth-child(2) {
    opacity: 0;
}

.btn-mobile.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-links {
    list-style: none;
    padding: 20px 0;
}

.mobile-links li {
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.mobile-links a {
    display: block;
    padding: 16px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-links a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.btn-mobile-cta {
    display: block;
    margin: 20px 24px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .btn-mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .promo-banner {
        height: 64px;
    }

    .promo-content {
        padding: 10px 44px 10px 16px;
        gap: 10px;
    }

    .promo-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .header {
        top: 64px;
    }

    .header::before {
        background: rgba(10, 10, 15, 0.7);
        backdrop-filter: blur(16px) saturate(160%);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
        border-bottom-color: rgba(37, 99, 235, 0.2);
    }

    body.light-theme .header::before {
        background: rgba(248, 250, 252, 0.9);
        border-bottom-color: rgba(37, 99, 235, 0.2);
    }

    .nav {
        padding: 12px 0;
    }

    .nav-actions {
        gap: 8px;
    }

    .logo {
        max-width: 140px;
    }

    .logo img {
        max-width: 140px;
    }

    .btn-icon,
    .btn-mobile {
        width: 40px;
        height: 40px;
    }

    .btn-primary {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .promo-text {
        font-size: 12px;
    }

    .promo-btn {
        display: none;
    }

    .btn-primary {
        width: 100%;
        height: auto;
        padding: 14px 18px;
        justify-content: center;
    }

    .logo-title {
        font-size: 13px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .hero-right {
        margin-top: 12px;
    }

    .video-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

    .video-player {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        transform: none !important;
    }

    .feature-badge {
        width: fit-content;
        max-width: calc(100% - 24px);
        justify-content: flex-start;
        padding: 12px 16px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    }

    .badge-top,
    .badge-right,
    .badge-bottom {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .acontainer {
        padding: 0 20px;
    }
    .promo-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .promo-text {
        font-size: 11px;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }
}





/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    overflow: hidden;
}
.hero-section::before{
    content: '';
    background-image: url(http://iptv-france-officiel.fr/wp-content/uploads/2026/02/iptv-france-officiel-abonnement-iptv-france.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
    transform: scale(1.02);
}
.hero-section::after{
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 18, 0.78) 0%, rgba(8, 10, 18, 0.6) 45%, rgba(8, 10, 18, 0.88) 100%),
        radial-gradient(circle at 20% 10%, rgba(27, 77, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(225, 29, 46, 0.2), transparent 55%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}
/* ===== BACKGROUND ===== */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: 100%;
     pointer-events: none;
}
.bg-dark{
    background: var(--bg-primary);

    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    
}
.bg-gradient {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),*/
    /*            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);*/
                
                
        background: radial-gradient(circle at 20% 30%, rgb(99 102 241 / 15%) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgb(85 100 247 / 20%) 0%, transparent 50%);
}
.bg-grid {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0 1px, transparent 1px 14px),
        repeating-linear-gradient(45deg, rgba(5, 183, 253, 0.04) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
    background-size: auto, auto, 32px 32px;
}

.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(0.9005);
    }
    33% {
        transform: translate(10px, -5px) scale(0.9005);
    }
    66% {
        transform: translate(-5px, 10px) scale(0.9);
    }
}



/* ===== HERO CONTENT ===== */
.hero-content {

    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 60px 0;
}

.hero-spotlight {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 90px 0 70px;
}

.hero-center {
    max-width: 920px;
    display: grid;
    gap: 14px;
    align-items: center;
}

.hero-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.9), rgba(225, 29, 46, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(27, 77, 255, 0.25), 0 10px 24px rgba(225, 29, 46, 0.3);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 6px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
    animation: heroPillFloat 4.8s ease-in-out infinite;
}

.hero-pill::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 35%, rgba(255, 255, 255, 0.16) 70%, transparent 100%);
    opacity: 0.6;
    z-index: -1;
}

.hero-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 70%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.36) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: heroPillShine 3.8s ease-in-out infinite;
}

.hero-pill:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 38px rgba(27, 77, 255, 0.35), 0 16px 34px rgba(225, 29, 46, 0.34);
    filter: saturate(1.08);
}

.hero-pill .pill-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
    animation: heroHeartBeat 1.8s ease-in-out infinite;
}

.hero-pill .pill-text {
    letter-spacing: 0.2px;
}

.hero-pill .pill-price {
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    animation: heroPricePulse 2.4s ease-in-out infinite;
}

@keyframes heroPillFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes heroPillShine {
    0%, 52% {
        left: -150%;
    }
    72%, 100% {
        left: 160%;
    }
}

@keyframes heroHeartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.16);
    }
    45% {
        transform: scale(1.04);
    }
}

@keyframes heroPricePulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-pill,
    .hero-pill::after,
    .hero-pill .pill-icon,
    .hero-pill .pill-price {
        animation: none;
    }
}

.hero-title.hero-title-spotlight {
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: none;
    margin-bottom: 4px;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero-subtitle.hero-subtitle-spotlight {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.hero-description.hero-description-spotlight {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 780px;
    margin: 0 auto 14px;
}

.hero-spotlight .hero-buttons {
    justify-content: center;
    margin: 18px 0 6px;
}

.hero-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 6px auto 8px;
}

.hero-metric-card {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.hero-metric-card strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-metric-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.hero-trustline {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.4px;
}

/* ===== LEFT CONTENT ===== */
.hero-left {
    animation: fadeInUp 0.8s ease-out;
    max-width: 620px;
}

.hero-left-clean {
    display: grid;
    gap: 18px;
}

.hero-kicker-row {
    gap: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    color: var(--primary-light);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: -12px 0 18px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--text-secondary);
}

.kicker-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
}

.kicker-sep {
    opacity: 0.6;
}

.kicker-text {
    font-weight: 600;
}

.hero-title-cinematic {
    font-family: 'Alexandria', 'Manrope', 'Space Grotesk', sans-serif;
    font-size: 82px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 16px;
    text-shadow: 0 18px 40px rgba(7, 12, 28, 0.35);
}

.hero-title-compact {
    margin-bottom: 6px;
}

.hero-title-cinematic span {
    display: block;
    font-size: 58px;
    color: transparent;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #1b4dff 0%, #7aa3ff 45%, #e11d2e 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle-cinematic {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-description-tight {
    margin-bottom: 0;
}

.hero-intro {
    display: grid;
    gap: 8px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.hero-metrics div {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.hero-metrics strong {
    display: block;
    font-size: 18px;
}

.hero-metrics span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-filmline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 8px 0 32px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-filmline span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.2);
    border: 1px solid rgba(0, 96, 239, 0.45);
}

.btn-poster {
    border-radius: 999px;
    padding: 16px 34px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-outline {
    border-radius: 999px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-title-cinematic {
        font-size: 68px;
    }

    .hero-title-cinematic span {
        font-size: 52px;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .hero-title-cinematic {
        font-size: 56px;
    }

    .hero-title-cinematic span {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .hero-subtitle-cinematic {
        font-size: 16px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-spotlight {
        padding: 70px 0 50px;
    }

    .hero-metrics-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-pill {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-metrics-row {
        grid-template-columns: 1fr;
    }
}

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 96, 239, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 96, 239, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== SOCIAL PROOF ===== */
.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    margin-left: 0px;
}

.avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.avatars img:hover {
    transform: scale(1.15) translateY(-5px);
    z-index: 10;
}

.social-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.social-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== RIGHT CONTENT - VIDEO PLAYER ===== */
.hero-right {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    perspective: 1000px;
}

.video-player {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.6) 0%, rgba(49, 46, 129, 0.6) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(37, 99, 235, 0.2),
        inset 0 0 80px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.video-player:hover {
    transform: translateY(-10px);
}

.video-header {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 14px;
    color: var(--text-secondary);
}

.video-content {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-content::before{
    background: url(https://abonnement-iptv-officiel.fr/wp-content/uploads/2026/02/Abonnement-iptv-officiel-film.webp);
    background-size: cover;
    background-position: bottom;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}
.video-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;

}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.play-button {
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse-scale 2s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== FEATURE BADGES ===== */
.feature-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out both;
}

.feature-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.badge-top {
    top: -40px;
    left: -20px;
    animation-delay: 0.4s;
}

.badge-right {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 0.6s;
}

.badge-bottom {
    bottom: -20px;
    right: 40px;
    animation-delay: 0.8s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== HERO SHOWCASE ===== */
.hero-showcase {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    opacity: 0.5;
    animation: spin 22s linear infinite;
    z-index: 0;
}

.ring-1 {
    width: 520px;
    height: 520px;
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-style: solid;
    opacity: 0.35;
    animation-direction: reverse;
}

.ring-3 {
    width: 640px;
    height: 640px;
    border-style: dotted;
    opacity: 0.25;
    animation-duration: 28s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.showcase-frame {
    position: relative;
    width: min(460px, 100%);
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(12, 16, 26, 0.92), rgba(9, 13, 23, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px rgba(3, 10, 26, 0.55);
    backdrop-filter: blur(18px);
    overflow: hidden;
    z-index: 2;
}

.showcase-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(0, 96, 239, 0.35), transparent 55%),
                radial-gradient(circle at 85% 10%, rgba(5, 183, 253, 0.25), transparent 50%);
    opacity: 0.7;
    pointer-events: none;
}

.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 18px;
}

.signal-bars span {
    width: 4px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(5, 183, 253, 0.9), rgba(0, 96, 239, 0.9));
    animation: signal 1.4s ease-in-out infinite;
}

.signal-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.signal-bars span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.signal-bars span:nth-child(3) { height: 16px; animation-delay: 0.3s; }

@keyframes signal {
    0%, 100% { transform: scaleY(0.8); opacity: 0.6; }
    50% { transform: scaleY(1.1); opacity: 1; }
}

.showcase-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.showcase-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.showcase-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 14px;
    display: grid;
    gap: 4px;
}

.showcase-tile strong {
    font-size: 14px;
}

.tile-label {
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.tile-meta {
    font-size: 11px;
    color: var(--text-secondary);
}

.showcase-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.footer-stat {
    text-align: left;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-stat strong {
    display: block;
    font-size: 16px;
}

.footer-stat span {
    font-size: 11px;
    color: var(--text-secondary);
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(10, 12, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(3, 10, 26, 0.5);
    backdrop-filter: blur(14px);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.float-top {
    top: 8%;
    left: -6%;
}

.float-bottom {
    bottom: 6%;
    right: -4%;
    animation-delay: 1.2s;
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.9), rgba(5, 183, 253, 0.9));
    color: #ffffff;
}

.float-card strong {
    display: block;
    font-size: 14px;
}

.float-card span {
    font-size: 12px;
    color: var(--text-secondary);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .float-top {
        left: 0;
    }

    .float-bottom {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-showcase {
        min-height: 0;
        gap: 14px;
    }

    .showcase-ring {
        display: none;
    }

    .showcase-frame {
        width: 100%;
    }

    .showcase-footer {
        grid-template-columns: 1fr;
    }

    .float-card {
        position: static;
        width: 100%;
    }
}

body.light-theme .showcase-frame {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

body.light-theme .showcase-frame::before {
    opacity: 0.3;
}

body.light-theme .showcase-sub,
body.light-theme .tile-meta,
body.light-theme .footer-stat span,
body.light-theme .float-card span {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .showcase-tile,
body.light-theme .footer-stat,
body.light-theme .float-card {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .tile-label {
    color: rgba(15, 23, 42, 0.7);
}

/* ===== HERO POSTER ===== */
.hero-poster {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.poster-glow {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 96, 239, 0.5), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(5, 183, 253, 0.35), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 55%);
    filter: blur(6px);
    opacity: 0.9;
    z-index: 0;
}

.poster-card {
    position: relative;
    width: min(480px, 100%);
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(12, 15, 24, 0.95), rgba(8, 10, 18, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 80px rgba(3, 10, 26, 0.6);
    overflow: hidden;
    z-index: 2;
}

.poster-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 45%);
    opacity: 0.8;
}

.poster-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 3px);
    opacity: 0.2;
    pointer-events: none;
}

.poster-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.poster-tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.2);
    border: 1px solid rgba(0, 96, 239, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.poster-rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.poster-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.poster-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.poster-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}

.poster-metrics .metric {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poster-metrics strong {
    display: block;
    font-size: 16px;
}

.poster-metrics span {
    font-size: 11px;
    color: var(--text-secondary);
}

.poster-ticket {
    position: absolute;
    right: -20px;
    top: 10%;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.95), #e11d2e);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 96, 239, 0.45);
    z-index: 3;
    transform: rotate(4deg);
}

.ticket-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.85;
}

.ticket-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 4px;
}

.ticket-meta {
    font-size: 11px;
    opacity: 0.85;
    margin-top: 2px;
}

.poster-strip {
    position: absolute;
    left: -12px;
    bottom: 6%;
    display: flex;
    gap: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 10, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(3, 10, 26, 0.45);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 11px;
    animation: stripSlide 8s ease-in-out infinite;
}

@keyframes stripSlide {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(14px); }
}

@media (max-width: 1024px) {
    .poster-ticket {
        right: 0;
    }

    .poster-strip {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero-poster {
        min-height: 0;
        gap: 16px;
    }

    .poster-card {
        width: 100%;
    }

    .poster-metrics {
        grid-template-columns: 1fr;
    }

    .poster-ticket,
    .poster-strip {
        position: static;
        transform: none;
        width: 100%;
    }
}

body.light-theme .poster-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

body.light-theme .poster-subtitle,
body.light-theme .poster-rating,
body.light-theme .poster-metrics span {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .poster-metrics .metric {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .poster-strip {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .hero-kicker {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .kicker-pill {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .hero-title-cinematic span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .hero-subtitle-cinematic {
    color: rgba(15, 23, 42, 0.75);
}

body.light-theme .hero-filmline span {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.18), rgba(225, 29, 46, 0.18));
    border-color: rgba(27, 77, 255, 0.3);
    color: #0f172a;
}

body.light-theme .features-heading-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
    border-color: rgba(27, 77, 255, 0.2);
    box-shadow: 0 18px 45px rgba(27, 77, 255, 0.1);
}

body.light-theme .features-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .features-chip-row span {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .features-chip-row span:hover {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.16), rgba(225, 29, 46, 0.08));
    border-color: rgba(225, 29, 46, 0.35);
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(27, 77, 255, 0.12);
}

body.light-theme .quickfact-card {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.05));
    border-color: rgba(27, 77, 255, 0.2);
}

body.light-theme .quickfact-card:hover {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.13), rgba(225, 29, 46, 0.09));
    border-color: rgba(225, 29, 46, 0.28);
    box-shadow: 0 14px 28px rgba(225, 29, 46, 0.1);
}

body.light-theme .quickfact-card strong {
    color: #0f172a;
}

body.light-theme .quickfact-card span {
    color: rgba(15, 23, 42, 0.72);
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 13, 20, 0.92), rgba(8, 10, 18, 0.96));
    border-top: 1px solid rgba(37, 99, 235, 0.25);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(18px);
    padding: 46px 0;
    margin-top: auto;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 96, 239, 0.28), transparent 60%),
        radial-gradient(circle at 85% 80%, rgba(5, 183, 253, 0.2), transparent 55%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
    opacity: 0.7;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(3, 10, 26, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 96, 239, 0.35), transparent 70%);
    opacity: 0.8;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 183, 253, 0.4);
    box-shadow: 0 26px 50px rgba(3, 10, 26, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Bebas Neue', 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0 120px;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-secondary), transparent);
    pointer-events: none;
}

/* Top Features Cards */
.top-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.top-feature-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 22px 22px 28px 18px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.top-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-feature-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0 16px 0 10px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.top-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(235, 37, 37, 0.2);
}

.top-feature-card:hover::before {
    opacity: 1;
}

.top-feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 18px 18px 22px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.3s ease;
}

.feature-icon-wrapper.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-wrapper.icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-icon-wrapper.icon-purple {
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
}

.top-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.top-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Features Header */
.features-header {
    text-align: center;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}



.features-heading-card {
    position: relative;
    padding: 36px 38px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(8, 15, 34, 0.96), rgba(8, 12, 24, 0.9));
    border: 1px solid rgba(27, 77, 255, 0.28);
    box-shadow: 0 24px 54px rgba(3, 10, 26, 0.46);
    overflow: hidden;
}

.features-heading-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(27, 77, 255, 0.34), transparent 56%),
        radial-gradient(circle at 92% 14%, rgba(225, 29, 46, 0.2), transparent 52%),
        linear-gradient(120deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.05) 52%, transparent 76%);
    opacity: 0.9;
    pointer-events: none;
}

.features-top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.features-intro {
    text-align: left;
}

.features-heading-card .features-kicker,
.features-heading-card .features-title,
.features-heading-card .features-subtitle,
.features-heading-card .features-chip-row,
.features-heading-card .features-top {
    position: relative;
    z-index: 1;
}

.features-title span {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-light);
}

.features-chip-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text-secondary);
}

.features-chip-row span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.features-chip-row span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(225, 29, 46, 0.45);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(225, 29, 46, 0.2);
}

.features-title {
    font-size: clamp(32px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.features-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.features-quickfacts {
    display: grid;
    gap: 10px;
}

.quickfact-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(225, 29, 46, 0.06));
    border: 1px solid rgba(27, 77, 255, 0.2);
    border-radius: 14px;
    padding: 12px 14px;
    text-align: left;
    backdrop-filter: blur(4px);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.quickfact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transform: scaleY(0.55);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.quickfact-card:hover {
    transform: translateY(-3px) translateX(3px);
    border-color: rgba(225, 29, 46, 0.42);
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.15), rgba(225, 29, 46, 0.1));
    box-shadow: 0 14px 28px rgba(225, 29, 46, 0.16);
}

.quickfact-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.quickfact-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.quickfact-card span {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .features-heading-card {
        padding: 24px;
    }

    .features-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .features-intro {
        text-align: center;
    }

    .features-chip-row {
        justify-content: center;
    }

    .features-title {
        font-size: 30px;
    }

    .features-title span {
        font-size: 18px;
    }

    .features-subtitle {
        font-size: 16px;
    }
}

/* Features Grid */
.features-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(235, 37, 37, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: height 0.3s ease;
}

.feature-item.red::before{
    background: #ef4444;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(235, 37, 37, 0.3);
    background: rgba(26, 26, 36, 0.6);
    box-shadow: 0 10px 30px rgba(235, 37, 37, 0.15);
}

.feature-item.glow-effect:hover{
    
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);

}

.feature-item:hover::before {
    height: 100%;
}

.feature-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(235, 37, 37, 0.3);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-check {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 120px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.pricing-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Pricing Card */
.pricing-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(235, 37, 37, 0.3)
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(37, 99, 235, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.pricing-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid var(--primary);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.2),
        0 0 60px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 
        0 35px 70px rgba(37, 99, 235, 0.3),
        0 0 100px rgba(37, 99, 235, 0.25);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}
.popular-badge.b2{
    top: -17px !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
    }
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}


.plan-offert{    
    font-size: 14px;
    font-weight: 100;
    color: var(--text-white);
    text-transform: uppercase;
    text-align: center;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4px 8px;
    border-radius: 12px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-description {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
    background: rgba(37, 99, 235, 0.1);
    line-height: 1.6;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    margin-bottom: 12px;
}

/* Card Body */
.pricing-card-body {
    flex: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}
.multi-screen-badge-wrap{
    display: flex;
    justify-content: center;
    margin: 12px 0;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-align: center;
}

.multi-screen-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(225, 29, 46, 0.16));
    box-shadow:
        0 8px 20px rgba(10, 15, 31, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.multi-screen-badge svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.multi-screen-badge-wrap:hover .multi-screen-badge {
    transform: translateY(-2px);
    border-color: rgba(225, 29, 46, 0.45);
    box-shadow:
        0 12px 28px rgba(10, 15, 31, 0.38),
        0 0 0 1px rgba(225, 29, 46, 0.2);
}

.multi-screen-badge-wrap:focus-visible .multi-screen-badge {
    outline: 2px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}
.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.plan-features svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.plan-features li:hover svg {
    color: var(--secondary);
    transform: scale(1.2) rotate(360deg);
}

/* Card Footer */
.pricing-card-footer {
    position: relative;
    z-index: 1;
}

.btn-plan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan:active {
    transform: translateY(0);
}

.pricing-card:not(.featured) .btn-plan,
.shared-pricing-card:not(.featured) .btn-shared-plan {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.pricing-card:not(.featured) .btn-plan:hover,
.shared-pricing-card:not(.featured) .btn-shared-plan:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
}

/* Plan Devices */
.plan-devices {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.device-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.device-icon:hover {
    transform: scale(1.3) translateY(-4px);
}

/* Trust Badges */
.pricing-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px;
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-badge-item:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.trust-badge-item:hover svg {
    color: var(--secondary);
    transform: scale(1.1);
}

/* ===== SHARED MULTI-SCREEN PRICING SECTION ===== */
.shared-pricing-section {
    padding: 120px 0;
    position: relative;
}

.shared-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.shared-pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-badge-purple {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.shared-pricing-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.shared-pricing-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Screen Toggle */
.screen-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(26, 26, 36, 0.6);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.toggle-btn svg {
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: rgba(235, 37, 37, 0.3)
    color: var(--text-primary);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.toggle-btn.active svg {
    transform: scale(1.1);
}

/* Shared Pricing Grid */
.shared-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.shared-pricing-grid.hidden {
    display: none;
    opacity: 0;
}

/* Shared Pricing Card */
.shared-pricing-card {
    background: rgba(26, 26, 36, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.shared-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shared-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.shared-pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.shared-pricing-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(235, 37, 37, 0.15);
}

.shared-pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3);
}

/* Best Choice Badge */
.best-choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Shared Card Header */
.shared-card-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.pack-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.pack-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pack-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pack-amount {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-period {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Shared Card Body */
.shared-card-body {
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pack-features {
    list-style: none;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.pack-features li:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

.pack-features svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pack-features li:hover svg {
    color: var(--secondary);
    transform: scale(1.15);
}

/* Shared Card Footer */
.shared-card-footer {
    position: relative;
    z-index: 1;
}

.payment-methods-img {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: -16px;
}

.payment-methods-img img {
    width: auto;
    max-width: 100%;
    height: auto;

}

.payment-icon {
    font-size: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-3px);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    margin-bottom: 0px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.5px;
}

.secure-badge svg {
    color: #10b981;
}

.btn-shared-plan {
    width: 100%;
    padding: 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-shared-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-shared-plan:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.btn-shared-plan:hover::before {
    left: 100%;
}

.shared-pricing-card.featured .btn-shared-plan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.shared-pricing-card.featured .btn-shared-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .badge-right {
        right: -20px;
    }
    
    .top-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .pricing-trust {
        grid-template-columns: repeat(2, 1fr);
    }
    .shared-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .feature-badge {
        padding: 10px 16px;
    }

    .badge-top {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .badge-right {
        top: auto;
        right: 10px;
        transform: none;
    }

    .badge-bottom {
        bottom: -10px;
        left: 10px;
        right: auto;
    }

    .stat-number {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .top-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .features-section {
        padding: 60px 0 80px;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .popular-badge {
        top: 24px;
        right: 24px;
    }
    
    
    .shared-pricing-section {
        padding: 80px 0;
    }
    
    .shared-pricing-title {
        font-size: 36px;
    }
    
    .screen-toggle {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-social {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .top-feature-card h3 {
        font-size: 14px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-content h4 {
        font-size: 14px;
    }
    
    .features-title {
        font-size: 24px;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .plan-features li {
        font-size: 14px;
    }

    .multi-screen-badge {
        padding: 9px 11px;
        font-size: 11px;
    }

    .multi-screen-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .shared-pricing-title {
        font-size: 28px;
    }
    
    .toggle-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .pack-amount {
        font-size: 36px;
    }
    
    .pack-features li {
        font-size: 12px;
    }
    .features-grid-main {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .shared-pricing-grid {
        grid-template-columns: 1fr;
    }

}
/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    padding: 120px 0;
    position: relative;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.reviews-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.reviews-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Google Rating */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 48px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-score {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.rating-count {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Review Card */
.review-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-date {
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Review Body */
.review-body {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Review Footer */
.review-footer {
    position: relative;
    z-index: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 80px 0;
    }

    .reviews-title {
        font-size: 36px;
    }

    .reviews-grid {
        gap: 24px;
    }

    .google-rating {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    .rating-stars {
        justify-content: center;
    }

    .rating-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 28px;
    }

    .rating-score {
        font-size: 28px;
    }

    .btn-reviews {
        width: 100%;
        justify-content: center;
    }

    .google-rating {
        padding: 20px;
    }
    .pricing-trust {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== GOOGLE REVIEWS V2 (MATCHING SCREENSHOT) ===== */
.review-card-v2 {
    background: rgba(18, 18, 23, 0.95);
    border: 1px solid rgba(55, 55, 70, 0.5);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name-v2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.reviewer-badge {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.google-icon-v2 {
    flex-shrink: 0;
}

.review-stars-v2 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars-v2 svg {
    flex-shrink: 0;
}

.review-time-v2 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.review-text-v2 {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
}

.review-verified-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-verified-v2 svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .review-card-v2 {
        padding: 24px 20px;
    }
    
    .reviewer-name-v2 {
        font-size: 15px;
    }
    
    .reviewer-badge {
        font-size: 12px;
    }
    
    .review-text-v2 {
        font-size: 14px;
    }
}

/* ===== VOD HD/4K SECTION ===== */
.vod-section {
    padding: 120px 0;
    position: relative;
}

.vod-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vod-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(27, 77, 255, 0.18), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(225, 29, 46, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.35) 0%, rgba(8, 10, 18, 0.65) 100%);
    opacity: 0.6;
    pointer-events: none;
}

/* VOD Header */
.vod-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.vod-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 16px 36px rgba(3, 10, 26, 0.45);
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vod-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* VOD Features Grid */
.vod-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* VOD Feature Card */
.vod-feature-card {
    background: linear-gradient(160deg, rgba(12, 16, 26, 0.92), rgba(8, 12, 22, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px 22px 28px 18px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vod-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(3, 10, 26, 0.5);
    border-color: rgba(225, 29, 46, 0.35);
}

.vod-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(27, 77, 255, 0.2), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(225, 29, 46, 0.18), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vod-feature-card:hover::before {
    opacity: 0.9;
}

/* VOD Icon */
.vod-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.vod-feature-card:hover .vod-icon {
    transform: scale(1.1);
}

.vod-icon.purple {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.35), rgba(225, 29, 46, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e2e8ff;
}

.vod-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(225, 29, 46, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffd1b0;
}

.vod-icon.blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(6, 182, 212, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #cce1ff;
}

.vod-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.vod-feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* VOD Badges */
.vod-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.vod-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(12, 15, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.vod-badge:hover {
    border-color: rgba(225, 29, 46, 0.4);
    box-shadow: 0 10px 20px rgba(3, 10, 26, 0.35);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .vod-features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vod-section {
        padding: 80px 0;
    }

    .vod-title {
        font-size: 32px;
    }

    .vod-subtitle {
        font-size: 16px;
    }

    .vod-feature-card {
        padding: 28px 24px;
    }

    .vod-badges {
        flex-direction: column;
        gap: 12px;
    }

    .vod-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vod-title {
        font-size: 26px;
    }

    .vod-icon {
        width: 48px;
        height: 48px;
    }

    .vod-feature-title {
        font-size: 18px;
    }

    .vod-feature-description {
        font-size: 14px;
    }
    .vod-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 120px 0;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* How Header */
.how-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.how-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.how-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Steps Grid */
.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* Step Card */
.how-step-card {
    background: rgba(18, 18, 23, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 37, 37, 0.3)
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Step Number */
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
}

/* Step Features */
.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.step-features li svg {
    flex-shrink: 0;
}

/* How CTA */
.how-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-secondary-outline {
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-secondary-outline:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary-gradient {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .how-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 0;
    }

    .how-title {
        font-size: 32px;
    }

    .how-subtitle {
        font-size: 16px;
    }

    .how-step-card {
        padding: 32px 24px;
    }

    .step-title {
        font-size: 20px;
    }

    .how-cta {
        flex-direction: column;
    }

    .btn-secondary-outline,
    .btn-primary-gradient {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .how-title {
        font-size: 26px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }
    .how-steps-grid {
        grid-template-columns: 1fr;
    }
}




/* ===== BIEN PLUS QUE DE L'IPTV SECTION ===== */
.beyond-iptv-section {
    padding: 120px 0;
    position: relative;
}

.beyond-iptv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Beyond Header */
.beyond-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.beyond-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.beyond-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Beyond Grid */
.beyond-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Card Sizes */
.xlarge-card {
    grid-column: span 4;
    grid-row: span 2;
}
.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.medium-card {
    grid-column: span 2;
    grid-row: span 1;
}

.small-card {
    grid-column: span 2;
    grid-row: span 1;
}

/* Beyond Card */
.beyond-card {
    background: rgba(18, 18, 23, 0.95);
    border: 1px solid rgba(55, 55, 70, 0.5);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.beyond-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 37, 37, 0.3)
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Card with Image */
.beyond-card.with-image {
    padding: 0;
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.beyond-card.with-image .card-content-overlay {
    padding: 32px;
}

/* Card Content */
.card-content-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.beyond-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: scale(1.1);
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-white);
    margin: 0;
}

.small-card .card-title {
    font-size: 18px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Card Gradient Backgrounds */
.card-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: opacity 0.4s ease;
}

.card-gradient-bg.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.card-gradient-bg.gradient-purple {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.card-gradient-bg.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.beyond-card:hover .card-gradient-bg {
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 1024px) {
    .beyond-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    
    .large-card {
        grid-column: span 1;
        grid-row: span 1;
    } 
    .xlarge-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .medium-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .small-card {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .beyond-iptv-section {
        padding: 80px 0;
    }
    
    .beyond-title {
        font-size: 36px;
    }
    
    .beyond-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 20px;
    }
    
    .xlarge-card,
    .large-card,
    .medium-card,
    .small-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .beyond-card {
        padding: 28px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .small-card .card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .beyond-title {
        font-size: 28px;
    }
    
    .beyond-grid {
        grid-auto-rows: 320px;
    }
    
    .beyond-card {
        padding: 24px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

/* ===== APPLICATIONS COMPATIBILITY SECTION ===== */
.apps-compatibility-section {
    padding: 120px 0;
    position: relative;
}

.apps-compatibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Apps Header */
.apps-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.apps-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.apps-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Apps Slider Wrapper */
.apps-slider-wrapper {
    position: relative;
    padding: 16px 0;
}

.apps-slider {
    display: flex;

}
.apps-sliders-container{
    overflow: hidden;
    padding-bottom: 20px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.apps-track {
    display: flex;
    gap: 24px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Slide Animations */
.slide-left .apps-track {
    animation: slide-left 30s linear infinite;
}

.slide-right .apps-track {
    animation: slide-right 30s linear infinite;
}

@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Pause on hover */
.apps-slider:hover .apps-track {
    animation-play-state: paused;
}

/* App Card */
.app-card {
    flex-shrink: 0;
    width: 200px;
    background: rgba(18, 18, 23, 0.30);
    border: 1px solid rgba(55, 55, 70, 0.5);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.app-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.app-card:hover::before {
    opacity: 0.3;
}

.app-card:hover {
    z-index: 99;
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}


.app-logo, .app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    transition: transform 0.3s ease;
}

.app-card:hover .app-logo, .app-icon {
    transform: scale(1.05);
}

.app-letter {
    text-transform: uppercase;
}

.app-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.app-compat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Apps Footer Text */
.apps-footer-text {
    text-align: center;
    position: relative;
    z-index: 1;
}

.apps-footer-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.downloadTitle{
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

/* Responsive */
@media (max-width: 768px) {
    .apps-compatibility-section {
        padding: 80px 0;
    }

    .apps-title {
        font-size: 32px;
    }

    .apps-subtitle {
        font-size: 16px;
    }

    .app-card {
        width: 180px;
        padding: 24px 20px;
    }

    .app-logo, .app-icon {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .app-name {
        font-size: 15px;
    }

    .apps-footer-text p {
        font-size: 16px;
    }

    /* Faster animation on mobile */
    .slide-left .apps-track {
        animation-duration: 20s;
    }

    .slide-right .apps-track {
        animation-duration: 20s;
    }
    .reviews-grid {
        grid-template-columns: 1fr;

    }
}

@media (max-width: 480px) {
    .apps-title {
        font-size: 28px;
    }

    .app-card {
        width: 160px;
        padding: 20px 16px;
        gap: 12px;
    }

    .app-logo, .app-icon {
        width: 56px;
        height: 56px;
        font-size: 18px;
        border-radius: 14px;
    }

    .app-name {
        font-size: 14px;
    }

    .app-compat {
        font-size: 10px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.9), rgba(8, 12, 24, 0.7));
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(27, 77, 255, 0.16) 0%, transparent 52%),
        radial-gradient(circle at 82% 78%, rgba(225, 29, 46, 0.14) 0%, transparent 50%);
    pointer-events: none;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.faq-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.faq-meta-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.faq-meta-row span {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.18), rgba(225, 29, 46, 0.12));
    border: 1px solid rgba(27, 77, 255, 0.24);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: faq-counter;
}

.faq-grid.faq-contact {
    grid-template-columns: 1fr;
}
.contact-page .faq-support-card{
    height: auto;
}
/* FAQ Item */
.faq-section .faq-item {
    position: relative;
    background: linear-gradient(145deg, rgba(13, 18, 34, 0.88), rgba(10, 14, 28, 0.78));
    border: 1px solid rgba(27, 77, 255, 0.22);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(2, 8, 23, 0.36);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    counter-increment: faq-counter;
}

.faq-section .faq-item::after {
    content: counter(faq-counter, decimal-leading-zero);
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(248, 250, 252, 0.55);
    z-index: 1;
}

.faq-section .faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(27, 77, 255, 0.42);
    box-shadow: 0 20px 42px rgba(27, 77, 255, 0.18);
}

.faq-section .faq-item.active {
    border-color: rgba(225, 29, 46, 0.46);
    background: linear-gradient(145deg, rgba(14, 19, 35, 0.95), rgba(11, 15, 30, 0.9));
    box-shadow: 0 22px 46px rgba(225, 29, 46, 0.18);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 52px 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary) !important;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
    white-space: normal !important;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.05));
}



/* FAQ Icon Wrapper */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(27, 77, 255, 0.12);
    border: 1px solid rgba(27, 77, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    transform: scale(1.04);
}

.faq-icon {
    color: var(--primary);
    transition: color 0.3s ease;
}

.faq-item.active .faq-icon {
    color: white;
}

/* FAQ Question Text */
.faq-question span {
    flex: 1;
}

/* FAQ Chevron */
.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 28px 0 88px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0 88px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(27, 77, 255, 0.35);
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.2), rgba(225, 29, 46, 0.14));
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(2, 8, 23, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-read-more::after {
    content: '->';
    transition: transform 0.25s ease;
}

.faq-read-more:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 29, 46, 0.45);
    box-shadow: 0 12px 24px rgba(2, 8, 23, 0.4);
}

.faq-read-more:hover::after {
    transform: translateX(3px);
}

.faq-read-more:focus-visible {
    outline: 2px solid rgba(27, 77, 255, 0.55);
    outline-offset: 2px;
}

/* FAQ Support Card */
.faq-support-card {
    background: linear-gradient(145deg, rgba(11, 19, 39, 0.95) 0%, rgba(13, 17, 32, 0.95) 52%, rgba(26, 18, 32, 0.9) 100%);
    border: 1px solid rgba(27, 77, 255, 0.3);
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: hidden;
}

.faq-support-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 16%, rgba(27, 77, 255, 0.2), transparent 48%),
        radial-gradient(circle at 86% 82%, rgba(225, 29, 46, 0.15), transparent 46%);
    pointer-events: none;
}

.faq-support-card > * {
    position: relative;
    z-index: 1;
}

/* Support Status */
.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

/* Support Icon */
.support-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.16), rgba(225, 29, 46, 0.1));
    border: 2px solid rgba(27, 77, 255, 0.32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.support-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.support-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 28px 0;
}

/* Support Stats */
.support-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 28px;
}

.stat-item-small {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(225, 29, 46, 0.06));
    border: 1px solid rgba(27, 77, 255, 0.24);
    border-radius: 12px;
    padding: 12px;
}

.stat-label-small {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-value-small svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Support Hours */
.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-hours svg {
    color: var(--primary);
}

/* Support Badge */
.support-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-badge svg {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-support-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-question {
        padding: 20px 44px 20px 20px;
        font-size: 16px;
    }

    .faq-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 20px 0 68px;
        font-size: 14px;
    }

    .faq-read-more {
        margin-left: 68px;
    }

    .faq-meta-row span {
        font-size: 10px;
        padding: 7px 10px;
    }

    .faq-support-card {
        padding: 32px 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .support-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 0 20px;
    }

    .faq-read-more {
        margin-left: 20px;
    }

    .faq-section .faq-item::after {
        top: 12px;
        right: 14px;
        font-size: 10px;
    }

    .support-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== LIGHT THEME OVERRIDES ===== */
body.light-theme {
   --primary: #0060ef;
    --primary-light: #05b7fd;
    --secondary: #e11d2e ;
    --accent: #db2777;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-white: #fff;
    --bg-primary: #f8fafc;
    --bg-secondary: rgba(241, 245, 249, 0.9);
    --bg-tertiary: #e2e8f0;
}

body.light-theme .logo-dark {
    display: none;
}

body.light-theme .logo-light {
    display: block;
}

body.light-theme .bg-dark {
    background: #f8fafc;
}

body.light-theme .bg-grid {
    background-image:
        repeating-linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0 1px, transparent 1px 16px),
        repeating-linear-gradient(45deg, rgba(37, 99, 235, 0.08) 0 1px, transparent 1px 20px),
        radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.08) 0 1px, transparent 1px);
    background-size: auto, auto, 34px 34px;
}

body.light-theme .header::before {
    background: rgba(248, 250, 252, 0.9);
    border-bottom-color: rgba(225, 29, 46, 0.22);
}

body.light-theme .mobile-menu {
    background: rgba(248, 250, 252, 0.98);
    border-bottom-color: rgba(225, 29, 46, 0.22);
}

body.light-theme .btn-icon,
body.light-theme .btn-mobile {
    background: rgba(226, 232, 240, 0.8);
    border-color: rgba(225, 29, 46, 0.22);
}

body.light-theme .btn-secondary {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .stats-bar {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.98));
    border-top: 1px solid rgba(225, 29, 46, 0.22);
    border-bottom: 1px solid rgba(225, 29, 46, 0.14);
}

body.light-theme .stat-item {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
}

body.light-theme .stat-number {
    color: #0f172a;
    text-shadow: none;
}

body.light-theme .stat-label {
    color: rgba(15, 23, 42, 0.65);
}

body.light-theme .feature-badge {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

body.light-theme .feature-badge:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

body.light-theme .badge-text strong {
    color: var(--text-primary);
}

body.light-theme .badge-text span {
    color: #64748b;
}

body.light-theme .trust-badge-item {
    color: #475569;
}

body.light-theme .pricing-trust {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .toggle-btn {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.2);
    color: #1f2937;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

body.light-theme .toggle-btn:hover {
    border-color: rgba(37, 99, 235, 0.45);
    color: var(--text-primary);
}

body.light-theme .toggle-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(27, 77, 255, 0.28);
}

body.light-theme .stats-bar-2 {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .top-feature-card,
body.light-theme .feature-item,
body.light-theme .pricing-card,
body.light-theme .shared-pricing-card,
body.light-theme .beyond-card,
body.light-theme .app-card,
body.light-theme .review-card-v2,
body.light-theme .faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.light-theme .top-feature-card::after {
    border-top-color: rgba(15, 23, 42, 0.18);
    border-right-color: rgba(15, 23, 42, 0.18);
}

body.light-theme .pricing-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.6);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.18),
        0 0 60px rgba(37, 99, 235, 0.12);
    transform: scale(1.05);
}

body.light-theme .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 28px 60px rgba(37, 99, 235, 0.24),
        0 0 80px rgba(37, 99, 235, 0.18);
}

body.light-theme .pricing-card.featured .popular-badge {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

body.light-theme .shared-pricing-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.6);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.18),
        0 0 60px rgba(37, 99, 235, 0.12);
}

body.light-theme .shared-pricing-card.featured:hover {
    box-shadow:
        0 28px 60px rgba(37, 99, 235, 0.24),
        0 0 80px rgba(37, 99, 235, 0.18);
}

body.light-theme .best-choice-badge {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

body.light-theme .top-feature-card:hover,
body.light-theme .pricing-card:hover,
body.light-theme .shared-pricing-card:hover,
body.light-theme .beyond-card:hover,
body.light-theme .app-card:hover,
body.light-theme .review-card-v2:hover,
body.light-theme .how-step-card:hover,
body.light-theme .vod-feature-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-6px);
}

body.light-theme .how-step-card,
body.light-theme .vod-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.light-theme .vod-section::after {
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.75) 100%),
        radial-gradient(circle at 20% 20%, rgba(27, 77, 255, 0.08), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(225, 29, 46, 0.08), transparent 55%);
    opacity: 0.9;
}

body.light-theme .vod-icon.purple,
body.light-theme .vod-icon.orange,
body.light-theme .vod-icon.blue {
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

body.light-theme .split-comparison .us-header,
body.light-theme .split-comparison .others-header {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .features-list {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .feature-item {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .divider-line {
    background: linear-gradient(180deg, transparent 0%, rgba(27, 77, 255, 0.45) 45%, rgba(225, 29, 46, 0.35) 60%, transparent 100%);
}

body.light-theme .faq-item.active {
    background: #ffffff;
    border-color: rgba(225, 29, 46, 0.3);
}

body.light-theme .faq-section {
    background: #f1f5f9;
}

body.light-theme .faq-section .faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
    border-color: rgba(27, 77, 255, 0.2);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

body.light-theme .faq-section .faq-item::after {
    color: rgba(15, 23, 42, 0.45);
}

body.light-theme .faq-section .faq-item:hover {
    border-color: rgba(27, 77, 255, 0.36);
    box-shadow: 0 18px 36px rgba(27, 77, 255, 0.12);
}

body.light-theme .faq-section .faq-item.active {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(246, 248, 255, 0.98));
    border-color: rgba(225, 29, 46, 0.32);
    box-shadow: 0 20px 38px rgba(225, 29, 46, 0.1);
}

body.light-theme .faq-section .faq-question:hover,
body.light-theme .faq-section .faq-question:focus,
body.light-theme .faq-section .faq-question:active {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.06));
}

body.light-theme .faq-meta-row span {
    color: #0f172a;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.12), rgba(225, 29, 46, 0.08));
    border-color: rgba(27, 77, 255, 0.2);
}

body.light-theme .faq-read-more {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(225, 29, 46, 0.08));
    border-color: rgba(27, 77, 255, 0.25);
    color: #0f172a;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

body.light-theme .faq-read-more:hover {
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

body.light-theme .faq-read-more:focus-visible {
    outline-color: rgba(27, 77, 255, 0.45);
}

body.light-theme .faq-support-card {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%);
    border-color: rgba(225, 29, 46, 0.2);
}

body.light-theme .footer {
    background: #e2e8f0;
    color: var(--text-primary);
}

body.light-theme .footer::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(27, 77, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 29, 46, 0.08) 0%, transparent 50%);
}

body.light-theme .social-link,
body.light-theme .btn-admin,
body.light-theme .btn-scroll-top {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .social-link:hover {
    color: #ffffff;
}

body.light-theme .newsletter-form {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body.light-theme .newsletter-input {
    background: transparent !important;
    color: var(--text-primary);
}

body.light-theme .newsletter-input::placeholder {
    color: #94a3b8;
}

body.light-theme .payment-icon {
    color: #1f2937;
    opacity: 0.8;
}

body.light-theme .payment-icon:hover {
    color: #2563eb;
    opacity: 1;
}

body.light-theme .newsletter-submit {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

body.light-theme .newsletter-submit:hover {
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

body.light-theme .vod-badge {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

body.light-theme .vod-badge:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
}

body.light-theme .section-badge-purple,
body.light-theme .support-status {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.1), rgba(225, 29, 46, 0.1));
    border-color: rgba(27, 77, 255, 0.25);
    color: var(--primary);
}

body.light-theme .quality-badge {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

body.light-theme .secure-badge {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.35);
    color: #10b981;
}

body.light-theme .secure-badge svg {
    color: #10b981;
}

body.light-theme .multi-screen-badge {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.08));
    border-color: rgba(27, 77, 255, 0.22);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: #0f172a;
}

body.light-theme .multi-screen-badge svg {
    color: var(--primary);
}

body.light-theme .multi-screen-badge-wrap:hover .multi-screen-badge {
    border-color: rgba(225, 29, 46, 0.3);
    box-shadow:
        0 12px 24px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(225, 29, 46, 0.12);
}

body.light-theme .quality-badge.low {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

body.light-theme .video-player {
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.12),
        0 0 60px rgba(37, 99, 235, 0.12);
}

body.light-theme .video-header {
    background: rgba(248, 250, 252, 0.95);
    border-bottom-color: rgba(15, 23, 42, 0.12);
    color: #475569;
}

body.light-theme .video-content {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

body.light-theme .video-content::after {
    background:
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
}

body.light-theme .btn-admin:hover,
body.light-theme .btn-scroll-top:hover {
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

body.light-theme .reviewer-name-v2,
body.light-theme .reviewer-name {
    color: var(--text-primary);
}

body.light-theme .reviewer-badge,
body.light-theme .review-time-v2,
body.light-theme .review-date {
    color: #64748b;
}

body.light-theme .review-text-v2,
body.light-theme .review-text {
    color: #475569;
}

body.light-theme .review-verified-v2 {
    color: #2563eb;
}


/* ===== WHY CHOOSE US SECTION - CREATIVE DESIGN ===== */
.why-choose-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
    
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.why-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.why-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Split Comparison */
.split-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

/* Side Headers */
.side-header {
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.us-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-bottom: none;
}

.others-header {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.header-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    /* box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4); */
}

.header-icon.small-logo img{
    width: 160px ;
}



.others-header .header-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.3);
}

.side-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.quality-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-badge.low {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: rgba(18, 18, 23, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-top: none;
    border-radius: 0 0 24px 24px;
    backdrop-filter: blur(10px);
}

.advantages-side .features-list {
    border-color: rgba(37, 99, 235, 0.4);
}

.disadvantages-side .features-list {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    width: 4px;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #10b981;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;    
    transition: height 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
}

.glow-effect:hover {
    transform: translateX(-8px);
    background: rgba(37, 99, 235, 0.08);
}

.disadvantages-side .feature-item:hover {
    transform: translateX(8px);
    background: rgba(239, 68, 68, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.feature-icon.danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.feature-status {
    flex-shrink: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.status-dot.inactive {
    background: #ef4444;
    opacity: 0.5;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.5);
    position: sticky;
    top: 50%;
    z-index: 2;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.5) 50%, transparent 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Stats Bar */
.stats-bar-2 {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(18, 18, 23, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(37, 99, 235, 0.3);
}

/* CTA */
.why-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-why-choose {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 16px;
    color: white;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-why-choose:hover::before {
    left: 100%;
}

.btn-why-choose:hover {
    
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.6);
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vs-divider {
        display: none;
    }
    
    .stats-bar {
        grid-template-columns: repeat(4, auto);
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-title {
        font-size: 36px;
    }

    .features-list {
        padding: 24px;
    }

    .feature-item {
        padding: 16px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 28px;
    }

    .btn-why-choose {
        width: 100%;
        justify-content: center;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    padding: 80px 0 0 0;
    position: relative;
}
/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.checkout-modal {
    width: min(520px, 100%);
    background: #ffffff;
    color: #0f172a;
    border-radius: 24px;
    padding: 28px 24px;
    position: relative;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
}

.modal-close {
    padding: 0;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #f1f5f9;
    color: #334155;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}

.checkout-header h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 800;
}

.checkout-subtitle {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-field.is-hidden {
    display: none;
}

.checkout-methods {
    display: grid;
    gap: 8px;
}

.checkout-methods-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.checkout-methods-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.method-option {
    position: relative;
    display: block;
}

.method-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.method-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #dbe7fb;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.method-option span em {
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 999px;
    padding: 2px 7px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.method-option input:checked + span {
    border-color: rgba(2, 146, 250, 0.55);
    background: linear-gradient(135deg, rgba(2, 146, 250, 0.12), rgba(14, 165, 233, 0.08));
    color: #0b5bd3;
    box-shadow: 0 8px 20px rgba(2, 146, 250, 0.16);
}

.form-field span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-field input,
.form-field select {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    background: #f8fafc;
    color: #0f172a;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-wrap input {
    padding-left: 40px;
}

.input-wrap .input-icon {
    position: absolute;
    left: 12px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.checkout-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.summary-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.summary-value {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.checkout-submit {
    display: inline-flex;
    line-height: 24px;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 96, 239, 0.35);
}

.checkout-status {
    font-size: 13px;
    text-align: center;
    margin: 0;
    min-height: 18px;
}

.checkout-status:empty {
    display: none;
}

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 10px;
    color: #64748b;
    text-transform: capitalize;
    letter-spacing: 0.6px;
    padding-top: 6px;
    border-top: 1px dashed #e2e8f0;
}

.checkout-trust span {

    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.trust-icon{
    width: 18px;
    height: 18px;
}

.trust-item{
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    font-size: 14px;
}

/* ===== WHATSAPP CONFIRMATION ===== */
.whatsapp-modal {
    width: min(520px, 100%);
    padding: 28px 28px 22px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.whatsapp-modal .modal-close {
    display: none;
}

.whatsapp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.whatsapp-brand {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 18px;
}
.whatsapp-brand img {
    width: 100px;
}
.brand-iptv {
    color: #0b5bd3;
}

.brand-isa {
    color: #f59e0b;
    margin-left: 2px;
}

.whatsapp-status {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #16a34a;
    background: #e8fff1;
    border: 1px solid #b7f2cf;
    padding: 6px 12px;
    border-radius: 999px;
}

.whatsapp-hero {
    text-align: center;
    margin-bottom: 24px;
}

.whatsapp-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: #0b5bd3;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(11, 91, 211, 0.35);
}

.whatsapp-hero h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.whatsapp-subtitle {
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    max-width: 320px;
}

.whatsapp-steps {
    margin: 0 auto 24px;
    padding: 18px 18px;
    list-style: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: grid;
    gap: 12px;
    font-size: 12.5px;
    color: #334155;
}

.whatsapp-steps li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #e0ecff;
    color: #0b5bd3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}

.whatsapp-button {
    position: relative;
    display: grid;
    place-items: center;
    gap: 4px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff !important;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35);
    font-weight: 700;
}

.whatsapp-button.is-email {
    background: linear-gradient(135deg, #0b5bd3 0%, #2563eb 100%);
    box-shadow: 0 18px 35px rgba(11, 91, 211, 0.32);
}

.whatsapp-button .btn-main {
    font-size: 15px;
}

.whatsapp-button .btn-sub {
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.9;
}

.whatsapp-button .btn-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
}

.whatsapp-meta {
    margin-top: 14px;
    display: grid;
    gap: 6px;
    text-align: center;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.whatsapp-footer {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.whatsapp-back {
    color: #0b5bd3;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 480px) {
    .checkout-modal {
        padding: 24px 18px;
    }
    .checkout-trust{
        justify-content: space-evenly;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-lite {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 400px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.newsletter-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
}

.newsletter-form {
border-radius: 19px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    background: #000;
    padding: 7px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    background: #000!important;
    outline: none;
    border: 0!important;
}

.newsletter-input:focus {
    background: #000!important;
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-submit {
    padding: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    position: relative;
    z-index: 1;
}

.footer-column-title {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.copyright {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 8px;
}

.payment-methods img {
    height: 25px;
    border-radius: 4px;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.payment-methods img:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Admin Button */
.btn-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-admin:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Scroll to Top Button */
.btn-scroll-top {
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 10px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-scroll-top:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 40px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 16px;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-socials {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }

    .logo-text {
        font-size: 20px;
    }
    .stats-bar-2 {
        grid-template-columns: 1fr 1fr;
    }
}




.checkout-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    justify-content: center;
}

.chip-icon {
    font-size: 12px;
}

.checkout-chips-bottom .chip {
    font-size: 10px;
    padding: 6px 8px;
}
.checkout-alert {
    border: 1px solid #fed7aa;
    background: #fff7ed;
    border-radius: 14px;
    padding: 12px 14px;
    color: #9a3412;
    font-size: 10px;
}

.checkout-alert strong {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
}

.checkout-alert p {
    margin: 0;
    line-height: 1.5;
}

.checkout-alert-modern {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 16px;
}

.checkout-alert-modern .alert-icon {
    width: 60px;
    height: 60px;
    padding: 8px;
    border-radius: 12px;
    background: #ffedd5;
    display: grid;
    place-items: center;
    font-size: 20px;
}

/* ===== INSTALLATION PAGE ===== */
.nav-links a.active {
    color: var(--primary-light);
}

.installation-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.installation-hero {
    position: relative;
    padding: 80px 0 120px;
}

.installation-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 96, 239, 0.35), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(5, 183, 253, 0.25), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.installation-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.installation-head h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.installation-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

.installation-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}


.installation-offer-banner {
    --offer-accent-a: #60a5fa;
    --offer-accent-b: #22d3ee;
    --floating-gift-icon-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12v8a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-8m17 0H3m9 9V9m0 0H7.5A2.5 2.5 0 1 1 10 6.5c0 .9.8 2.5 2 2.5Zm0 0h4.5A2.5 2.5 0 1 0 14 6.5c0 .9-.8 2.5-2 2.5Z' stroke='%2360a5fa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --floating-gift-icon-red: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12v8a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-8m17 0H3m9 9V9m0 0H7.5A2.5 2.5 0 1 1 10 6.5c0 .9.8 2.5 2 2.5Zm0 0h4.5A2.5 2.5 0 1 0 14 6.5c0 .9-.8 2.5-2 2.5Z' stroke='%23ef4444' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(96, 165, 250, 0.34);
    background:
        linear-gradient(140deg, rgba(8, 20, 42, 0.96), rgba(4, 18, 36, 0.9));
    box-shadow: 0 20px 44px rgba(2, 10, 26, 0.5);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.installation-offer-banner::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -130px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.34), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.installation-offer-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.installation-offer-banner:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.56);
    box-shadow: 0 24px 52px rgba(2, 10, 26, 0.62);
}

.installation-offer-banner > * {
    position: relative;
    z-index: 2;
}

.installation-offer-banner--top {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 24px 24px 20px;
    align-items: center;
    column-gap: 18px;
    row-gap: 10px;
    border-color: rgba(96, 165, 250, 0.42);
    background:
        linear-gradient(120deg, rgba(96, 165, 250, 0.16) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.04) 54%, rgba(248, 113, 113, 0.14) 100%),
        radial-gradient(circle, rgba(96, 165, 250, 0.12) 1px, transparent 1.7px) 0 0/24px 24px,
        radial-gradient(circle, rgba(239, 68, 68, 0.08) 1px, transparent 1.7px) 12px 12px/24px 24px,
        linear-gradient(176deg, rgba(2, 10, 26, 0.98), rgba(3, 16, 42, 0.95));
    box-shadow:
        0 18px 44px rgba(2, 10, 30, 0.64),
        0 0 22px rgba(59, 130, 246, 0.16),
        inset 0 0 0 1px rgba(96, 165, 250, 0.16);
}
.sidebar-offer-promo.top{
    flex-direction: column;
    line-height: 0.5;
    gap: 0;
    width: fit-content;
    padding: 20px 50px;
}

.installation-offer-banner--top::before {
    inset: 0;
    width: auto;
    height: auto;
    right: auto;
    top: auto;
    background-image:
        var(--floating-gift-icon-blue),
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue),
        var(--floating-gift-icon-red);
    background-repeat: no-repeat;
    background-size: 54px 54px, 44px 44px, 34px 34px, 28px 28px;
    background-position: 2% 16%, 97% 16%, 90% 76%, 14% 78%;
    opacity: 0.4;
    animation: floatingGiftLayerA 8s ease-in-out infinite;
}

.installation-offer-banner--top::after {
    border: 1px solid rgba(96, 165, 250, 0.22);
    background-image:
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue),
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue);
    background-repeat: no-repeat;
    background-size: 42px 42px, 36px 36px, 30px 30px, 24px 24px;
    background-position: 7% 78%, 28% 8%, 96% 64%, 72% 12%;
    opacity: 0.32;
    animation: floatingGiftLayerB 9.2s ease-in-out infinite;
}

.installation-offer-banner--top .sidebar-offer-title {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: start;
    font-size: 40px;
    line-height: 1;
    margin: 0;
}

.installation-offer-banner--top .sidebar-offer-divider {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    margin-top: 6px;
}

.installation-offer-banner--top .sidebar-offer-price {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-items: center;
    align-self: end;
    margin-top: 8px;
}

.installation-offer-banner--top .sidebar-offer-price b{
    font-size: 45px;
}

.installation-offer-banner--top .sidebar-offer-promo {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    min-width: 0;
}

.offer-cta-top {
    width: fit-content;
}

.sidebar-offer-secure.top{
    text-align: center;
    width: 100%;
}
.banner-footer{
    align-items: center;
}

.installation-offer-banner--top .offer-cta--sidebar {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    width: 100% !important;
    min-width: 260px;
}

.installation-offer-banner--top .sidebar-offer-secure {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: end;
}

.installation-offer-banner--top .sidebar-offer-payments {
    grid-column: 2 / span 2;
    grid-row: 3;
    justify-content: flex-start;
    align-self: end;
}

.installation-offer-banner--sidebar {
    grid-column: 2;
    margin-top: 18px;
    padding: 24px 20px 20px;
    display: grid;
    gap: 12px;
    text-align: center;
    border-color: rgba(96, 165, 250, 0.42);
    background:
        linear-gradient(120deg, rgba(96, 165, 250, 0.16) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.04) 54%, rgba(248, 113, 113, 0.14) 100%),
        radial-gradient(circle, rgba(96, 165, 250, 0.12) 1px, transparent 1.7px) 0 0/24px 24px,
        radial-gradient(circle, rgba(239, 68, 68, 0.08) 1px, transparent 1.7px) 12px 12px/24px 24px,
        linear-gradient(176deg, rgba(2, 10, 26, 0.98), rgba(3, 16, 42, 0.95));
    box-shadow:
        0 18px 44px rgba(2, 10, 30, 0.64),
        0 0 22px rgba(59, 130, 246, 0.16),
        inset 0 0 0 1px rgba(96, 165, 250, 0.16);
    animation: sidebarOfferPulse 3.4s ease-in-out infinite;
}

.installation-offer-banner--sidebar .floating-gifts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.installation-offer-banner--sidebar .floating-gift {
    position: absolute;
    display: inline-flex;
    width: 36px;
    height: 36px;
    color: #93c5fd;
    opacity: 0.96;
    filter: drop-shadow(0 0 10px rgba(147, 197, 253, 0.45));
    animation: sidebarGiftDrift 6.4s ease-in-out infinite;
}

.installation-offer-banner--sidebar .floating-gift svg {
    width: 100%;
    height: 100%;
}

.installation-offer-banner--sidebar .gift-1 {
    top: 8%;
    left: 6%;
    width: 38px;
    height: 38px;
    animation-delay: 0s;
}

.installation-offer-banner--sidebar .gift-2 {
    top: 10%;
    right: 8%;
    width: 34px;
    height: 34px;
    color: #f87171;
    filter: drop-shadow(0 0 9px rgba(248, 113, 113, 0.42));
    animation-delay: 0.7s;
}

.installation-offer-banner--sidebar .gift-3 {
    bottom: 17%;
    left: 11%;
    width: 30px;
    height: 30px;
    animation-delay: 1.2s;
}

.installation-offer-banner--sidebar .gift-4 {
    bottom: 11%;
    right: 14%;
    width: 28px;
    height: 28px;
    color: #f87171;
    filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.34));
    animation-delay: 1.8s;
}

.installation-offer-banner--sidebar .gift-5 {
    top: 44%;
    right: 3%;
    width: 24px;
    height: 24px;
    animation-delay: 2.4s;
}

.installation-offer-banner--sidebar::before {
    content: '';
    inset: 0;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    background-image:
        var(--floating-gift-icon-blue),
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue);
    background-repeat: no-repeat;
    background-size: 64px 64px, 52px 52px, 40px 40px;
    background-position: 6% 14%, 86% 10%, 12% 78%;
    border: 0;
    opacity: 0.9;
    transform: none;
    filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.55));
    animation: floatingGiftLayerA 7.2s ease-in-out infinite;
}

.installation-offer-banner--sidebar::after {
    content: '';
    inset: 0;
    width: auto;
    height: auto;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    background-image:
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue);
    background-repeat: no-repeat;
    background-size: 56px 56px, 44px 44px;
    background-position: 96% 58%, 74% 84%;
    border: 0;
    opacity: 0.82;
    transform: none;
    filter: drop-shadow(0 0 9px rgba(248, 113, 113, 0.45));
    animation: floatingGiftLayerB 8.8s ease-in-out infinite;
}

.sidebar-offer-title {
    color: #f1f5f9;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.7px;
    text-wrap: balance;
}

.sidebar-offer-divider {
    justify-self: center;
    width: 62px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #ffffff 48%, #ef4444);
    box-shadow: 0 0 14px rgba(147, 197, 253, 0.35);
}

.sidebar-offer-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
}

.sidebar-offer-price strong {
    color: #ffffff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 22px rgba(125, 211, 252, 0.24);
}

.sidebar-offer-price span {
    color: rgba(248, 113, 113, 0.92);
    font-size: 30px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.sidebar-offer-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, 0.26);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(239, 68, 68, 0.16));
    color: #f8fafc;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: promoBadgePulse 2.4s ease-in-out infinite;
}

.sidebar-offer-promo::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -45%;
    width: 35%;
    height: 160%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(14deg);
    animation: promoBadgeShine 2.9s ease-in-out infinite;
}

.promo-gift-icon {
    flex: 0 0 auto;
    color: #f8fafc;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.28));
    animation: promoGiftBounce 1.8s ease-in-out infinite;
}

.offer-cta--sidebar {
    width: 100% !important;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    font-size: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.offer-cta--sidebar::before {
    content: '';
    position: absolute;
    width: 42%;
    height: 180%;
    top: -40%;
    left: -60%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(12deg);
    animation: sidebarOfferShine 2.9s ease-in-out infinite;
}

.offer-cta--sidebar svg {
    flex: 0 0 auto;
}

.sidebar-offer-secure {
    margin-top: 4px;
    color: rgba(148, 163, 184, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.sidebar-offer-payments {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.sidebar-offer-payments span {
    padding: 5px 9px;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.74));
    color: #e2e8f0;
    font-size: 11px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-offer-payments span:hover {
    transform: translateY(-1px);
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.36);
}

@keyframes sidebarOfferPulse {
    0%,
    100% {
        box-shadow:
            0 18px 44px rgba(2, 10, 30, 0.64),
            inset 0 0 0 1px rgba(96, 165, 250, 0.16);
    }
    50% {
        box-shadow:
            0 22px 54px rgba(2, 12, 34, 0.74),
            0 0 26px rgba(59, 130, 246, 0.2),
            inset 0 0 0 1px rgba(125, 211, 252, 0.24);
    }
}

@keyframes sidebarOfferShine {
    0% {
        left: -65%;
    }
    45% {
        left: 135%;
    }
    100% {
        left: 135%;
    }
}

@keyframes promoBadgePulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(147, 197, 253, 0);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
    }
}

@keyframes promoBadgeShine {
    0% {
        left: -50%;
    }
    45% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

@keyframes promoGiftBounce {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-2px) rotate(-6deg);
    }
}

@keyframes floatingGiftLayerA {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-8px) translateX(2px);
    }
}

@keyframes floatingGiftLayerB {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(-2px);
    }
}

@keyframes sidebarGiftDrift {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-4deg);
    }
}

.installation-offer-banner .offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(125, 211, 252, 0.42);
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.installation-offer-banner .offer-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

.installation-offer-banner .offer-title {
    color: #ffffff;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.6px;
    text-wrap: balance;
}

.installation-offer-banner .offer-description {
    color: rgba(241, 245, 249, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.installation-offer-banner .offer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.installation-offer-banner .offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.46);
}

@media (prefers-reduced-motion: reduce) {
    .installation-offer-banner,
    .installation-offer-banner--top::before,
    .installation-offer-banner--top::after,
    .installation-offer-banner--sidebar,
    .installation-offer-banner--sidebar::before,
    .installation-offer-banner--sidebar::after,
    .sidebar-offer-promo,
    .sidebar-offer-promo::after,
    .promo-gift-icon,
    .offer-cta--sidebar::before,
    .installation-offer-banner--sidebar .floating-gift {
        animation: none !important;
        transition: none !important;
    }
}

.installation-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(18, 23, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.installation-tab .tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.installation-tab.active {
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.28), rgba(5, 183, 253, 0.2));
    border-color: rgba(0, 96, 239, 0.5);
    color: var(--text-primary);
    box-shadow: 0 12px 32px rgba(0, 96, 239, 0.3);
}

.installation-panel {
    display: none;
}

.installation-panel.active {
    display: block;
}

.installation-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.installation-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(15, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(3, 10, 26, 0.5);
}

.installation-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.installation-steps {
    list-style: none;
    display: grid;
    gap: 16px;
}

.installation-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--text-secondary);
}

.installation-steps .step-number {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.18);
    border: 1.5px solid rgba(0, 96, 239, 0.55);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(3, 162, 254, 0.25);
}

.installation-assist {
    padding: 28px;
    border-radius: 22px;
    background: rgba(12, 15, 19, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.installation-assist h3 {
    font-size: 20px;
}

.installation-assist p {
    color: var(--text-secondary);
    font-size: 14px;
}

.installation-assist .assist-note {
    color: var(--text-primary);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 12px;
    border-radius: 12px;
}

.assist-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.16);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.assist-btn {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    font-weight: 600;
}

.installation-download {
    margin-top: 36px;
    padding: 22px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(7, 12, 24, 0.92), rgba(10, 24, 40, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.installation-download::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -120px;
    background: radial-gradient(circle, rgba(3, 162, 254, 0.35), transparent 70%);
    opacity: 0.7;
}

.installation-download::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(0, 96, 239, 0.35), transparent 70%);
    opacity: 0.6;
}

.download-info {
    position: relative;
    z-index: 1;
}

.download-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(3, 162, 254, 0.2);
    border: 1px solid rgba(3, 162, 254, 0.5);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.installation-download h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.installation-download p {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-btn {
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.95), rgba(5, 183, 253, 0.95));
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(3, 162, 254, 0.35);
    position: relative;
    z-index: 1;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(3, 162, 254, 0.45);
}

@media (max-width: 1024px) {
    .installation-layout {
        grid-template-columns: 1fr;
    }
    
    .installation-offer-banner--top {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .installation-offer-banner--top .sidebar-offer-title,
    .installation-offer-banner--top .sidebar-offer-divider,
    .installation-offer-banner--top .sidebar-offer-price,
    .installation-offer-banner--top .sidebar-offer-promo,
    .installation-offer-banner--top .offer-cta--sidebar,
    .installation-offer-banner--top .sidebar-offer-secure,
    .installation-offer-banner--top .sidebar-offer-payments {
        grid-column: auto;
        grid-row: auto;
    }

    .installation-offer-banner--top .sidebar-offer-title { order: 1; }
    .installation-offer-banner--top .sidebar-offer-price { order: 2; }
    .installation-offer-banner--top .sidebar-offer-promo { order: 3; }
    .installation-offer-banner--top .offer-cta--sidebar { order: 4; }
    .installation-offer-banner--top .sidebar-offer-secure { order: 5; }
    .installation-offer-banner--top .sidebar-offer-payments { order: 6; }

    .installation-offer-banner--top .sidebar-offer-divider {
        display: none;
    }

    .installation-offer-banner--top .sidebar-offer-promo {
        width: auto;
        justify-self: stretch;
        min-width: 0;
    }

    .installation-offer-banner--top .offer-cta--sidebar {
        width: 100% !important;
        min-width: 0;
        align-self: auto;
    }

    .installation-offer-banner--top .sidebar-offer-payments {
        justify-content: center;
    }

    .installation-offer-banner--sidebar {
        grid-column: auto;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .installation-page {
        padding-top: 100px;
    }

    .installation-head h1 {
        font-size: 38px;
    }

    .installation-tabs {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .installation-card {
        padding: 24px;
    }

    .installation-download {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .installation-offer-banner--sidebar {
        padding: 20px 16px 16px;
        gap: 10px;
    }

    .sidebar-offer-title {
        font-size: 30px;
    }

    .sidebar-offer-price strong {
        font-size: 42px;
    }

    .sidebar-offer-price span {
        font-size: 24px;
    }

    .installation-offer-banner--top {
        padding: 16px;
        gap: 8px;
    }

    .installation-offer-banner--top .sidebar-offer-title {
        font-size: 32px;
    }

    .installation-offer-banner--top .sidebar-offer-price,
    .installation-offer-banner--top .sidebar-offer-divider,
    .installation-offer-banner--top .sidebar-offer-secure,
    .installation-offer-banner--top .sidebar-offer-payments {
        justify-self: center;
    }

    .installation-download {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== INSTALLATION PAGE (LIGHT THEME) ===== */
body.light-theme .installation-glow {
    background: radial-gradient(circle at 20% 20%, rgba(0, 96, 239, 0.18), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(5, 183, 253, 0.12), transparent 55%);
}

body.light-theme .installation-head p,
body.light-theme .installation-steps li,
body.light-theme .installation-assist p,
body.light-theme .installation-download p,
body.light-theme .installation-offer-banner .offer-description {
    color: rgba(15, 23, 42, 0.72);
}

body.light-theme .installation-tab {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.12);
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .installation-tab .tab-icon {
    background: rgba(15, 23, 42, 0.36);
    color: #0f172a;
}

body.light-theme .installation-tab.active {
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.18), rgba(5, 183, 253, 0.12));
    border-color: rgba(0, 96, 239, 0.35);
    color: #0f172a;
    box-shadow: 0 10px 26px rgba(0, 96, 239, 0.2);
}

body.light-theme .installation-card,
body.light-theme .installation-assist {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

body.light-theme .installation-offer-banner {
    background: linear-gradient(135deg, rgba(236, 247, 255, 0.96), rgba(225, 241, 255, 0.94));
    border-color: rgba(0, 96, 239, 0.22);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

body.light-theme .installation-offer-banner::before {
    background: radial-gradient(circle, rgba(3, 162, 254, 0.2), transparent 70%);
}

body.light-theme .installation-offer-banner--sidebar::before {
    content: '';
    background-image:
        var(--floating-gift-icon-blue),
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue);
    background-repeat: no-repeat;
    background-size: 64px 64px, 52px 52px, 40px 40px;
    background-position: 6% 14%, 86% 10%, 12% 78%;
    opacity: 0.84;
    filter: drop-shadow(0 0 9px rgba(0, 85, 164, 0.34));
    animation: floatingGiftLayerA 7.2s ease-in-out infinite;
}

body.light-theme .installation-offer-banner .offer-pill {
    background: rgba(0, 96, 239, 0.14);
    border-color: rgba(0, 96, 239, 0.32);
    color: #0f172a;
}

body.light-theme .installation-offer-banner .offer-pill::before {
    background: #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

body.light-theme .installation-offer-banner .offer-title {
    color: #0f172a;
}

body.light-theme .installation-offer-banner--sidebar,
body.light-theme .installation-offer-banner--top {
    --floating-gift-icon-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12v8a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-8m17 0H3m9 9V9m0 0H7.5A2.5 2.5 0 1 1 10 6.5c0 .9.8 2.5 2 2.5Zm0 0h4.5A2.5 2.5 0 1 0 14 6.5c0 .9-.8 2.5-2 2.5Z' stroke='%230055a4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --floating-gift-icon-red: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12v8a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-8m17 0H3m9 9V9m0 0H7.5A2.5 2.5 0 1 1 10 6.5c0 .9.8 2.5 2 2.5Zm0 0h4.5A2.5 2.5 0 1 0 14 6.5c0 .9-.8 2.5-2 2.5Z' stroke='%23ef4135' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    border-color: rgba(0, 85, 164, 0.25);
    background:
        radial-gradient(circle, rgba(0, 85, 164, 0.12) 1px, transparent 1.7px) 0 0/24px 24px,
        radial-gradient(circle, rgba(239, 65, 53, 0.08) 1px, transparent 1.7px) 12px 12px/24px 24px,
        linear-gradient(120deg, rgba(0, 85, 164, 0.12) 0%, rgba(255, 255, 255, 0.98) 38%, rgba(255, 255, 255, 0.98) 62%, rgba(239, 65, 53, 0.12) 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

body.light-theme .installation-offer-banner--sidebar::after,
body.light-theme .installation-offer-banner--top::after {
    opacity: 0.14;
}

body.light-theme .installation-offer-banner--sidebar::after {
    content: '';
    background-image:
        var(--floating-gift-icon-red),
        var(--floating-gift-icon-blue);
    background-repeat: no-repeat;
    background-size: 56px 56px, 44px 44px;
    background-position: 96% 58%, 74% 84%;
    opacity: 0.76;
    filter: drop-shadow(0 0 8px rgba(239, 65, 53, 0.32));
    animation: floatingGiftLayerB 8.8s ease-in-out infinite;
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-title,
body.light-theme .installation-offer-banner--top .sidebar-offer-title {
    color: #0a2f57;
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-divider,
body.light-theme .installation-offer-banner--top .sidebar-offer-divider {
    background: linear-gradient(90deg, #0055a4, #ffffff 48%, #ef4135);
    box-shadow: 0 0 10px rgba(0, 85, 164, 0.22);
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-price strong,
body.light-theme .installation-offer-banner--top .sidebar-offer-price strong {
    color: #0055a4;
    text-shadow: 0 4px 14px rgba(0, 85, 164, 0.16);
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-price span,
body.light-theme .installation-offer-banner--top .sidebar-offer-price span {
    color: #dc2626;
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-promo,
body.light-theme .installation-offer-banner--top .sidebar-offer-promo {
    border-color: rgba(0, 85, 164, 0.25);
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.08), rgba(239, 65, 53, 0.06));
    color: #b91c1c;
}

body.light-theme .installation-offer-banner--sidebar .promo-gift-icon,
body.light-theme .installation-offer-banner--top .promo-gift-icon {
    color: #0055a4;
    filter: drop-shadow(0 0 6px rgba(0, 85, 164, 0.22));
}

body.light-theme .installation-offer-banner--sidebar .gift-1,
body.light-theme .installation-offer-banner--sidebar .gift-3,
body.light-theme .installation-offer-banner--sidebar .gift-5 {
    color: #0055a4;
    filter: drop-shadow(0 0 8px rgba(0, 85, 164, 0.28));
}

body.light-theme .installation-offer-banner--sidebar .gift-2,
body.light-theme .installation-offer-banner--sidebar .gift-4 {
    color: #ef4135;
    filter: drop-shadow(0 0 7px rgba(239, 65, 53, 0.26));
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-secure,
body.light-theme .installation-offer-banner--top .sidebar-offer-secure {
    color: rgba(30, 41, 59, 0.72);
}

body.light-theme .installation-offer-banner--sidebar .sidebar-offer-payments span,
body.light-theme .installation-offer-banner--top .sidebar-offer-payments span {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.14);
    color: #0f172a;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.08);
}

body.light-theme .installation-offer-banner--sidebar .offer-cta--sidebar,
body.light-theme .installation-offer-banner--top .offer-cta--sidebar {
    background: linear-gradient(135deg, #0055a4, #1d4ed8);
    box-shadow: 0 14px 24px rgba(0, 85, 164, 0.28);
    border-color: rgba(0, 85, 164, 0.25);
}

body.light-theme .installation-steps .step-number {
    background: rgba(0, 96, 239, 0.12);
    border-color: rgba(0, 96, 239, 0.3);
    color: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(3, 162, 254, 0.18);
}

body.light-theme .assist-icon {
    background: rgba(16, 185, 129, 0.12);
}

body.light-theme .installation-assist .assist-note {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
    color: #0f172a;
}

body.light-theme .installation-download {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 245, 255, 0.9));
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .installation-download::before {
    background: radial-gradient(circle, rgba(3, 162, 254, 0.2), transparent 70%);
}

body.light-theme .installation-download::after {
    background: radial-gradient(circle, rgba(0, 96, 239, 0.18), transparent 70%);
}

body.light-theme .download-pill {
    background: rgba(0, 96, 239, 0.12);
    border-color: rgba(0, 96, 239, 0.3);
    color: #0f172a;
}

body.light-theme .download-btn {
    box-shadow: 0 14px 28px rgba(0, 96, 239, 0.25);
}

/* ===== DOWNLOADS PAGE ===== */
.downloads-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.downloads-hero {
    position: relative;
    padding: 80px 0 120px;
}

.downloads-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(0, 96, 239, 0.35), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(5, 183, 253, 0.2), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.downloads-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.downloads-head h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.downloads-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.download-app-card {
    background: rgba(15, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 46px rgba(3, 10, 26, 0.45);
    min-height: 260px;
}

.download-app-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.download-app-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-app-logo {
    overflow: hidden;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.35), rgba(5, 183, 253, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.download-app-logo img.app-logo {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.download-app-card h3 {
    font-size: 18px;
}

.download-app-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-app-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.download-app-rating .stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
}

.download-app-rating .rating-text {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 12px;
}

.download-app-meta {
    display: grid;
    color: var(--text-secondary);
    font-size: 13px;
}

.download-app-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.download-app-btn {
    text-decoration: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
}

.download-app-btn.primary {
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(3, 162, 254, 0.35);
}

.download-app-btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.download-app-btn.download-open {
    cursor: pointer;
}

@media (max-width: 768px) {
    .downloads-page {
        padding-top: 100px;
    }

    .downloads-head h1 {
        font-size: 36px;
    }
}

/* ===== DOWNLOADS PAGE (LIGHT THEME) ===== */
body.light-theme .downloads-glow {
    background: radial-gradient(circle at 15% 15%, rgba(0, 96, 239, 0.18), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(5, 183, 253, 0.12), transparent 55%);
}

body.light-theme .downloads-head p,
body.light-theme .download-app-card p,
body.light-theme .download-app-meta {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .download-app-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

body.light-theme .download-app-rating {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .download-app-rating .rating-text {
    color: #0f172a;
}

body.light-theme .download-app-btn.ghost {
    border-color: rgba(15, 23, 42, 0.16);
    color: #0f172a;
}

body.light-theme .download-app-logo {
    background: linear-gradient(135deg, rgba(0, 96, 239, 0.18), rgba(5, 183, 253, 0.12));
    border-color: rgba(0, 96, 239, 0.2);
    color: #0f172a;
}

/* ===== DOWNLOAD MODAL ===== */
.download-modal {
    background: rgba(12, 15, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    max-width: 620px;
    width: min(92vw, 620px);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(2, 10, 24, 0.6);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.download-modal-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.download-modal-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
}

.download-modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.download-modal-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 6px;
}

.download-modal-rating .stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
}

.download-modal-rating .rating-text {
    font-weight: 700;
    font-size: 13px;
}

.download-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
}

.download-modal-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.download-modal-desc {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.download-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.download-modal-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.18);
    border: 1px solid rgba(0, 96, 239, 0.4);
    font-size: 12px;
}

.download-modal-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
}

.download-modal-links-title {
    margin: 10px 0 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.download-modal-actions a {
    max-width: 104px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}

.download-modal-actions a img {
    max-height: 32px;
    border-radius: 10px;
    object-fit: contain;
}

.download-modal-downloader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
}

.download-modal-downloader .downloader-logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
}

.download-modal-downloader span {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
}

.downloader-code-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

#downloadDownloaderCode {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.downloader-copy-btn {
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.downloader-copy-btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.download-modal-shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 16px 0 18px;
}

.download-modal-shots img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

@media (max-width: 768px) {
    .download-modal-shots {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .download-modal-shots img {
        max-height: 100px;
    }
}

body.light-theme .download-modal {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .download-modal-meta span {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .download-modal-actions a {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .download-modal-downloader {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
}

/* ===== BLOG PAGE ===== */
.blog-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.blog-hero {
    position: relative;
    padding: 80px 0 20px;
}

.blog-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(0, 96, 239, 0.32), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(5, 183, 253, 0.2), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.blog-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.blog-head h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.blog-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

.blog-featured {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(15, 18, 24, 0.95), rgba(10, 14, 24, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(3, 10, 26, 0.45);
    align-items: center;
}

.blog-featured-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.2);
    border: 1px solid rgba(0, 96, 239, 0.45);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-featured-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.blog-featured-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-link {
    color: var(--primary-light);
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.blog-card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(15, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(3, 10, 26, 0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.blog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blog-date {
    color: var(--text-secondary) !important;
    font-size: 12px;
}

.blog-card h3 {
    font-size: 18px;
    color: var(--text-primary) !important;
}

.blog-card p {
    color: var(--text-secondary)!important;
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-secondary) !important;
    margin-top: -4px;
}

@media (max-width: 1024px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding-top: 100px;
    }

    .blog-head h1 {
        font-size: 36px;
    }
}

/* ===== BLOG PAGE (LIGHT THEME) ===== */
body.light-theme .blog-featured-card,
body.light-theme .blog-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

body.light-theme .blog-head p,
body.light-theme .blog-featured-content p,
body.light-theme .blog-card p,
body.light-theme .blog-date {
    color: rgba(15, 23, 42, 0.7);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.contact-hero {
    position: relative;
    padding: 80px 0 120px;
}

.contact-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(0, 96, 239, 0.32), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(5, 183, 253, 0.2), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.contact-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.contact-head h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.contact-head p {
    color: var(--text-secondary);
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(15, 18, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 22px 50px rgba(3, 10, 26, 0.45);
}

.contact-card-head {
    margin-bottom: 18px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.2);
    border: 1px solid rgba(0, 96, 239, 0.45);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card-head p {
    color: var(--text-secondary);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-primary);
    max-width: 651px;
    max-height: 400px;
}

.contact-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(1em + 2px), calc(100% - 11px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.contact-field select option {
    background: #0f1319;
    color: #ffffff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(0, 96, 239, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 96, 239, 0.2);
}

.contact-submit {
    width: fit-content;
    align-items: center;
    gap: 10px;
    border: none;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-info-card {
    background: rgba(12, 15, 19, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
}

.contact-info-card.highlight {
    background: linear-gradient(160deg, rgba(9, 18, 34, 0.98), rgba(11, 22, 40, 0.9));
    border-color: rgba(5, 183, 253, 0.35);
    position: relative;
    overflow: hidden;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.2);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
}

.contact-info-card.highlight::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -90px;
    background: radial-gradient(circle, rgba(5, 183, 253, 0.4), transparent 70%);
}

.contact-whatsapp-card {
    display: grid;
    gap: 16px;
    text-align: center;
    padding: 26px;
}

.contact-whatsapp-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.contact-whatsapp-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 96, 239, 0.18);
    display: grid;
    place-items: center;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.contact-whatsapp-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

.metric-card strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-top: 4px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.35);
}

.contact-info-card p {
    color: var(--text-secondary);
}

.contact-info-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }

    .contact-head h1 {
        font-size: 36px;
    }
}

/* ===== CONTACT PAGE (LIGHT THEME) ===== */
body.light-theme .contact-card,
body.light-theme .contact-info-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

body.light-theme .contact-head p,
body.light-theme .contact-info-card p {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .contact-field input,
body.light-theme .contact-field select,
body.light-theme .contact-field textarea {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .contact-field select {
    background-color: #ffffff;
}

body.light-theme .contact-field select option {
    background: #ffffff;
    color: #0f172a;
}

body.light-theme .contact-card-head p {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .contact-badge {
    color: #0f172a;
    background: rgba(0, 96, 239, 0.12);
    border-color: rgba(0, 96, 239, 0.3);
}

body.light-theme .contact-info-card.highlight {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 96, 239, 0.2);
}

body.light-theme .contact-info-icon {
    color: #0f172a;
}

body.light-theme .metric-card {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .metric-card strong {
    color: #0f172a;
}

body.light-theme .contact-whatsapp-status {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

body.light-theme .contact-info-btn {
    color: #0f172a;
}

body.light-theme .downloader-copy-btn {
    border-color: rgba(15, 23, 42, 0.16);
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
}

body.light-theme .download-modal-rating .rating-text {
    color: #0f172a;
}

body.light-theme .download-modal-tags span {
    color: #0f172a;
    background: rgba(0, 96, 239, 0.12);
    border-color: rgba(0, 96, 239, 0.3);
}


body {
    font-family: 'Manrope', 'Inter', sans-serif;
    background: radial-gradient(circle at top left, rgba(27, 77, 255, 0.14), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(225, 29, 46, 0.12), transparent 45%),
                var(--bg-primary);
}

h1, h2, h3, h4, h5 {
    font-family: 'Alexandria', 'Manrope', 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
}

.promo-banner {
    background: linear-gradient(135deg, #1b4dff 0%, #e11d2e 100%);
    box-shadow: 0 8px 28px rgba(27, 77, 255, 0.35);
}

.header::before {
    background: rgba(10, 15, 31, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-links a::before {
    background: linear-gradient(135deg, #1b4dff 0%, #e11d2e 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #1b4dff 0%, #e11d2e 100%);
    box-shadow: 0 16px 36px rgba(27, 77, 255, 0.35);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
}

.hero-section::before {
    opacity: 0.18;
}

.top-feature-card,
.feature-item,
.pricing-card,
.shared-pricing-card,
.faq-item,
.download-app-card,
.blog-card,
.contact-card,
.contact-info-card,
.pricing-trust,
.faq-support-card,
.download-modal,
.checkout-modal {
    background: rgba(12, 16, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 55px rgba(6, 12, 28, 0.45);
}

/* ===== CHECKOUT MODAL (DARK THEME) ===== */
body:not(.light-theme) .checkout-modal {
    background: linear-gradient(160deg, rgba(8, 13, 28, 0.96), rgba(5, 10, 22, 0.94));
    color: #e7efff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body:not(.light-theme) .checkout-header h3 {
    color: #f4f8ff;
}

body:not(.light-theme) .checkout-subtitle,
body:not(.light-theme) .checkout-methods-label,
body:not(.light-theme) .form-field span {
    color: rgba(198, 211, 235, 0.86);
}

body:not(.light-theme) .modal-close {
    background: rgba(241, 245, 249, 0.92);
    color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

body:not(.light-theme) .method-option span {
    border-color: rgba(85, 142, 255, 0.34);
    background: rgba(8, 25, 56, 0.62);
    color: #d8e6ff;
}

body:not(.light-theme) .method-option span em {
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.16);
    border-color: rgba(14, 165, 233, 0.38);
}

body:not(.light-theme) .method-option input:checked + span {
    border-color: rgba(27, 77, 255, 0.62);
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.26), rgba(225, 29, 46, 0.16));
    color: #f6f9ff;
    box-shadow: 0 10px 24px rgba(27, 77, 255, 0.26);
}

body:not(.light-theme) .form-field input,
body:not(.light-theme) .form-field select {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
}

body:not(.light-theme) .form-field input::placeholder,
body:not(.light-theme) .form-field select::placeholder {
    color: rgba(203, 213, 225, 0.86);
}

body:not(.light-theme) .form-field input:focus,
body:not(.light-theme) .form-field select:focus {
    outline: none;
    border-color: rgba(27, 77, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(27, 77, 255, 0.2);
}

body:not(.light-theme) .input-wrap .input-icon {
    color: rgba(186, 200, 227, 0.92);
}

body:not(.light-theme) .checkout-summary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

body:not(.light-theme) .summary-label {
    color: rgba(198, 211, 235, 0.82);
}

body:not(.light-theme) .summary-value {
    color: #f8fbff;
}

body:not(.light-theme) .checkout-trust {
    color: rgba(186, 198, 220, 0.84);
    border-top-color: rgba(148, 163, 184, 0.28);
}

body:not(.light-theme) .checkout-alert {
    border-color: rgba(251, 191, 36, 0.38);
    background: rgba(251, 191, 36, 0.13);
    color: #fef3c7;
}

body:not(.light-theme) .checkout-alert-modern .alert-icon {
    background: rgba(251, 191, 36, 0.22);
}

/* ===== WHATSAPP OVERLAY (DARK THEME) ===== */
body:not(.light-theme) .whatsapp-modal {
    background: linear-gradient(160deg, rgba(8, 13, 28, 0.97), rgba(5, 10, 22, 0.95));
    color: #e7efff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 82px rgba(2, 6, 23, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body:not(.light-theme) .whatsapp-status {
    color: #86efac;
    background: rgba(22, 163, 74, 0.16);
    border-color: rgba(22, 163, 74, 0.38);
}

body:not(.light-theme) .whatsapp-hero h3 {
    color: #f4f8ff;
}

body:not(.light-theme) .whatsapp-subtitle {
    color: rgba(198, 211, 235, 0.86);
}

body:not(.light-theme) .whatsapp-steps {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    color: #dbe7ff;
}

body:not(.light-theme) .step-num {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.26), rgba(225, 29, 46, 0.16));
    color: #f8fbff;
}

body:not(.light-theme) .whatsapp-meta {
    color: rgba(186, 198, 220, 0.84);
}

body:not(.light-theme) .whatsapp-footer {
    border-top-color: rgba(148, 163, 184, 0.28);
    color: rgba(186, 198, 220, 0.84);
}

body:not(.light-theme) .whatsapp-footer .btn-admin {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #cfe0ff;
}

body:not(.light-theme) .whatsapp-footer .btn-admin:hover {
    background: rgba(27, 77, 255, 0.18);
    border-color: rgba(27, 77, 255, 0.4);
    box-shadow: 0 12px 26px rgba(27, 77, 255, 0.2);
    color: #f8fbff;
}

body:not(.light-theme) .whatsapp-footer .payment-icon {
    color: #e2e8f0;
    opacity: 0.92;
}

.pricing-card.featured,
.shared-pricing-card.featured {
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow: 0 26px 60px rgba(225, 29, 46, 0.25);
}

.features-section::before,
.pricing-section::before,
.faq-section::before,
.shared-pricing-section::before {
    background: linear-gradient(to bottom, rgba(27, 77, 255, 0.2), transparent);
}

.pricing-title,
.shared-pricing-title,
.features-title,
.faq-title,
.downloads-head h1,
.blog-head h1,
.contact-head h1 {
    letter-spacing: -0.6px;
}

.footer {
    background: linear-gradient(160deg, rgba(9, 12, 22, 0.98), rgba(6, 8, 16, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer::before {
    opacity: 0.6;
}

body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: rgba(248, 250, 252, 0.9);
    --bg-tertiary: #eef2f7;
    --text-primary: #0f172a;
    --text-secondary: rgba(15, 23, 42, 0.72);
    --primary-light: var(--secondary);
    --btn-border: rgba(27, 77, 255, 0.28);
    --btn-border-strong: rgba(27, 77, 255, 0.45);
    --btn-border-gradient-start: rgba(27, 77, 255, 0.35);
    --btn-border-gradient-end: rgba(225, 29, 46, 0.28);
    --btn-shadow: rgba(27, 77, 255, 0.22);
    --btn-shadow-strong: rgba(27, 77, 255, 0.35);
    --btn-surface: rgba(15, 23, 42, 0.04);
    --btn-surface-hover: rgba(15, 23, 42, 0.08);
}

body.light-theme {
    background: radial-gradient(circle at top left, rgba(27, 77, 255, 0.08), transparent 50%),
                radial-gradient(circle at 85% 10%, rgba(225, 29, 46, 0.08), transparent 50%),
                var(--bg-primary);
}

body.light-theme .hero-section::before {
    opacity: 0.12;
    filter: saturate(1.05) brightness(1.06);
}

body.light-theme .hero-section::after {
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.2) 0%, rgba(248, 250, 252, 0.2) 45%, rgba(248, 250, 252, 0.3) 100%),
        radial-gradient(circle at 20% 10%, rgba(27, 77, 255, 0.08), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(225, 29, 46, 0.08), transparent 55%);
        opacity: 0.2;
}

body.light-theme .hero-title-spotlight {
    color: #0f172a;
    text-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

body.light-theme .hero-subtitle-spotlight {
    color: rgba(15, 23, 42, 0.8);
}

body.light-theme .hero-description-spotlight {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .hero-metric-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

body.light-theme .hero-metric-card span {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .hero-trustline {
    color: rgba(15, 23, 42, 0.65);
}

body.light-theme .hero-pill {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.92), rgba(225, 29, 46, 0.88));
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.22);
}

body.light-theme .header::before {
    background: rgba(248, 250, 252, 0.9);
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

body.light-theme .btn-secondary,
body.light-theme .btn-outline {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .btn-primary,
body.light-theme .btn-primary-gradient,
body.light-theme .btn-plan,
body.light-theme .btn-shared-plan,
body.light-theme .btn-why-choose {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(27, 77, 255, 0.3);
}

body.light-theme .top-feature-card,
body.light-theme .feature-item,
body.light-theme .pricing-card,
body.light-theme .shared-pricing-card,
body.light-theme .faq-item,
body.light-theme .download-app-card,
body.light-theme .blog-card,
body.light-theme .contact-card,
body.light-theme .contact-info-card,
body.light-theme .pricing-trust,
body.light-theme .faq-support-card,
body.light-theme .download-modal,
body.light-theme .checkout-modal {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body.light-theme .footer {
    background: linear-gradient(160deg, #ffffff, #f1f5f9);
    border-top-color: rgba(15, 23, 42, 0.12);
}

/* ===== DOWNLOAD HIGHLIGHTS ===== */
.downloads-highlights {
    margin-top: 64px;
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.downloads-highlights::before,
.downloads-highlights::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.28;
    z-index: 0;
    animation: downloadsAura 10s ease-in-out infinite;
}

.downloads-highlights::before {
    background: radial-gradient(circle, rgba(27, 77, 255, 0.56), transparent 72%);
    top: -65px;
    right: 4%;
}

.downloads-highlights::after {
    background: radial-gradient(circle, rgba(225, 29, 46, 0.48), transparent 72%);
    bottom: -80px;
    left: 2%;
    animation-delay: 2.2s;
}

.highlight-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 32px;
    padding: 30px 30px 28px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(9, 14, 30, 0.96), rgba(9, 14, 27, 0.9) 48%, rgba(21, 13, 25, 0.86) 100%);
    border: 1px solid rgba(27, 77, 255, 0.24);
    box-shadow: 0 26px 58px rgba(4, 9, 24, 0.52);
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 14%, rgba(27, 77, 255, 0.28), transparent 54%),
        radial-gradient(circle at 92% 82%, rgba(225, 29, 46, 0.2), transparent 52%);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.08) 50%, transparent 62%);
    opacity: 0;
    transform: translateX(-18%);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.005);
    border-color: rgba(225, 29, 46, 0.42);
    box-shadow: 0 34px 70px rgba(4, 9, 24, 0.65), 0 0 0 1px rgba(225, 29, 46, 0.12);
}

.highlight-card:hover::after {
    opacity: 1;
    transform: translateX(6%);
}

.highlight-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.highlight-card.reverse .highlight-media {
    order: 2;
}

.highlight-media {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.14), rgba(225, 29, 46, 0.1));
    border: 1px solid rgba(27, 77, 255, 0.24);
}

.highlight-media img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    filter: saturate(1.05) contrast(1.03);
    transform: translateZ(0) scale(1);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.highlight-card:hover .highlight-media img {
    transform: scale(1.04);
    filter: saturate(1.12) contrast(1.06);
}

.highlight-content h3 {
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.highlight-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.75;
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-content::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0.9;
}

.highlight-content ul {
    list-style: none;
    display: grid;
    gap: 11px;
    color: var(--text-secondary);
    font-size: 14px;
}

.highlight-content ul li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.highlight-content ul li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: absolute;
    left: 0;
    top: 6px;
    box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.14);
}

.highlight-card .floating-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.24), rgba(225, 29, 46, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--text-primary);
    z-index: 3;
    animation: highlightChipFloat 6.2s ease-in-out infinite;
    backdrop-filter: blur(6px);
}

.highlight-card.reverse .floating-chip {
    right: auto;
    left: 16px;
}

@keyframes downloadsAura {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(14px); }
}

@keyframes highlightChipFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 1024px) {
    .highlight-card,
    .highlight-card.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card.reverse .highlight-media {
        order: 0;
    }

    .highlight-content::before {
        left: 0;
    }
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .highlight-card .floating-chip,
    .highlight-card.reverse .floating-chip {
        position: static;
        justify-self: start;
        margin-bottom: 2px;
    }

    .highlight-content h3 {
        font-size: 22px;
    }

    .highlight-content::before {
        display: none;
    }
}

/* ===== DOWNLOAD HIGHLIGHTS (LIGHT THEME) ===== */
body.light-theme .highlight-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
    border-color: rgba(27, 77, 255, 0.24);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

body.light-theme .highlight-card::before {
    background:
        radial-gradient(circle at 10% 14%, rgba(27, 77, 255, 0.14), transparent 54%),
        radial-gradient(circle at 92% 82%, rgba(225, 29, 46, 0.1), transparent 52%);
}

body.light-theme .highlight-card:hover {
    border-color: rgba(225, 29, 46, 0.32);
    box-shadow: 0 24px 46px rgba(225, 29, 46, 0.12);
}

body.light-theme .highlight-card .floating-chip {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.14), rgba(225, 29, 46, 0.12));
    border-color: rgba(27, 77, 255, 0.22);
    color: #0f172a;
}

body.light-theme .highlight-media {
    background: linear-gradient(135deg, rgba(27, 77, 255, 0.09), rgba(225, 29, 46, 0.08));
    border-color: rgba(27, 77, 255, 0.2);
}

body.light-theme .highlight-content p,
body.light-theme .highlight-content ul {
    color: rgba(15, 23, 42, 0.7);
}

body.light-theme .highlight-content ul li::before {
    box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.1);
}

/* ===== LIGHT THEME BLUE->RED ACCENTS ===== */
body.light-theme .feature-badge:hover {
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 18px 40px rgba(225, 29, 46, 0.18);
}

body.light-theme .toggle-btn:hover {
    border-color: rgba(225, 29, 46, 0.45);
}

body.light-theme .pricing-card.featured {
    border: 2px solid rgba(27, 77, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(27, 77, 255, 0.18),
        0 0 60px rgba(225, 29, 46, 0.12);
}

body.light-theme .pricing-card.featured:hover {
    box-shadow:
        0 28px 60px rgba(27, 77, 255, 0.24),
        0 0 80px rgba(225, 29, 46, 0.18);
}

body.light-theme .shared-pricing-card.featured {
    border: 2px solid rgba(27, 77, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(27, 77, 255, 0.18),
        0 0 60px rgba(225, 29, 46, 0.12);
}

body.light-theme .shared-pricing-card.featured:hover {
    box-shadow:
        0 28px 60px rgba(27, 77, 255, 0.24),
        0 0 80px rgba(225, 29, 46, 0.18);
}

body.light-theme .best-choice-badge {
    box-shadow: 0 10px 24px rgba(225, 29, 46, 0.35);
}

body.light-theme .newsletter-submit {
    box-shadow:
        0 10px 24px rgba(27, 77, 255, 0.25),
        0 6px 18px rgba(225, 29, 46, 0.2);
}

body.light-theme .newsletter-submit:hover {
    box-shadow:
        0 16px 32px rgba(27, 77, 255, 0.35),
        0 8px 22px rgba(225, 29, 46, 0.25);
}

body.light-theme .vod-badge:hover {
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 12px 28px rgba(225, 29, 46, 0.18);
}

body.light-theme .payment-icon:hover {
    color: var(--secondary);
}

/* ===== UNIFIED BUTTON, BORDER, SHADOW COLORS ===== */
.btn-primary,
.btn-plan,
.btn-shared-plan,
.btn-primary-gradient,
.btn-why-choose,
.btn-reviews,
.btn-admin,
.btn-scroll-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 30px var(--btn-shadow);
}

.btn-primary:hover,
.btn-plan:hover,
.btn-shared-plan:hover,
.btn-primary-gradient:hover,
.btn-why-choose:hover,
.btn-reviews:hover,
.btn-admin:hover,
.btn-scroll-top:hover {
    box-shadow: 0 16px 38px var(--btn-shadow-strong);
}

.btn-icon,
.btn-mobile {
    border-color: var(--btn-border);
}

.btn-icon:hover,
.btn-mobile:hover {
    border-color: var(--btn-border-strong);
}

.btn-icon::before,
.btn-mobile::before {
    background: linear-gradient(135deg, var(--btn-border-gradient-start), var(--btn-border-gradient-end));
}

.btn-secondary,
.btn-outline,
.btn-secondary-outline {
    background: var(--btn-surface);
    border-color: var(--btn-border);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary-outline:hover {
    background: var(--btn-surface-hover);
    border-color: var(--btn-border-strong);
}

.promo-btn,
.btn-mobile-cta {
    box-shadow: 0 10px 24px var(--btn-shadow);
}

/* ===== FORCE BLUE/RED CTA IN LIGHT MODE ===== */
body.light-theme .btn-primary,
body.light-theme .btn-plan,
body.light-theme .btn-shared-plan,
body.light-theme .btn-primary-gradient,
body.light-theme .btn-why-choose,
body.light-theme .btn-reviews,
body.light-theme .btn-admin,
body.light-theme .btn-scroll-top,
body.light-theme .btn-mobile-cta,
body.light-theme .promo-btn,
body.light-theme .pricing-card:not(.featured) .btn-plan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 14px 30px rgba(27, 77, 255, 0.28), 0 8px 22px rgba(225, 29, 46, 0.22) !important;
}

        /* Channels Page Styles */
        .channels-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .channels-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 96, 239, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .channels-hero-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .channels-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .channels-hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .channels-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-light);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .channels-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .category-section {
            margin-bottom: 80px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0, 96, 239, 0.2);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0, 96, 239, 0.3);
        }

        .category-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            fill: none;
        }

        .category-info h2 {
            font-size: 2rem;
            margin-bottom: 5px;
            color: var(--text-primary);
        }

        .category-count {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .channel-card {
            background: var(--bg-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .channel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .channel-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 96, 239, 0.2);
        }

        .channel-card:hover::before {
            transform: scaleX(1);
        }

        .channel-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .channel-logo {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(0, 96, 239, 0.1) 0%, rgba(5, 183, 253, 0.1) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-light);
        }

        .channel-logo svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary-light);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .channel-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .channel-quality {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #10b981;
            text-transform: uppercase;
            margin-top: 8px;
        }

        .channel-quality.quality-4k {
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
            color: #a78bfa;
        }

        .channel-quality.quality-hd {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
            color: #60a5fa;
        }

        .channel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .channel-features .feature-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            font-size: 0.7rem;
            color: var(--text-secondary);
        }

        .feature-badge svg {
            width: 12px;
            height: 12px;
        }

        /* Search & Filter */
        .channels-filter {
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            padding: 16px 50px 16px 20px;
            background: var(--bg-secondary);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 96, 239, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-btn {
            padding: 10px 24px;
            background: var(--bg-secondary);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-color: var(--primary);
            color: white;
        }

        /* Light Mode */
        [data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f3f4f6;
            --bg-tertiary: #e5e7eb;
            --text-primary: #111827;
            --text-secondary: #6b7280;
        }

        [data-theme="light"] .channels-hero {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        }

        [data-theme="light"] .channel-card {
            background: white;
            border-color: #e5e7eb;
        }

        [data-theme="light"] .channel-card:hover {
            box-shadow: 0 12px 32px rgba(0, 96, 239, 0.15);
        }

        [data-theme="light"] .category-icon {
            box-shadow: 0 8px 24px rgba(0, 96, 239, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .channels-hero h1 {
                font-size: 2.5rem;
            }

            .channels-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .channels-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .filter-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
        }


        

/* ===== WHY IPTV SECTION ===== */
.why-iptv-section {
    position: relative;
    padding: 88px 0 52px;
    --why-iptv-glow-a: rgba(27, 77, 255, 0.24);
    --why-iptv-glow-b: rgba(225, 29, 46, 0.18);
    --why-iptv-surface: linear-gradient(145deg, rgba(8, 15, 34, 0.96), rgba(8, 12, 24, 0.9));
    --why-iptv-border: rgba(27, 77, 255, 0.3);
    --why-iptv-shadow: 0 24px 54px rgba(3, 10, 26, 0.46);
    --why-iptv-text: var(--text-primary);
    --why-iptv-muted: var(--text-secondary);
    --why-iptv-media-bg: #050d1f;
    --why-iptv-media-border: rgba(225, 29, 46, 0.26);
    --why-iptv-media-overlay-bg: rgba(8, 16, 35, 0.72);
    --why-iptv-media-overlay-border: rgba(255, 255, 255, 0.2);
    --why-iptv-pill-bg: linear-gradient(135deg, rgba(27, 77, 255, 0.24), rgba(225, 29, 46, 0.18));
    --why-iptv-pill-border: rgba(225, 29, 46, 0.4);
    --why-iptv-list-card: linear-gradient(135deg, rgba(27, 77, 255, 0.14), rgba(225, 29, 46, 0.08));
}

.why-iptv-section::before,
.why-iptv-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-iptv-section::before {
    background:
        radial-gradient(circle at 8% 28%, var(--why-iptv-glow-a) 0%, transparent 42%),
        radial-gradient(circle at 92% 78%, var(--why-iptv-glow-b) 0%, transparent 44%);
}

.why-iptv-section::after {
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.22;
}

.why-iptv-heading {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto 26px;
    text-align: center;
}

.why-iptv-heading::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, rgba(27, 77, 255, 0.92), rgba(225, 29, 46, 0.86), transparent);
}

.why-iptv-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--why-iptv-pill-border);
    background: var(--why-iptv-pill-bg);
    color: var(--why-iptv-text);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-iptv-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.14;
    letter-spacing: -0.85px;
    font-family: 'Alexandria', 'Manrope', 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: var(--why-iptv-text);
}



.why-iptv-frame {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
    align-items: stretch;
    gap: 28px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid var(--why-iptv-border);
    background: var(--why-iptv-surface);
    box-shadow: var(--why-iptv-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-iptv-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(27, 77, 255, 0.18), rgba(225, 29, 46, 0.08) 45%, transparent 72%);
    pointer-events: none;
}

.why-iptv-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.42);
    box-shadow: 0 28px 60px rgba(225, 29, 46, 0.18);
}

.why-iptv-media {
    position: relative;
    min-height: 460px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--why-iptv-media-border);
    background: var(--why-iptv-media-bg);
}

.why-iptv-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.why-iptv-frame:hover .why-iptv-media img {
    transform: scale(1.05);
}

.why-iptv-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 28, 0.9) 0%, rgba(5, 12, 28, 0.12) 60%);
}

.why-iptv-media-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--why-iptv-media-overlay-border);
    background: var(--why-iptv-media-overlay-bg);
    backdrop-filter: blur(8px);
}

.why-iptv-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid var(--why-iptv-pill-border);
    background: var(--why-iptv-pill-bg);
    color: var(--why-iptv-text);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.why-iptv-media-overlay h4 {
    margin: 10px 0 6px;
    font-size: clamp(19px, 2vw, 22px);
    font-family: 'Alexandria', 'Manrope', 'Space Grotesk', sans-serif;
    line-height: 1.2;
    color: var(--why-iptv-text);
}

.why-iptv-media-overlay p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--why-iptv-muted);
}

.why-iptv-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-iptv-copy h3 {
    margin: 20px 0 12px;
    font-size: clamp(23px, 2.2vw, 33px);
    font-family: 'Alexandria', 'Manrope', 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.24;
    color: var(--why-iptv-text);
}

.why-iptv-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.82;
    color: var(--why-iptv-muted);
}

.why-iptv-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.why-iptv-list li {
    position: relative;
    padding: 10px 12px 10px 32px;
    border-radius: 12px;
    border: 1px solid rgba(225, 29, 46, 0.24);
    background: var(--why-iptv-list-card);
    font-size: 14px;
    line-height: 1.52;
    color: var(--why-iptv-text);
}

.why-iptv-list li::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 4px rgba(27, 77, 255, 0.16);
}

/* ===== WHY IPTV SECTION (LIGHT THEME) ===== */
body.light-theme .why-iptv-section {
    --why-iptv-glow-a: rgba(27, 77, 255, 0.14);
    --why-iptv-glow-b: rgba(225, 29, 46, 0.1);
    --why-iptv-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.95) 100%);
    --why-iptv-border: rgba(15, 23, 42, 0.12);
    --why-iptv-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    --why-iptv-text: var(--text-primary);
    --why-iptv-muted: var(--text-secondary);
    --why-iptv-media-bg: #e6edf8;
    --why-iptv-media-border: rgba(27, 77, 255, 0.22);
    --why-iptv-media-overlay-bg: rgba(255, 255, 255, 0.9);
    --why-iptv-media-overlay-border: rgba(27, 77, 255, 0.24);
    --why-iptv-pill-bg: linear-gradient(135deg, rgba(27, 77, 255, 0.12), rgba(225, 29, 46, 0.08));
    --why-iptv-pill-border: rgba(27, 77, 255, 0.32);
    --why-iptv-list-card: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(225, 29, 46, 0.05));
}

body.light-theme .why-iptv-section::after {
    background-image: linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
}

body.light-theme .why-iptv-frame:hover {
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
    border-color: rgba(225, 29, 46, 0.3);
}

body.light-theme .why-iptv-heading::after {
    background: linear-gradient(90deg, transparent, #2563eb, #e11d2e, transparent);
}

body.light-theme .why-iptv-media::after {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.08) 58%);
}

body.light-theme .why-iptv-media-overlay h4 {
    color: #0f172a;
}

body.light-theme .why-iptv-media-overlay p {
    color: #334155;
}

body.light-theme .why-iptv-chip,
body.light-theme .why-iptv-eyebrow {
    color: #123b93;
}

body.light-theme .why-iptv-list li {
    color: #0f172a;
}

body.light-theme .why-iptv-list li::before {
    background: linear-gradient(135deg, #2563eb, #e11d2e);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

@media (max-width: 1200px) {
    .why-iptv-frame {
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
        gap: 22px;
    }

    .why-iptv-media {
        min-height: 400px;
    }
}

@media (max-width: 1024px) {
    .why-iptv-heading {
        margin-bottom: 20px;
    }

    .why-iptv-frame {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-iptv-media {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .why-iptv-section {
        padding: 62px 0 24px;
    }

    .why-iptv-heading h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .why-iptv-frame {
        padding: 16px;
        border-radius: 20px;
        gap: 16px;
    }

    .why-iptv-media {
        min-height: 260px;
        border-radius: 16px;
    }

    .why-iptv-copy h3 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .why-iptv-copy p,
    .why-iptv-list li {
        font-size: 15px;
        line-height: 1.72;
    }

    .why-iptv-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-iptv-section {
        padding: 52px 0 20px;
    }

    .why-iptv-media {
        min-height: 220px;
    }

    .why-iptv-media-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 11px;
    }

    .why-iptv-chip,
    .why-iptv-eyebrow {
        font-size: 10px;
    }

    .why-iptv-heading h2 {
        font-size: 27px;
    }

    .why-iptv-copy h3 {
        font-size: 22px;
    }
}/* End custom CSS */