/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 07 2026 | 22:28:45 */
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* purple theme colors */
    
    /* --primary: #2563eb;
    --primary-light: #818cf8;
    --secondary: #06b6d4;

    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-tertiary: #1a1a24; */


    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #60a5fa;
    --success: #10b981;


    

 
    /* blue theme colors */
    --primary: #0060ef;
    --primary-light: #05b7fd;
    --secondary: #03A2FE;

    --bg-primary: #0a0d0f;
    --bg-secondary: #13171a;
    --bg-tertiary: #1a2224;
}






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, .pcolor li, .pcolor span  {
        color: var(--text-primary) !important;
}

.pcolor h2 {
    color: var(--primary) !important;
}
.pcolor h3,.pcolor h3 a, .pcolor h4, .pcolor h5, .pcolor h6 {
    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: 1380px !important;
    margin: 0 auto !important;
    padding: 0 40px;
}
.mt-50{
    margin-top: 50px !important;
}


/* ===== VARIABLES ===== */
:root {
    /*--primary: #2563eb;*/
    /*--secondary: #06b6d4;*/
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --bg-primary: #0a0a0f;
    --bg-secondary: rgba(18, 18, 23, 0.6);
    
 
    /* blue theme colors */
    --primary: #0060ef;
    --primary-light: #05b7fd;
    --secondary: #03A2FE;

}

/* ===== 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: 1380px;
    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: var(--primary);
  opacity: 0.3;
}

/* ===== 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: 768px) {
    .multi-screen-badge-wra {
        margin: 0 0 30px;
    }

    .multi-screen-badge {
        font-size: 12px;
        gap: 8px;
        padding: 8px 14px 8px 9px;
    }

    .multi-screen-badge-icon {
        width: 22px;
        height: 22px;
    }

    .multi-screen-badge-icon svg {
        width: 12px;
        height: 12px;
    }

    .multi-screen-badge-text {
        white-space: normal;
        text-align: center;
    }
}
@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-right{
        display: none;
    }
    .hero-section::before{
        background-image: none !important;
    }
}





/* ===== 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(https://abonnement-iptv-officiel.fr/wp-content/uploads/2026/01/king365-tv-famille-streaming-hd-2026.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.hero-section.iptv-france-home::before {
    background-image: url(https://abonnement-iptv-officiel.fr/wp-content/uploads/2026/05/abonnement-iptv-france-couple-regarde-tv.webp) !important;
}
/* ===== 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: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.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: 1.2fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

/* ===== LEFT CONTENT ===== */
.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.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 {
    letter-spacing: normal;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin: -0px 0 -10px;
}

.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.3;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

/* ===== 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;
}

.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;
}

.hero-section.iptv-france-home .video-content::before {
    background-image: var(--iptv-france-video-image, url(https://abonnement-iptv-officiel.fr/wp-content/uploads/2026/02/Abonnement-iptv-officiel-film.webp));
}
.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);
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 1;
    background: rgba(19, 19, 26, 0.6);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    margin-top: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    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;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== 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: 16px;
    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:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.top-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    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;
    max-width: 1000px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* 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(37, 99, 235, 0.15);
    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(--primary);
    transition: height 0.3s ease;
}

.feature-item.red::before{
    background: #ef4444;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(26, 26, 36, 0.6);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 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(37, 99, 235, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    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(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Pricing Card */
.pricing-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 20px;
    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:not(.featured) {
    padding: 20px;
}

.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(37, 99, 235, 0.5);
    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 18px 38px rgba(37, 99, 235, 0.22),
        inset 0 0 28px rgba(56, 189, 248, 0.08);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    border-radius: 16px;
    content: '';
    position: absolute ;
    opacity: 1;
    z-index: 0;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.05) 0%, rgba(56, 189, 248, 0.25) 38%, rgba(255, 255, 255, 0.26) 50%, rgba(56, 189, 248, 0.22) 62%, rgba(56, 189, 248, 0.05) 100%);
    background-size: 220% 220%;
}



.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 
        0 24px 48px rgba(37, 99, 235, 0.28),
        inset 0 0 42px rgba(56, 189, 248, 0.12);
}

/* Featured Gold Card (Best Value) */
.pricing-card.featured-gold {
    background:
        radial-gradient(circle at 18% 12%, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0) 42%),
        linear-gradient(160deg, rgba(58, 33, 10, 0.94) 0%, rgba(30, 21, 13, 0.96) 52%, rgba(18, 14, 11, 0.97) 100%);
    border: 2px solid rgba(251, 191, 36, 0.92);
    box-shadow:
        0 24px 52px rgba(180, 83, 9, 0.34),
        0 0 96px rgba(251, 191, 36, 0.22),
        inset 0 0 42px rgba(251, 191, 36, 0.14);
}

.pricing-card.featured-gold::before {
    background: linear-gradient(125deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.2) 42%, rgba(250, 204, 21, 0.15) 55%, rgba(180, 83, 9, 0.18) 68%, rgba(251, 191, 36, 0.04) 100%);
}

.pricing-card.featured-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 26%, rgba(0, 0, 0, 0.24) 100%);
}

.pricing-card.featured-gold:hover {
    transform: scale(1.06) translateY(-12px);
    box-shadow:
        0 30px 64px rgba(180, 83, 9, 0.38),
        0 0 110px rgba(251, 191, 36, 0.24),
        inset 0 0 44px rgba(251, 191, 36, 0.22);
}

.pricing-card.featured-gold .popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #facc15 50%, #f59e0b 100%);
    color: #3f2304;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
    animation: pulse-glow-gold 2s ease-in-out infinite;
}

.pricing-card.featured-gold .popular-badge i {
    color: #7c2d12;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 2;
    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);
    }
}

@keyframes pulse-glow-gold {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(245, 158, 11, 0.46);
    }
    50% {
        box-shadow: 0 12px 34px rgba(251, 191, 36, 0.62);
    }
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

.plan-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.plan-duration-badge {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(147, 197, 253, 0.35);
    background: linear-gradient(140deg, rgba(59, 130, 246, 0.42), rgba(30, 64, 175, 0.22));
    color: #f3f9ff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.plan-benefit-badge {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(147, 197, 253, 0.5);
    background: rgba(13, 47, 100, 0.38);
    color: #e8f1ff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.plan-benefit-badge i {
    color: #fcd34d;
    font-size: 13px;
}

.pricing-card.featured .plan-duration-badge {
    border-color: rgba(125, 211, 252, 0.5);
    background: linear-gradient(140deg, rgba(14, 165, 233, 0.38), rgba(37, 99, 235, 0.24));
}

.pricing-card.featured .plan-benefit-badge {
    border-color: rgba(125, 211, 252, 0.62);
}

.pricing-card.featured-gold .currency,
.pricing-card.featured-gold .amount {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured-gold .period {
    color: #f8dca0;
}

.pricing-card.featured-gold .plan-name {
    color: #ffefc8;
}

.pricing-card.featured-gold .plan-duration-badge {
    border-color: rgba(251, 191, 36, 0.58);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.26), rgba(180, 83, 9, 0.18));
    color: #fff3c4;
}

.pricing-card.featured-gold .plan-benefit-badge {
    border-color: rgba(251, 191, 36, 0.7);
    background: rgba(120, 53, 15, 0.32);
    color: #ffefc1;
}

.pricing-card.featured-gold .plan-benefit-badge i {
    color: #fbbf24;
}

.pricing-card.featured-gold .plan-features li {
    color: #f3e7cd;
    border-bottom: 1px solid rgba(251, 191, 36, 0.26);
}

.pricing-card.featured-gold .plan-features li:hover {
    color: #fff7df;
}

.pricing-card.featured-gold .plan-features svg {
    color: #fbbf24;
}

.pricing-card.featured-gold .plan-features li:hover svg {
    color: #fde68a;
}

.plan-name {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 25px;
}
.plan-offert{
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4px 8px;
    border-radius: 10px;
}

body.light-theme .plan-offert{
    color: var(--text-white);
}

.plan-offert.gold{
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #fcd34d 100%);
    color: #3f2304;
}

body.light-theme .plan-offert.gold{
    color: #3f2304;
}

.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: 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;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.multi-screen-badge-wrap {
    margin: 10px 0 14px;
}

.multi-screen-badge-wra {
    display: flex;
    justify-content: center;
    margin: -4px 0 42px;
    position: relative;
    z-index: 1;
}

.multi-screen-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 9px 18px 9px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    background:
        linear-gradient(145deg, rgba(22, 30, 44, 0.94), rgba(61, 49, 28, 0.92)) padding-box,
        linear-gradient(120deg, rgba(56, 189, 248, 0.9), rgba(245, 158, 11, 0.85), rgba(56, 189, 248, 0.9)) border-box;
    color: #ecfaff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.15px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    box-shadow:
        0 12px 28px rgba(2, 132, 199, 0.2),
        0 0 34px rgba(245, 158, 11, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
    animation: multi-badge-float 3.4s ease-in-out infinite;
}

.multi-screen-badge::before {
    content: '';
    position: absolute;
    top: -135%;
    left: -34%;
    width: 42%;
    height: 360%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(24deg) translateX(-130%);
    animation: multi-badge-shine 4.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.multi-screen-badge-icon,
.multi-screen-badge-text {
    position: relative;
    z-index: 2;
}

.multi-screen-badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(140deg, #0ea5e9 0%, #2563eb 52%, #f59e0b 100%);
    box-shadow:
        0 6px 14px rgba(2, 132, 199, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.multi-screen-badge-icon svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.multi-screen-badge-text {
    white-space: nowrap;
}

.multi-screen-badge:hover {
    transform: translateY(-3px) scale(1.01);
    color: #ffffff;
    box-shadow:
        0 16px 34px rgba(2, 132, 199, 0.3),
        0 0 42px rgba(245, 158, 11, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.multi-screen-badge:hover .multi-screen-badge-icon {
    transform: scale(1.08) rotate(-6deg);
    box-shadow:
        0 8px 18px rgba(2, 132, 199, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.multi-screen-badge:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

@keyframes multi-badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes multi-badge-shine {
    0% {
        transform: rotate(24deg) translateX(-150%);
        opacity: 0;
    }
    25% {
        opacity: 0.55;
    }
    60% {
        transform: rotate(24deg) translateX(320%);
        opacity: 0;
    }
    100% {
        transform: rotate(24deg) translateX(320%);
        opacity: 0;
    }
}
/* 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;
}

.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;
    text-decoration: none;
}

/* ===== PLAN DETAIL PAGE ===== */
.plan-detail-page {
    background:
        radial-gradient(circle at 18% 18%, rgba(3, 162, 254, 0.18), transparent 34%),
        radial-gradient(circle at 84% 10%, rgba(245, 158, 11, 0.12), transparent 28%),
        var(--bg-primary);
}

.plan-detail-hero {
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
}

.plan-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 44px;
    align-items: start;
}

.plan-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(3, 162, 254, 0.12);
    border: 1px solid rgba(3, 162, 254, 0.28);
    color: #8fdcff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-detail-title {
    max-width: 780px;
    margin: 22px 0 18px;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.plan-detail-copy {
    max-width: 710px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.plan-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin-top: 30px;
}

.plan-proof-item {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
}

.plan-proof-item strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
}

.plan-proof-item span {
    color: var(--text-secondary);
    font-size: 13px;
}

.plan-order-panel {
    position: sticky;
    top: 104px;
    border-radius: 12px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(18, 28, 40, 0.96), rgba(10, 13, 18, 0.98));
    border: 1px solid rgba(96, 165, 250, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.plan-order-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.14);
    color: #7ff2c5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-price-large {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 12px 0 8px;
}

.plan-price-large .price {
    font-size: 54px;
    line-height: 0.95;
    font-weight: 900;
    color: #ffffff;
}

.plan-price-large .period {
    padding-bottom: 7px;
}

.plan-total-note {
    color: #a8f4d0;
    font-weight: 700;
    margin-bottom: 22px;
}

.plan-cta-stack {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.plan-cta-main,
.plan-cta-secondary {
    min-height: 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.plan-cta-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 15px 34px rgba(3, 162, 254, 0.32);
}

.plan-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.plan-included {
    padding: 34px 0 86px;
}

.plan-section-title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.15;
}

.plan-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-feature-card {
    min-height: 185px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.plan-feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.plan-feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-popup-overlay.active {
    display: flex;
}

.plan-popup-modal {
    max-width: 500px;
}

.plan-popup-actions {
    display: grid;
    gap: 12px;
}

@media (max-width: 980px) {
    .plan-detail-layout,
    .plan-feature-grid {
        grid-template-columns: 1fr;
    }

    .plan-order-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    .plan-detail-hero {
        padding: 120px 0 50px;
    }

    .plan-proof-row {
        grid-template-columns: 1fr;
    }
}

.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 {
    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 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
}

.pricing-card.featured-gold .btn-plan {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 45%, #facc15 100%);
    color: #3f2304;
    border: 1px solid rgba(251, 191, 36, 0.85);
    box-shadow:
        0 14px 34px rgba(180, 83, 9, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pricing-card.featured-gold .btn-plan::before {
    background: linear-gradient(90deg, transparent, rgba(255, 250, 220, 0.55), transparent);
}

.pricing-card.featured-gold .btn-plan:hover {
    background: linear-gradient(135deg, #b45309 0%, #d97706 42%, #f59e0b 100%);
    color: #fff7e6;
    border-color: rgba(245, 158, 11, 0.95);
    box-shadow:
        0 18px 42px rgba(180, 83, 9, 0.42),
        0 0 34px rgba(251, 191, 36, 0.34);
}

.pricing-card.featured-gold .btn-plan:active {
    box-shadow: 0 10px 24px rgba(180, 83, 9, 0.34);
}

/* 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(37, 99, 235, 0.5);
    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(4, 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: 25px;
    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(37, 99, 235, 0.2);
}

.shared-pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3);
}

/* Shared Featured Gold Card */
.shared-pricing-card.featured-gold {
    background:
        radial-gradient(circle at 16% 10%, rgba(251, 191, 36, 0.18) 0%, rgba(251, 191, 36, 0) 40%),
        linear-gradient(160deg, rgba(58, 33, 10, 0.93) 0%, rgba(30, 21, 13, 0.96) 55%, rgba(18, 14, 11, 0.97) 100%);
    border: 2px solid rgba(251, 191, 36, 0.9);
    box-shadow:
        0 24px 54px rgba(180, 83, 9, 0.34),
        0 0 92px rgba(251, 191, 36, 0.2),
        inset 0 0 36px rgba(251, 191, 36, 0.14);
}

.shared-pricing-card.featured-gold::before {
    background: linear-gradient(125deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.2) 42%, rgba(250, 204, 21, 0.15) 55%, rgba(180, 83, 9, 0.18) 68%, rgba(251, 191, 36, 0.04) 100%);
    opacity: 1;
    border-radius: 24px;
}

.shared-pricing-card.featured-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 26%, rgba(0, 0, 0, 0.24) 100%);
}

.shared-pricing-card.featured-gold:hover {
    box-shadow:
        0 30px 66px rgba(180, 83, 9, 0.4),
        0 0 112px rgba(251, 191, 36, 0.25),
        inset 0 0 44px rgba(251, 191, 36, 0.22);
}

.shared-pricing-card.featured-gold .popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #facc15 50%, #f59e0b 100%);
    color: #3f2304;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
    animation: pulse-glow-gold 2s ease-in-out infinite;
}

.shared-pricing-card.featured-gold .popular-badge i {
    color: #7c2d12;
}

.shared-pricing-card.featured-gold .popular-badge svg {
    color: #7c2d12;
}

.shared-pricing-card.featured-gold .pack-label {
    color: #fcd34d;
}

.shared-pricing-card.featured-gold .pack-name {
    color: #ffefc8;
}

.shared-pricing-card.featured-gold .pack-amount {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shared-pricing-card.featured-gold .pack-period {
    color: #f8dca0;
}

.shared-pricing-card.featured-gold .plan-features li {
    color: #f3e7cd;
    border-bottom: 1px solid rgba(251, 191, 36, 0.26);
}

.shared-pricing-card.featured-gold .plan-features li:hover {
    color: #fff7df;
}

.shared-pricing-card.featured-gold .plan-features svg {
    color: #fbbf24;
}

.shared-pricing-card.featured-gold .plan-features li:hover svg {
    color: #fde68a;
}

/* 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: 22px;
    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;
}

.multi-calc-badge {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.45);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(14, 165, 233, 0.18));
    color: #e9f6ff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.05px;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.shared-pricing-card.featured .multi-calc-badge {
    border-color: rgba(125, 211, 252, 0.62);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(14, 165, 233, 0.24));
    color: #f0f9ff;
}

.shared-pricing-card.featured-gold .multi-calc-badge {
    border-color: rgba(251, 191, 36, 0.65);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(180, 83, 9, 0.22));
    color: #fff3c4;
    box-shadow:
        0 12px 28px rgba(180, 83, 9, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 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%;
    display: flex;
    align-items: center;
    justify-content: center;
    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;
    text-decoration: none;
}

.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);
}

.shared-pricing-card.featured-gold .btn-shared-plan {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 45%, #facc15 100%);
    color: #3f2304;
    border: 1px solid rgba(251, 191, 36, 0.85);
    box-shadow:
        0 14px 34px rgba(180, 83, 9, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.shared-pricing-card.featured-gold .btn-shared-plan::before {
    background: linear-gradient(90deg, transparent, rgba(255, 250, 220, 0.55), transparent);
}

.shared-pricing-card.featured-gold .btn-shared-plan:hover {
    background: linear-gradient(135deg, #b45309 0%, #d97706 42%, #f59e0b 100%);
    color: #fff7e6;
    border-color: rgba(245, 158, 11, 0.95);
    box-shadow:
        0 18px 42px rgba(180, 83, 9, 0.42),
        0 0 34px rgba(251, 191, 36, 0.34);
}

/* ===== 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;
    }

    .plan-duration-badge {
        font-size: 14px;
    }

    .plan-benefit-badge {
        font-size: 13px;
    }
    
    .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;
    }

    .multi-calc-badge {
        font-size: 12px;
        padding: 9px 11px;
    }
}

@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-badges {
        margin-bottom: 16px;
    }

    .plan-duration-badge {
        font-size: 13px;
        padding: 10px 12px;
    }

    .plan-benefit-badge {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .plan-features li {
        font-size: 14px;
    }
    
    .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;
    }

    .multi-calc-badge {
        font-size: 11px;
        padding: 8px 10px;
        line-height: 1.3;
    }
    .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 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;
}

.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;
}

/* 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: rgba(18, 18, 23, 0.3);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.vod-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
}

/* VOD Icon */
.vod-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vod-feature-card:hover .vod-icon {
    transform: scale(1.1);
}

.vod-icon.purple {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #8b9bff;
}

.vod-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ffa366;
}

.vod-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #6ba4ff;
}

.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(18, 18, 23, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.2);
    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(37, 99, 235, 0.4);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    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(37, 99, 235, 0.5);
    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(37, 99, 235, 0.5);
    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: rgba(0, 0, 0, 0.6);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(6, 182, 212, 0.04) 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 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;
}

.faq-grid.faq-contact {
    grid-template-columns: 1fr;
}
.contact-page .faq-support-card{
    height: auto;
}
/* FAQ Item */
.faq-item {
    background: rgba(18, 18, 23, 0.6);
    border: 1px solid rgba(55, 55, 70, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.4);
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.8);
    background: rgba(18, 18, 23, 0.95);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    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: rgba(37, 99, 235, 0.05);
}



/* FAQ Icon Wrapper */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
}

.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(--primary);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
}

.faq-answer p {
    padding: 0 28px 0 92px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-read-more {
    display: inline-block;
    margin: 10px 0 0 92px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-read-more:hover {
    opacity: 0.85;
}

/* FAQ Support Card */
.faq-support-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(37, 99, 235, 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;
}

/* 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: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.3);
    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: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    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;
        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-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;
    }

    .support-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== LIGHT THEME OVERRIDES ===== */
body.light-theme {
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #06b6d4;
    --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:
        linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
}

body.light-theme .header::before {
    background: rgba(248, 250, 252, 0.9);
    border-bottom-color: rgba(2, 132, 199, 0.2);
}

body.light-theme .mobile-menu {
    background: rgba(248, 250, 252, 0.98);
    border-bottom-color: rgba(2, 132, 199, 0.2);
}

body.light-theme .btn-icon,
body.light-theme .btn-mobile {
    background: rgba(226, 232, 240, 0.8);
    border-color: rgba(2, 132, 199, 0.2);
}

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: rgba(226, 232, 240, 0.8);
}

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, #2563eb 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 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 .pricing-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.6);
    box-shadow:
        0 18px 38px rgba(37, 99, 235, 0.16),
        inset 0 0 24px rgba(37, 99, 235, 0.08);
    transform: scale(1.05);
}

body.light-theme .pricing-card.featured::before {
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.16) 38%, rgba(186, 230, 253, 0.35) 50%, rgba(14, 165, 233, 0.16) 62%, rgba(37, 99, 235, 0.04) 100%);
}

body.light-theme .pricing-card.featured::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 62%);
}

body.light-theme .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 24px 48px rgba(37, 99, 235, 0.2),
        inset 0 0 36px rgba(37, 99, 235, 0.12);
}

body.light-theme .pricing-card.featured .popular-badge {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

body.light-theme .pricing-card.featured-gold {
    border: 2px solid rgba(217, 119, 6, 0.82);
    box-shadow:
        0 20px 44px rgba(217, 119, 6, 0.2),
        0 0 74px rgba(251, 191, 36, 0.16),
        inset 0 0 24px rgba(251, 191, 36, 0.12);
}

body.light-theme .pricing-card.featured-gold::before {
    background: linear-gradient(120deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.24) 40%, rgba(255, 251, 235, 0.46) 52%, rgba(245, 158, 11, 0.2) 64%, rgba(251, 191, 36, 0.08) 100%);
}

body.light-theme .pricing-card.featured-gold::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 48%, rgba(120, 53, 15, 0.05) 100%);
}

body.light-theme .pricing-card.featured-gold .popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fde047 48%, #f59e0b 100%);
    color: #4a2a00;
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.34);
}

body.light-theme .pricing-card.featured-gold .popular-badge i {
    color: #7c2d12;
}

body.light-theme .pricing-card.featured-gold .currency,
body.light-theme .pricing-card.featured-gold .amount {
    background: linear-gradient(135deg, #b45309 0%, #d97706 55%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .pricing-card.featured-gold .period {
    color: #8a5a12;
}

body.light-theme .pricing-card.featured-gold .plan-name {
    color: #7c2d12;
}

body.light-theme .pricing-card.featured-gold .plan-duration-badge {
    border-color: rgba(217, 119, 6, 0.32);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(234, 179, 8, 0.14));
    color: #854d0e;
}

body.light-theme .pricing-card.featured-gold .plan-benefit-badge {
    border-color: rgba(217, 119, 6, 0.44);
    background: rgba(245, 158, 11, 0.09);
    color: #78350f;
}

body.light-theme .pricing-card.featured-gold .plan-benefit-badge i {
    color: #b45309;
}

body.light-theme .pricing-card.featured-gold .plan-features li {
    color: #6b3f12;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

body.light-theme .pricing-card.featured-gold .plan-features li:hover {
    color: #4a2a00;
}

body.light-theme .pricing-card.featured-gold .plan-features svg {
    color: #d97706;
}

body.light-theme .pricing-card.featured-gold .plan-features li:hover svg {
    color: #b45309;
}

body.light-theme .pricing-card.featured-gold .btn-plan {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 52%, #fde047 100%);
    color: #4a2a00;
    border: 1px solid rgba(217, 119, 6, 0.5);
    box-shadow:
        0 12px 28px rgba(217, 119, 6, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.light-theme .pricing-card.featured-gold .btn-plan:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #facc15 100%);
    color: #fff7e6;
    border-color: rgba(217, 119, 6, 0.74);
    box-shadow:
        0 16px 36px rgba(217, 119, 6, 0.3),
        0 0 26px rgba(245, 158, 11, 0.26);
}

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 .shared-pricing-card.featured-gold {
    border: 2px solid rgba(217, 119, 6, 0.82);
    box-shadow:
        0 20px 44px rgba(217, 119, 6, 0.2),
        0 0 74px rgba(251, 191, 36, 0.16),
        inset 0 0 24px rgba(251, 191, 36, 0.12);
}

body.light-theme .shared-pricing-card.featured-gold::before {
    background: linear-gradient(120deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.24) 40%, rgba(255, 251, 235, 0.46) 52%, rgba(245, 158, 11, 0.2) 64%, rgba(251, 191, 36, 0.08) 100%);
    opacity: 1;
}

body.light-theme .shared-pricing-card.featured-gold::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 48%, rgba(120, 53, 15, 0.05) 100%);
}

body.light-theme .shared-pricing-card.featured-gold .popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fde047 48%, #f59e0b 100%);
    color: #4a2a00;
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.34);
}

body.light-theme .shared-pricing-card.featured-gold .popular-badge svg {
    color: #7c2d12;
}

body.light-theme .shared-pricing-card.featured-gold .pack-label {
    color: #92400e;
}

body.light-theme .shared-pricing-card.featured-gold .pack-name {
    color: #7c2d12;
}

body.light-theme .shared-pricing-card.featured-gold .pack-amount {
    background: linear-gradient(135deg, #b45309 0%, #d97706 55%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .shared-pricing-card.featured-gold .pack-period {
    color: #8a5a12;
}

body.light-theme .shared-pricing-card.featured-gold .plan-features li {
    color: #6b3f12;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

body.light-theme .shared-pricing-card.featured-gold .plan-features li:hover {
    color: #4a2a00;
}

body.light-theme .shared-pricing-card.featured-gold .plan-features svg {
    color: #d97706;
}

body.light-theme .shared-pricing-card.featured-gold .plan-features li:hover svg {
    color: #b45309;
}

body.light-theme .multi-calc-badge {
    border-color: rgba(14, 165, 233, 0.34);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.1));
    color: #0f4b74;
    box-shadow:
        0 10px 22px rgba(14, 116, 144, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

body.light-theme .shared-pricing-card.featured .multi-calc-badge {
    border-color: rgba(37, 99, 235, 0.38);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.12));
    color: #1d4ed8;
}

body.light-theme .shared-pricing-card.featured-gold .multi-calc-badge {
    border-color: rgba(217, 119, 6, 0.48);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(234, 179, 8, 0.14));
    color: #8a4f0f;
}

body.light-theme .shared-pricing-card.featured-gold .btn-shared-plan {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 52%, #fde047 100%);
    color: #4a2a00;
    border: 1px solid rgba(217, 119, 6, 0.5);
    box-shadow:
        0 12px 28px rgba(217, 119, 6, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.light-theme .shared-pricing-card.featured-gold .btn-shared-plan:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #facc15 100%);
    color: #fff7e6;
    border-color: rgba(217, 119, 6, 0.74);
    box-shadow:
        0 16px 36px rgba(217, 119, 6, 0.3),
        0 0 26px rgba(245, 158, 11, 0.26);
}

body.light-theme .best-choice-badge {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

body.light-theme .multi-screen-badge {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 233, 0.95)) padding-box,
        linear-gradient(120deg, rgba(14, 165, 233, 0.82), rgba(245, 158, 11, 0.82), rgba(14, 165, 233, 0.82)) border-box;
    color: #11496b;
    box-shadow:
        0 10px 22px rgba(14, 116, 144, 0.16),
        0 0 26px rgba(245, 158, 11, 0.16);
}

body.light-theme .multi-screen-badge-icon {
    background: linear-gradient(140deg, #0ea5e9 0%, #2563eb 48%, #f59e0b 100%);
    box-shadow:
        0 6px 14px rgba(14, 116, 144, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

body.light-theme .multi-screen-badge:hover {
    box-shadow:
        0 14px 28px rgba(14, 116, 144, 0.24),
        0 0 32px rgba(245, 158, 11, 0.2);
}

body.light-theme .plan-duration-badge {
    border-color: rgba(37, 99, 235, 0.24);
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.08));
    color: #0f3c88;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.light-theme .plan-benefit-badge {
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.06);
    color: #134086;
}

body.light-theme .plan-benefit-badge i {
    color: #d97706;
}

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 .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(37, 99, 235, 0.4) 50%, transparent 100%);
}

body.light-theme .faq-item.active {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.35);
}

body.light-theme .faq-section {
    background: #f1f5f9;
}

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(2, 132, 199, 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(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.06) 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: #2563eb;
}

body.light-theme .social-link:hover {
    color: var(--primary);
}

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: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

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 .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-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-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);
}

/* ===== DOWNLOAD HIGHLIGHTS ===== */
.downloads-highlights {
    margin-top: 56px;
    display: grid;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.downloads-highlights::before,
.downloads-highlights::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    z-index: 0;
    animation: floatGlow 8s ease-in-out infinite;
}

.downloads-highlights::before {
    background: radial-gradient(circle, rgba(0, 96, 239, 0.6), transparent 70%);
    top: -40px;
    right: 8%;
}

.downloads-highlights::after {
    background: radial-gradient(circle, rgba(5, 183, 253, 0.5), transparent 70%);
    bottom: -60px;
    left: 6%;
    animation-delay: 2s;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    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;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(0, 96, 239, 0.25), transparent 60%);
    opacity: 0.6;
    z-index: 0;
}

.highlight-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 40px;
    background: rgba(5, 183, 253, 0.12);
    right: -60px;
    bottom: -60px;
    transform: rotate(15deg);
    z-index: 0;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 96, 239, 0.35);
    box-shadow: 0 28px 60px rgba(3, 10, 26, 0.6);
}

.highlight-card.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.highlight-card.reverse .highlight-media {
    order: 2;
}

.highlight-media img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 18px;
    display: block;
    transform: translateZ(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-card:hover .highlight-media img {
    transform: scale(1.02);
}

.highlight-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.highlight-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-content ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.highlight-content ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.highlight-content ul li {
    position: relative;
    padding-left: 18px;
}

.highlight-content ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    position: absolute;
    left: 0;
    top: 7px;
}

.highlight-card .floating-chip {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 96, 239, 0.18);
    border: 1px solid rgba(0, 96, 239, 0.45);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 1;
    animation: floatChip 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
    .highlight-card,
    .highlight-card.reverse {
        grid-template-columns: 1fr;
    }

    .highlight-card.reverse .highlight-media {
        order: 0;
    }
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 20px;
    }

    .highlight-content h3 {
        font-size: 20px;
    }
}

/* ===== DOWNLOAD HIGHLIGHTS (LIGHT THEME) ===== */
body.light-theme .highlight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 245, 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 .highlight-card::before {
    background: radial-gradient(circle at 15% 10%, rgba(0, 96, 239, 0.12), transparent 60%);
}

body.light-theme .highlight-card::after {
    background: rgba(5, 183, 253, 0.12);
}

body.light-theme .highlight-card .floating-chip {
    background: rgba(0, 96, 239, 0.12);
    border-color: rgba(0, 96, 239, 0.3);
    color: #0f172a;
}

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 {
    background: var(--primary);
}


/* ===== WHY IPTV SECTION ===== */
.why-iptv-section {
    position: relative;
    padding: 88px 0 52px;
    --why-iptv-glow-a: rgba(0, 96, 239, 0.2);
    --why-iptv-glow-b: rgba(3, 162, 254, 0.16);
    --why-iptv-surface: linear-gradient(160deg, rgba(4, 14, 32, 0.96) 0%, rgba(3, 10, 24, 0.93) 100%);
    --why-iptv-border: rgba(69, 150, 255, 0.24);
    --why-iptv-shadow: 0 24px 60px rgba(2, 8, 22, 0.58);
    --why-iptv-text: #f8fbff;
    --why-iptv-muted: rgba(222, 235, 248, 0.84);
    --why-iptv-media-bg: #041126;
    --why-iptv-media-border: rgba(103, 181, 255, 0.2);
    --why-iptv-media-overlay-bg: rgba(5, 20, 47, 0.64);
    --why-iptv-media-overlay-border: rgba(124, 199, 255, 0.3);
    --why-iptv-pill-bg: rgba(0, 96, 239, 0.18);
    --why-iptv-pill-border: rgba(92, 173, 255, 0.45);
    --why-iptv-list-card: rgba(10, 31, 64, 0.36);
}

.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-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;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-iptv-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.14;
    letter-spacing: -0.85px;
    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(56, 189, 248, 0.11), transparent 44%);
    pointer-events: none;
}

.why-iptv-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 187, 255, 0.4);
    box-shadow: 0 28px 70px rgba(2, 8, 22, 0.66);
}

.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(2, 10, 23, 0.88) 0%, rgba(2, 10, 23, 0.08) 58%);
}

.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;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.why-iptv-media-overlay h4 {
    margin: 10px 0 6px;
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.2;
    color: #f3f8ff;
}

.why-iptv-media-overlay p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(220, 233, 248, 0.84);
}

.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);
    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(74, 167, 255, 0.22);
    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, #0fb3ff, #53e4ff);
    box-shadow: 0 0 0 4px rgba(15, 179, 255, 0.17);
}

/* ===== WHY IPTV SECTION (LIGHT THEME) ===== */
body.light-theme .why-iptv-section {
    --why-iptv-glow-a: rgba(37, 99, 235, 0.14);
    --why-iptv-glow-b: rgba(14, 165, 233, 0.11);
    --why-iptv-surface: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 248, 255, 0.92) 100%);
    --why-iptv-border: rgba(15, 23, 42, 0.12);
    --why-iptv-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --why-iptv-text: #0f172a;
    --why-iptv-muted: #475569;
    --why-iptv-media-bg: #e7eef8;
    --why-iptv-media-border: rgba(14, 116, 217, 0.18);
    --why-iptv-media-overlay-bg: rgba(255, 255, 255, 0.84);
    --why-iptv-media-overlay-border: rgba(14, 116, 217, 0.22);
    --why-iptv-pill-bg: rgba(14, 116, 217, 0.1);
    --why-iptv-pill-border: rgba(14, 116, 217, 0.3);
    --why-iptv-list-card: rgba(14, 116, 217, 0.06);
}

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(37, 99, 235, 0.28);
}

body.light-theme .why-iptv-heading::after {
    background: linear-gradient(90deg, transparent, #2563eb, 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: #0b3f91;
}

body.light-theme .why-iptv-list li {
    color: #0f172a;
}

body.light-theme .why-iptv-list li::before {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    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;
    }
}

