/* ==========================================================================
   VIP IPTV 4K - Stylesheet (Official Palette Theme)
   Brand Palette: #F6F6F6 (Canvas/Light Bg), #D6E4F0 (Soft Tint/Borders), #1E56A0 (Primary Blue), #163172 (Deep Navy/Dark)
   Typography: Inter (400, 500, 600, 700, 800)
   ========================================================================== */

:root {
    --primary: #1E56A0;
    --primary-hover: #163172;
    --primary-dark: #163172;
    --primary-deep: #163172;
    --primary-light: #D6E4F0;
    --secondary: #D6E4F0;
    --secondary-dark: #1E56A0;
    --secondary-light: #D6E4F0;
    --background-light: #F6F6F6;
    --background-soft: #D6E4F0;
    --background-card: #FFFFFF;
    --white: #FFFFFF;
    --text-main: #163172;
    --text-muted: #3D5570;
    --text-light: #677E99;
    --border-color: #D6E4F0;
    --border-subtle: rgba(214, 228, 240, 0.7);
    --border-sleek: rgba(30, 86, 160, 0.14);
    --border-accent: rgba(30, 86, 160, 0.35);
    --card-bg: #FFFFFF;
    --success: #1E824C;
    --success-bg: #E8F5E9;
    --warning: #D35400;
    --warning-bg: #FFF3E0;
    
    /* Layout & Radii inspired by modern product archetypes */
    --container-max: 1200px;
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;
    --radius-full: 9999px;
    
    /* Sleek Box Shadows */
    --shadow-subtle: 0 2px 4px rgba(22, 49, 114, 0.04), 0 6px 16px rgba(22, 49, 114, 0.05);
    --shadow-md: 0 4px 10px rgba(22, 49, 114, 0.06), 0 12px 28px -4px rgba(30, 86, 160, 0.12);
    --shadow-lg: 0 12px 36px -6px rgba(22, 49, 114, 0.14), 0 24px 48px -12px rgba(30, 86, 160, 0.18);
    --shadow-card-hover: 0 18px 40px -8px rgba(30, 86, 160, 0.22), 0 0 0 1.5px #D6E4F0;
    --shadow-glow: 0 0 25px rgba(214, 228, 240, 0.5);
    
    /* Transitions */
    --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Elements
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-light);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

main {
    flex: 1 0 auto;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-dark);
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Accessibility & Helpers
   ========================================================================== */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 1rem;
}

:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* ==========================================================================
   Layout Containers & Grid
   ========================================================================== */

.site-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.site-container-narrow {
    max-width: 860px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.justify-center { justify-content: center; }

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.4rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead, .section-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 3.25rem;
}

.section-title {
    margin-top: 0.85rem;
}

/* ==========================================================================
   Badges & Pills (Inspiration Archetype)
   ========================================================================== */

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.15rem;
    background-color: rgba(214, 228, 240, 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(30, 86, 160, 0.22);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 1px 3px rgba(22, 49, 114, 0.04);
}

.badge-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--secondary);
}

.badge-pill-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.15rem;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(214, 228, 240, 0.45);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
}

.badge-pill-light::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D6E4F0;
    box-shadow: 0 0 8px #D6E4F0;
}

/* ==========================================================================
   Buttons & Interactive Elements (Inspiration Pill Style)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.95rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    position: relative;
    cursor: pointer;
}

.btn-sm {
    padding: 0.55rem 1.3rem;
    font-size: 0.86rem;
    border-radius: var(--radius-full);
}

.btn-lg {
    padding: 1.05rem 2.45rem;
    font-size: 1.08rem;
    border-radius: var(--radius-full);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px rgba(22, 49, 114, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #163172 0%, #12222E 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(22, 49, 114, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(22, 49, 114, 0.22);
}

.btn-secondary {
    background: linear-gradient(135deg, #D6E4F0 0%, #B8D2E8 100%);
    color: #163172;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 12px rgba(214, 228, 240, 0.28);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #C2D9ED 0%, #A2C4E0 100%);
    color: #163172;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 228, 240, 0.38);
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 1.5px solid rgba(30, 86, 160, 0.25);
    box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-light {
    background: #FFFFFF;
    color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.btn-cta-light:hover {
    background: #F6F6F6;
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn-cta-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(214, 228, 240, 0.6);
    backdrop-filter: blur(8px);
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--primary);
}

.link-with-arrow svg {
    transition: transform var(--transition-fast);
}

.link-with-arrow:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   Header & Navigation Bar (Modern Island Pill Navbar with Smooth Scroll Animation)
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(246, 246, 246, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: none;
    transition: background-color 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    padding: 0.5rem 0;
    margin: 0;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px -4px rgba(22, 49, 114, 0.08);
    border-bottom: none;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.32rem;
    color: var(--primary-deep);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.logo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(22, 49, 114, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-fast);
}

.logo-text {
    letter-spacing: -0.025em;
}

.logo-highlight {
    color: var(--secondary-dark);
}

.desktop-nav {
    display: none;
}

@media (min-width: 960px) {
    .desktop-nav {
        display: block;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 0.35rem 0.65rem;
        border-radius: var(--radius-full);
        border: 1px solid rgba(30, 86, 160, 0.1);
        box-shadow: 0 2px 8px rgba(22, 49, 114, 0.03);
    }

    .site-header.scrolled .desktop-nav {
        background-color: rgba(246, 246, 246, 0.95);
        border-color: rgba(30, 86, 160, 0.14);
        box-shadow: 0 3px 10px rgba(22, 49, 114, 0.05);
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-deep);
    background-color: var(--background-soft);
}

.nav-link.active {
    color: var(--primary-deep);
    background-color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(22, 49, 114, 0.06);
    font-weight: 700;
}

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

/* Primary Header CTA button - Hidden on mobile screens to keep navbar clean and uncluttered */
#header-cta-btn {
    display: none;
}

@media (min-width: 900px) {
    #header-cta-btn {
        display: inline-flex;
    }
}

.whatsapp-btn-header {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background-color: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #C8E6C9;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

@media (min-width: 1040px) {
    .whatsapp-btn-header {
        display: inline-flex;
    }
}

.whatsapp-btn-header:hover {
    background-color: #C8E6C9;
    color: #0E3D12;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: var(--radius-sm);
    z-index: 1100;
}

@media (min-width: 900px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    z-index: 999;
}

.mobile-nav.open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-nav-inner {
    padding: 1.5rem 1.25rem 2rem;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-footer {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */

.breadcrumb-container {
    background-color: var(--background-light);
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    margin: 0;
    width: 100%;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item span[aria-current="page"] {
    color: var(--primary-deep);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ==========================================================================
   Hero Section (Premium, Perfectly Proportioned & 100% Mobile Responsive)
   ========================================================================== */

.section-hero {
    padding: 4.5rem 0 3.75rem;
    background: radial-gradient(circle at 50% -10%, rgba(214, 228, 240, 0.65) 0%, rgba(246, 246, 246, 0) 65%),
                radial-gradient(circle at 85% 85%, rgba(214, 228, 240, 0.4) 0%, rgba(246, 246, 246, 0) 50%),
                linear-gradient(180deg, #F6F6F6 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
}

@media (max-width: 900px) {
    .section-hero {
        padding: 3.25rem 0 2.75rem;
    }
}

@media (max-width: 600px) {
    .section-hero {
        padding: 2.25rem 0 1.85rem;
    }
}

.hero-content-centered {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.25rem;
}

@media (max-width: 600px) {
    .hero-content-centered {
        padding: 0 0.85rem;
    }
}

.hero-pill {
    margin-bottom: 1.15rem;
}

.hero-pill .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(30, 86, 160, 0.08);
    color: var(--primary-deep);
    border: 1px solid rgba(30, 86, 160, 0.2);
    padding: 0.38rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(30, 86, 160, 0.06);
    transition: all var(--transition-fast);
}

@media (max-width: 600px) {
    .hero-pill {
        margin-bottom: 0.85rem;
    }
    .hero-pill .badge-pill {
        font-size: 0.74rem;
        padding: 0.3rem 0.85rem;
    }
}

.hero-title {
    font-size: clamp(2.15rem, 4.4vw, 3.35rem);
    color: var(--primary-deep);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
    margin-bottom: 1.15rem;
    max-width: 840px;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.72rem;
        line-height: 1.22;
        letter-spacing: -0.025em;
        margin-bottom: 0.85rem;
    }
}

.hero-title-gradient {
    color: var(--primary);
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    font-weight: 800;
}

.hero-text {
    font-size: 1.12rem;
    color: #475569;
    line-height: 1.62;
    margin-bottom: 1.85rem;
    max-width: 680px;
}

@media (max-width: 600px) {
    .hero-text {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }
}

/* Dynamic Live Typing Showcase Bar */
.hero-typing-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (max-width: 768px) {
    .hero-typing-container {
        display: none !important;
    }
}

.hero-live-program-bar {
    background: #FFFFFF;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-full);
    padding: 0.65rem 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    box-shadow: 0 6px 20px rgba(22, 49, 114, 0.05), 0 0 0 1px rgba(214, 228, 240, 0.3);
    position: relative;
    transition: all var(--transition-base);
    font-size: 1rem;
    max-width: 100%;
}

.hero-live-program-bar:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(30, 86, 160, 0.1);
}

@media (max-width: 600px) {
    .hero-live-program-bar {
        padding: 0.55rem 0.85rem;
        border-radius: 12px;
        font-size: 0.86rem;
        gap: 0.4rem;
        justify-content: space-between;
        width: 100%;
    }
}

.typing-lead-text {
    color: #64748B;
    font-weight: 600;
    font-size: 0.92rem;
}

@media (max-width: 480px) {
    .typing-lead-text {
        font-size: 0.82rem;
    }
}

.typing-dynamic-text {
    color: var(--primary-deep);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 1.05rem;
    min-width: 10px;
}

@media (max-width: 600px) {
    .typing-dynamic-text {
        font-size: 0.92rem;
    }
}

.typing-cursor {
    color: var(--primary);
    font-weight: 900;
    animation: blinkCursor 0.9s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.live-stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(30, 86, 160, 0.08);
    color: var(--primary-deep);
    border: 1px solid rgba(30, 86, 160, 0.18);
    padding: 0.24rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

@media (max-width: 480px) {
    .live-stream-badge {
        padding: 0.18rem 0.5rem;
        font-size: 0.68rem;
    }
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #2ED573;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ED573;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

/* Quick Topic Pills for French Interests */
.typing-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

@media (max-width: 600px) {
    .typing-quick-tags {
        gap: 0.35rem;
    }
}

.quick-tag-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.25rem;
}

@media (max-width: 600px) {
    .quick-tag-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.15rem;
        font-size: 0.72rem;
    }
}

.quick-topic-tag {
    background-color: #FFFFFF;
    color: var(--primary);
    border: 1px solid rgba(30, 86, 160, 0.14);
    padding: 0.32rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(22, 49, 114, 0.03);
    min-height: 32px;
}

.quick-topic-tag:hover {
    background-color: var(--background-soft);
    border-color: var(--primary);
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 86, 160, 0.08);
}

.quick-topic-tag.active {
    background-color: var(--primary-deep);
    color: #FFFFFF;
    border-color: var(--primary-deep);
    box-shadow: 0 4px 12px rgba(30, 86, 160, 0.2);
}

@media (max-width: 600px) {
    .quick-topic-tag {
        font-size: 0.75rem;
        padding: 0.28rem 0.65rem;
        min-height: 30px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 540px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }
    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
        justify-content: center;
    }
}

.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon-circle {
    transform: translateX(3px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 700;
}

@media (max-width: 600px) {
    .hero-trust-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
        max-width: 440px;
    }
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.42rem 0.95rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(30, 86, 160, 0.12);
    box-shadow: 0 2px 6px rgba(22, 49, 114, 0.04);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-deep);
}

@media (max-width: 600px) {
    .hero-trust-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}

.hero-trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   Hero Underneath Carousel (Popular 4K Channels & Streaming Bouquets)
   ========================================================================== */

.section-hero-carousel {
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid rgba(30, 86, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.section-hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 86, 160, 0.25), transparent);
}

@media (max-width: 768px) {
    .section-hero-carousel {
        padding: 2.25rem 0 2.75rem;
    }
}

.hero-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.carousel-title-group {
    display: flex;
    flex-direction: column;
}

.carousel-headline {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary-deep);
    letter-spacing: -0.025em;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .carousel-headline {
        font-size: 1.25rem;
    }
}

.carousel-controls-group {
    display: flex;
    align-items: center;
}

/* Premium Flèches / Navigation Arrows */
.carousel-nav-arrows {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.c-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid rgba(30, 86, 160, 0.16);
    color: var(--primary-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 10px rgba(22, 49, 114, 0.07);
    outline: none;
    position: relative;
}

.c-arrow-btn svg {
    transition: transform 0.2s ease;
}

.c-arrow-btn:hover {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 20px rgba(30, 86, 160, 0.35);
}

.c-arrow-btn.c-arrow-prev:hover svg {
    transform: translateX(-2px);
}

.c-arrow-btn.c-arrow-next:hover svg {
    transform: translateX(2px);
}

.c-arrow-btn:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 6px rgba(30, 86, 160, 0.2);
}

@media (max-width: 600px) {
    .c-arrow-btn {
        width: 38px;
        height: 38px;
    }
}

.hero-carousel-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -0.75rem;
    padding: 0.75rem 0.75rem 1.25rem;
    cursor: grab;
    user-select: none;
}

.hero-carousel-track-wrapper.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.hero-carousel-track-wrapper::-webkit-scrollbar {
    display: none;
}

.hero-carousel-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding-bottom: 0.25rem;
}

/* ==========================================================================
   Modern Streaming Carousel Card Items
   ========================================================================== */

.carousel-card-item {
    flex: 0 0 295px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1.5px solid rgba(30, 86, 160, 0.12);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(22, 49, 114, 0.05);
    position: relative;
    user-select: none;
    overflow: hidden;
}

.carousel-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E56A0, #00D2D3);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.carousel-card-item:hover::before {
    opacity: 1;
}

@media (max-width: 600px) {
    .carousel-card-item {
        flex: 0 0 255px;
        padding: 1.15rem 1.05rem;
        border-radius: 16px;
    }
}

.carousel-card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 86, 160, 0.28);
    box-shadow: 0 14px 30px rgba(30, 86, 160, 0.14);
}

.c-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.c-badge-res {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

.res-4k {
    background: rgba(30, 86, 160, 0.09);
    color: var(--primary-deep);
    border: 1px solid rgba(30, 86, 160, 0.22);
}

.res-dolby {
    background: rgba(142, 68, 173, 0.1);
    color: #7E22CE;
    border: 1px solid rgba(142, 68, 173, 0.28);
}

.c-badge-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    background: #F1F5F9;
    padding: 0.22rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid #E2E8F0;
}

.c-card-body {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.25rem;
}

.c-channel-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    position: relative;
}

.c-brand-logo {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.1;
    color: #FFFFFF;
}

/* Distinctive Bouquet Badges */
.bg-canal { background: linear-gradient(135deg, #111111 0%, #2A2A2A 100%); border: 1px solid rgba(255, 255, 255, 0.15); }
.bg-canal-cinema { background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%); border: 1px solid #FFD700; }
.bg-bein { background: linear-gradient(135deg, #5C2D91 0%, #3B1C5D 100%); border: 1px solid rgba(255, 255, 255, 0.2); }
.bg-dazn { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); border: 1.5px solid #F7D000; }
.bg-dazn .font-dazn { color: #F7D000; font-size: 0.82rem; font-weight: 900; }
.bg-rmc { background: linear-gradient(135deg, #E65100 0%, #BF360C 100%); border: 1px solid rgba(255, 255, 255, 0.2); }
.bg-netflix { background: linear-gradient(135deg, #E50914 0%, #990000 100%); border: 1px solid rgba(255, 255, 255, 0.2); }
.bg-disney-prime { background: linear-gradient(135deg, #0C2340 0%, #0052CC 100%); border: 1px solid rgba(0, 210, 211, 0.4); }
.bg-france { background: linear-gradient(135deg, #002B7F 0%, #CE1126 100%); border: 1px solid rgba(255, 255, 255, 0.25); }
.bg-eurosport { background: linear-gradient(135deg, #001E62 0%, #004494 100%); border: 1px solid rgba(255, 255, 255, 0.2); }
.bg-cine { background: linear-gradient(135deg, #4A148C 0%, #311B92 100%); border: 1px solid rgba(255, 255, 255, 0.2); }

.c-channel-info {
    overflow: hidden;
}

.c-channel-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.c-channel-sub {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.c-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid #F1F5F9;
    font-size: 0.76rem;
}

.c-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #16A34A;
    font-weight: 800;
}

.pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22C55E;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulseDot 1.8s infinite;
}

.c-quality-tag {
    color: #64748B;
    font-weight: 700;
    font-size: 0.74rem;
}

/* Feature Cards circular action button (Inspired by WizardZ cards) */
.feature-card-action {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}

.feature-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    color: var(--primary);
    border: 1.5px solid rgba(30, 86, 160, 0.18);
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 10px rgba(22, 49, 114, 0.05);
}

.feature-arrow-btn:hover {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 16px rgba(30, 86, 160, 0.3);
}

.feature-box:hover .feature-arrow-btn {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 86, 160, 0.25);
}

/* ==========================================================================
   Features & Value Proposition Section (Inspiration Cards)
   ========================================================================== */

.section-features {
    padding: 5.5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.85rem;
}

.feature-box {
    background-color: var(--background-soft);
    border: 1.5px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.85rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--secondary);
    background-color: var(--white);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 14px rgba(22, 49, 114, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-box h3 {
    font-size: 1.22rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ==========================================================================
   Compatible Devices Section (Inspiration Grid)
   ========================================================================== */

.section-devices {
    padding: 5.5rem 0;
    background-color: var(--background-light);
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1.35rem;
    margin-bottom: 2.5rem;
}

.device-card {
    background-color: var(--white);
    border: 1.5px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-subtle);
}

.device-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.device-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 0.9rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.device-card:hover .device-icon {
    transform: scale(1.08);
}

.device-name {
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.device-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   Pricing Section (Sleek Interface)
   ========================================================================== */

.section-pricing {
    padding: 5.5rem 0;
    background-color: var(--white);
    scroll-margin-top: 5.5rem;
    position: relative;
}

.anchor-target {
    position: absolute;
    top: -5.5rem;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background-color: var(--white);
    border: 1.5px solid rgba(30, 86, 160, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.65rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-subtle);
}

.pricing-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 32px rgba(30, 86, 160, 0.15), 0 0 0 1px rgba(214, 228, 240, 0.4);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F6FA 100%);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 42px rgba(30, 86, 160, 0.22), 0 0 0 1px var(--secondary);
}

.card-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.32rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(22, 49, 114, 0.28);
    z-index: 2;
    width: max-content;
    max-width: 95%;
    text-align: center;
    box-sizing: border-box;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.28rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(30, 86, 160, 0.1);
    z-index: 2;
    width: max-content;
    max-width: 95%;
    text-align: center;
    box-sizing: border-box;
}

.card-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-deep);
}

.currency {
    font-size: 1.4rem;
    margin-right: 2px;
}

.amount-main {
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 800;
}

.amount-cents {
    font-size: 1.4rem;
}

.billing-term {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.35rem;
}

.card-body {
    flex: 1 0 auto;
    margin-bottom: 1.75rem;
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.45;
}

.check-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    margin-top: auto;
}

.activation-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.85rem;
}

.pricing-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    border: 1px solid rgba(30, 86, 160, 0.1);
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
    .pricing-guarantees {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.guarantee-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.12);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-subtle);
}

.guarantee-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.guarantee-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   How It Works Steps (Sleek Interface)
   ========================================================================== */

.section-how-it-works {
    padding: 5.5rem 0;
    background-color: var(--background-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.85rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(22, 49, 114, 0.22);
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

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

/* ==========================================================================
   FAQ Accordion Component (Sleek Interface)
   ========================================================================== */

.section-faq {
    padding: 5.5rem 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto 3.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(30, 86, 160, 0.1);
    transition: background-color var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 0.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    gap: 1rem;
    transition: color var(--transition-fast);
    cursor: pointer;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--background-soft);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform var(--transition-base), background-color var(--transition-base), color var(--transition-base);
    border: 1px solid rgba(30, 86, 160, 0.1);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

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

.faq-content.open {
    max-height: 800px;
    transition: max-height 0.35s ease-in-out;
}

.faq-body {
    padding: 0 0.5rem 1.35rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ==========================================================================
   CTA Banner Component (Sleek Interface)
   ========================================================================== */

.section-cta-banner {
    padding: 3.5rem 0;
}

.cta-banner-card {
    background: radial-gradient(circle at 90% 10%, rgba(214, 228, 240, 0.2) 0%, rgba(32, 56, 75, 0) 60%),
                linear-gradient(135deg, #163172 0%, #163172 100%);
    border-radius: var(--radius-xl);
    padding: 3.75rem 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(214, 228, 240, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 900px) {
    .cta-banner-card {
        padding: 4.5rem 4rem;
    }
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    margin-top: 1rem;
    margin-bottom: 1.15rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    color: #D6E4F0;
    font-size: 1.12rem;
    max-width: 680px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-features-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

/* ==========================================================================
   Article / Blog Styles
   ========================================================================== */

.section-blog-index {
    padding: 4rem 0 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.article-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-dark) 100%);
    padding: 2rem 1.5rem;
    color: var(--white);
}

.article-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.article-card-title {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.35;
}

.article-card-title a {
    color: var(--white);
}

.article-card-body {
    padding: 1.5rem;
    flex: 1 0 auto;
}

.article-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-single-header {
    padding: 3.5rem 0 2rem;
    background-color: var(--background-soft);
    border-bottom: 1px solid var(--border-subtle);
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.article-single-body {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-main);
}

.article-single-body h2 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.article-single-body h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.article-single-body ul, .article-single-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-single-body ul {
    list-style: disc;
}

.article-single-body ol {
    list-style: decimal;
}

.article-single-body li {
    margin-bottom: 0.5rem;
}

.article-single-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-muted);
    background-color: var(--background-soft);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.toc-box {
    background-color: var(--background-soft);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.toc-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.toc-list li {
    margin-bottom: 0.4rem;
}

.toc-list a {
    color: var(--primary);
    font-size: 0.95rem;
}

.toc-list a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Comparison Table Styles (Sleek, Fully Responsive Interface)
   ========================================================================== */

.table-scroll-hint-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.table-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--background-soft);
    border: 1px solid var(--border-subtle);
    padding: 0.45rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.table-scroll-hint .hint-icon {
    font-size: 1rem;
    color: var(--primary);
}

@media (min-width: 992px) {
    .table-scroll-hint-wrapper {
        display: none;
    }
}

.comparison-table-wrapper {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    margin: 2rem 0 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 86, 160, 0.14);
    background-color: var(--white);
    box-shadow: 0 4px 20px -2px rgba(22, 49, 114, 0.06);
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 86, 160, 0.25) transparent;
}

.comparison-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 4px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(30, 86, 160, 0.3);
    border-radius: 4px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    min-width: 680px;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.comparison-table th {
    background-color: var(--background-soft);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* Sticky first column on desktop & mobile scroll */
.comparison-table .th-feature,
.comparison-table .td-feature {
    position: sticky;
    left: 0;
    text-align: left;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
    background-color: var(--white);
    border-right: 1px solid var(--border-subtle);
    box-shadow: 4px 0 10px -3px rgba(22, 49, 114, 0.08);
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    min-width: 190px;
    max-width: 240px;
}

.comparison-table .th-feature {
    background-color: #F8FAFC;
    z-index: 4;
    font-weight: 800;
    color: var(--primary-dark);
    border-top-left-radius: var(--radius-lg);
}

.comparison-table tbody tr:last-child .td-feature {
    border-bottom-left-radius: var(--radius-lg);
}

/* Plan column headers */
.comparison-table .th-plan {
    min-width: 130px;
    padding: 1.25rem 0.9rem;
}

.comparison-table .plan-th-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.comparison-table .plan-th-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Featured 1-year plan styling */
.comparison-table th.featured-col {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: var(--white) !important;
    position: relative;
    border-top: 3px solid #FFB800;
    border-top-right-radius: var(--radius-lg);
}

.comparison-table th.featured-col .plan-th-name,
.comparison-table th.featured-col .plan-th-price {
    color: var(--white) !important;
}

.featured-plan-badge {
    display: inline-block;
    background-color: #FFB800;
    color: #0F172A;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.comparison-table td.featured-col {
    background-color: rgba(30, 86, 160, 0.05);
    font-weight: 600;
    color: var(--text-dark);
    border-left: 1px solid rgba(30, 86, 160, 0.12);
    border-right: 1px solid rgba(30, 86, 160, 0.12);
}

.comparison-table .featured-price-text {
    color: var(--primary);
    font-size: 1.05rem;
}

/* Action row */
.comparison-table .tr-action .td-val,
.comparison-table .tr-action .td-feature {
    padding: 1.25rem 0.85rem;
    background-color: #F8FAFC;
    border-bottom: none;
}

.comparison-table .tr-action td.featured-col {
    background-color: rgba(30, 86, 160, 0.08);
}

.comparison-table .table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 140px;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.comparison-table .table-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Form & Info Styles (Sleek Interface)
   ========================================================================== */

.section-contact {
    padding: 4.5rem 0 5.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 3.5rem;
    }
}

.contact-info-card {
    background: linear-gradient(145deg, #163172 0%, #163172 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(214, 228, 240, 0.18);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-channels {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

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

.channel-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(214, 228, 240, 0.2);
}

.channel-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-light);
    margin-bottom: 0.2rem;
}

.channel-value {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    word-break: break-word;
}

.channel-value a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.channel-value a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    box-shadow: var(--shadow-subtle);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.45rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.05rem;
    border: 1.5px solid rgba(30, 86, 160, 0.15);
    border-radius: var(--radius-md);
    background-color: var(--white);
    font-size: 0.98rem;
    color: var(--text-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3.5px rgba(30, 86, 160, 0.15);
}

textarea.form-control {
    min-height: 125px;
    resize: vertical;
}

.form-feedback {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-feedback.success {
    display: block;
    background-color: var(--success-bg);
    color: var(--success);
    border: 1px solid #A5D6A7;
}

.form-feedback.error {
    display: block;
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* ==========================================================================
   Footer Section (Sleek Interface)
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, #163172 0%, #0E1F4B 100%);
    color: #D6E4F0;
    padding: 5rem 0 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-bio {
    font-size: 0.9rem;
    color: #D6E4F0;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-heading {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-list a {
    color: #D6E4F0;
    font-size: 0.9rem;
}

.footer-nav-list a:hover {
    color: var(--primary-light);
}

.footer-region-badge {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #D6E4F0;
}

.region-flag {
    margin-right: 0.35rem;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
    font-size: 0.82rem;
    color: #7E97AA;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.floating-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.5);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* ==========================================================================
   Print Optimization
   ========================================================================== */

@media print {
    .site-header, .site-footer, .floating-whatsapp-widget, .section-cta-banner {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
}

/* ==========================================================================
   Channels Highlight Section (Homepage Showcase & CTA to Full Catalog)
   ========================================================================== */

.section-channels-highlight {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(30, 86, 160, 0.08);
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
}

.channels-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

@media (min-width: 640px) {
    .channels-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .channels-highlight-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.channel-hl-card {
    background-color: var(--background-soft);
    border: 1.5px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-subtle);
}

.channel-hl-card:hover {
    transform: translateY(-4px);
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-card-hover);
}

.channel-hl-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.channel-hl-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-hl-icon.sport-icon {
    background: linear-gradient(135deg, #163172 0%, #0E1F4B 100%);
    color: #D6E4F0;
    border: 1px solid rgba(214, 228, 240, 0.3);
}

.channel-hl-icon.cinema-icon {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.channel-hl-icon.france-icon {
    background: linear-gradient(135deg, #254259 0%, #152735 100%);
    color: #FFD166;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.channel-hl-icon.globe-icon {
    background: linear-gradient(135deg, #D6E4F0 0%, #1E56A0 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.channel-hl-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: 0.2rem;
}

.channel-hl-badge {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-xs);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-4k {
    background: #163172;
    color: #D6E4F0;
}

.badge-dolby {
    background: rgba(30, 86, 160, 0.14);
    color: var(--primary-dark);
}

.badge-uhd {
    background: rgba(22, 49, 114, 0.12);
    color: var(--primary);
}

.badge-multi {
    background: rgba(214, 228, 240, 0.25);
    color: var(--primary-dark);
}

.channel-hl-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.15rem;
    flex-grow: 1;
}

.channel-pill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.channel-tag {
    font-size: 0.72rem;
    font-weight: 600;
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.15);
    color: var(--primary-dark);
    padding: 0.22rem 0.55rem;
    border-radius: var(--radius-full);
}

.channel-hl-card:hover .channel-tag {
    background-color: var(--background-soft);
}

.channels-highlight-cta-banner {
    background: linear-gradient(135deg, #163172 0%, #163172 100%);
    border: 1px solid rgba(214, 228, 240, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 16px 36px rgba(17, 32, 44, 0.35);
}

@media (min-width: 768px) {
    .channels-highlight-cta-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.channels-cta-text-side {
    flex: 1;
}

.channels-cta-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.channels-cta-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.channels-cta-action-side {
    flex-shrink: 0;
}

.channels-cta-action-side .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
}

/* ==========================================================================
   Channel Explorer & Bouquets Catalog Component
   ========================================================================== */

.section-channels-explorer {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(30, 86, 160, 0.08);
    border-bottom: 1px solid rgba(30, 86, 160, 0.08);
    position: relative;
}

.channel-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.channel-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    max-width: 1050px;
    width: 100%;
}

@media (max-width: 640px) {
    .channel-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.6rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .channel-tabs::-webkit-scrollbar {
        height: 4px;
    }
    .channel-tabs::-webkit-scrollbar-thumb {
        background: rgba(30, 86, 160, 0.2);
        border-radius: 4px;
    }
}

.channel-tab-btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(30, 86, 160, 0.14);
    background-color: #F8FAFC;
    color: #475569;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.channel-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary-deep);
    background-color: #EFF6FF;
    transform: translateY(-1px);
}

.channel-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(30, 86, 160, 0.3);
}

.channel-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 480px) {
    .channel-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.95rem;
    }
}

@media (min-width: 768px) {
    .channel-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.15rem;
    }
}

@media (min-width: 1080px) {
    .channel-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.channel-item-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.channel-item-card:hover {
    transform: translateY(-3px);
    background-color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(30, 86, 160, 0.1);
}

.channel-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #163172 0%, #0E1F4B 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: -0.02em;
}

/* Category-specific icon palettes */
.bg-canal-ico {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #F8FAFC;
    border-color: rgba(255, 255, 255, 0.2);
}
.bg-bein-ico {
    background: linear-gradient(135deg, #5B21B6 0%, #4C1D95 100%);
    color: #EDE9FE;
    border-color: rgba(237, 233, 254, 0.3);
}
.bg-rmc-ico {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFFFFF;
    border-color: rgba(254, 202, 202, 0.3);
}
.bg-dazn-ico {
    background: linear-gradient(135deg, #18181B 0%, #09090B 100%);
    color: #FACC15;
    border-color: rgba(250, 204, 21, 0.3);
}
.bg-euro-ico {
    background: linear-gradient(135deg, #0369A1 0%, #075985 100%);
    color: #FFFFFF;
    border-color: rgba(224, 242, 254, 0.3);
}
.bg-sky-ico {
    background: linear-gradient(135deg, #C2410C 0%, #9A3412 100%);
    color: #FFFFFF;
    border-color: rgba(254, 215, 170, 0.3);
}
.bg-tnt-ico {
    background: linear-gradient(135deg, #4338CA 0%, #3730A3 100%);
    color: #FFFFFF;
    border-color: rgba(224, 231, 255, 0.3);
}
.bg-sport-ico {
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
    color: #FFFFFF;
    border-color: rgba(167, 243, 208, 0.3);
}
.bg-cine-ico {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: #FFFFFF;
    border-color: rgba(214, 228, 240, 0.3);
}
.bg-ocs-ico {
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    color: #FFFFFF;
    border-color: rgba(254, 215, 170, 0.3);
}
.bg-tnt-fr {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    color: #FFFFFF;
    border-color: rgba(191, 219, 254, 0.3);
}
.bg-be-ico {
    background: linear-gradient(135deg, #854D0E 0%, #713F12 100%);
    color: #FEF08A;
    border-color: rgba(254, 240, 138, 0.3);
}
.bg-ch-ico {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #FFFFFF;
    border-color: rgba(254, 202, 202, 0.3);
}
.bg-ca-ico {
    background: linear-gradient(135deg, #BE123C 0%, #9F1239 100%);
    color: #FFE4E6;
    border-color: rgba(255, 228, 230, 0.3);
}
.bg-uk-ico {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    color: #FFFFFF;
    border-color: rgba(219, 234, 254, 0.3);
}
.bg-us-ico {
    background: linear-gradient(135deg, #312E81 0%, #1E1B4B 100%);
    color: #E0E7FF;
    border-color: rgba(224, 231, 255, 0.3);
}
.bg-arab-ico {
    background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
    color: #CCFBF1;
    border-color: rgba(204, 251, 241, 0.3);
}
.bg-doc-ico {
    background: linear-gradient(135deg, #4D7C0F 0%, #3F6212 100%);
    color: #ECFCCB;
    border-color: rgba(236, 252, 203, 0.3);
}
.bg-kids-ico {
    background: linear-gradient(135deg, #DB2777 0%, #BE185D 100%);
    color: #FCE7F3;
    border-color: rgba(252, 231, 243, 0.3);
}

.channel-item-details {
    flex: 1;
    min-width: 0;
}

.channel-item-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.channel-item-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: nowrap;
}

.badge-resolution {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.12rem 0.42rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    text-transform: uppercase;
}

.badge-res-4k {
    background: #163172;
    color: #FFFFFF;
    border: 1px solid rgba(214, 228, 240, 0.3);
}

.badge-res-fhd {
    background: rgba(30, 86, 160, 0.1);
    color: var(--primary-deep);
    border: 1px solid rgba(30, 86, 160, 0.15);
}

.channel-category-tag {
    font-size: 0.72rem;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* ==========================================================================
   Customer Testimonials & Trustpilot-Score Section
   ========================================================================== */

.section-testimonials {
    padding: 5.5rem 0;
    background-color: var(--background-soft);
}

.trust-score-banner {
    background: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
    .trust-score-banner {
        flex-direction: row;
    }
}

.trust-score-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.score-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stars-rating {
    display: flex;
    gap: 0.2rem;
    color: #F59E0B;
    margin-bottom: 0.25rem;
}

.score-details {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-stats-right {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-stat-box {
    text-align: center;
}

.trust-stat-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-stat-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.reviewer-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1E824C;
    background-color: #E8F5E9;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.testimonial-quote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-light);
}

.plan-used-tag {
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   Speed & 4K Compatibility Checker Interactive Widget
   ========================================================================== */

.section-speed-checker {
    padding: 5.5rem 0;
    background-color: var(--white);
}

.speed-checker-card {
    background: linear-gradient(145deg, #163172 0%, #163172 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    border: 1px solid rgba(214, 228, 240, 0.2);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 960px;
}

@media (min-width: 768px) {
    .speed-checker-card {
        padding: 3.5rem 3rem;
    }
}

.speed-controls-row {
    margin: 2.25rem 0;
}

.speed-preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.speed-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1px solid rgba(214, 228, 240, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    color: #D6E4F0;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.speed-btn:hover {
    background-color: rgba(214, 228, 240, 0.2);
    color: var(--white);
}

.speed-btn.active {
    background: #D6E4F0;
    color: #163172;
    border-color: #D6E4F0;
    box-shadow: 0 0 16px rgba(214, 228, 240, 0.4);
}

.speed-slider-wrap {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.speed-slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #D6E4F0;
    margin-bottom: 0.5rem;
}

.speed-current-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #D6E4F0;
}

.speed-range-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.speed-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D6E4F0;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(214, 228, 240, 0.6);
}

.compatibility-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .compatibility-matrix {
        grid-template-columns: repeat(3, 1fr);
    }
}

.compatibility-box {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.compatibility-box.compatible {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}

.compat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.compat-badge.badge-success {
    background-color: #25D366;
    color: #163172;
}

.compat-badge.badge-warning {
    background-color: #F59E0B;
    color: #163172;
}

.compat-badge.badge-error {
    background-color: #EF4444;
    color: var(--white);
}

.compat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.compat-desc {
    font-size: 0.8rem;
    color: #D6E4F0;
    line-height: 1.45;
}

/* ==========================================================================
   Live Sports & Competitions Schedule Cards
   ========================================================================== */

.section-live-sports {
    padding: 5.5rem 0;
    background-color: var(--background-soft);
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sport-card {
    background: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-fast);
}

.sport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.sport-card-top {
    background: linear-gradient(135deg, #163172 0%, #163172 100%);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.sport-league {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #D6E4F0;
}

.sport-live-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #EF4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.sport-card-body {
    padding: 1.5rem 1.25rem;
}

.sport-match-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.sport-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sport-channels-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.sport-channel-chip {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--background-soft);
    border: 1px solid rgba(30, 86, 160, 0.15);
    color: var(--primary-dark);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-xs);
}

/* ==========================================================================
   Live European CDN Infrastructure & Server Telemetry
   ========================================================================== */

.section-server-status {
    padding: 5rem 0;
    background: var(--white);
}

.servers-telemetry-card {
    background: linear-gradient(145deg, #163172 0%, #0E1F4B 100%);
    border: 1px solid rgba(214, 228, 240, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .servers-telemetry-card {
        padding: 3rem 2.5rem;
    }
}

.telemetry-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .telemetry-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.telemetry-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
}

.telemetry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .telemetry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .telemetry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.server-node-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.node-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #D6E4F0;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.node-stats {
    font-size: 0.78rem;
    color: #D6E4F0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ==========================================================================
   Interactive Device Step Selector
   ========================================================================== */

.section-device-selector {
    padding: 5.5rem 0;
    background-color: var(--background-soft);
}

.device-tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.device-tab-trigger {
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.12);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.device-tab-trigger:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.device-tab-trigger.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(30, 86, 160, 0.25);
}

.device-step-panel {
    display: none;
    background: var(--white);
    border: 1px solid rgba(30, 86, 160, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
}

.device-step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.device-steps-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.75rem;
}

@media (min-width: 768px) {
    .device-steps-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-step-box {
    background: var(--background-soft);
    border: 1px solid rgba(30, 86, 160, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
}

.guide-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.guide-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.guide-step-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Responsive Refinements & Touch Optimization (Mobile, Tablet, Desktop)
   ========================================================================== */

@media (max-width: 959px) {
    .section-hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-summary-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-hero {
        padding: 2.75rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .hero-text {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .hero-summary-card {
        padding: 1.25rem;
        gap: 1.15rem;
    }

    .hero-summary-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .section-features,
    .section-devices,
    .section-pricing,
    .section-how-it-works,
    .section-testimonials,
    .section-faq,
    .section-device-selector {
        padding: 3.5rem 0;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-card-featured {
        transform: none;
    }

    .amount-main {
        font-size: 2.35rem;
    }

    .feature-item {
        font-size: 0.88rem;
    }

    .comparison-table-wrapper {
        margin: 1.5rem 0 2.5rem;
        border-radius: var(--radius-md);
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 0.65rem;
        font-size: 0.84rem;
    }

    .comparison-table .th-feature,
    .comparison-table .td-feature {
        min-width: 140px;
        max-width: 165px;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        font-size: 0.82rem;
    }

    .comparison-table .th-plan {
        min-width: 110px;
        padding: 1rem 0.65rem;
    }

    .comparison-table .plan-th-name {
        font-size: 0.84rem;
    }

    .comparison-table .plan-th-price {
        font-size: 1.1rem;
    }

    .comparison-table .table-btn {
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
        min-height: 38px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Checkout Page Styles (Modern, High-Converting 2-Column Design)
   ========================================================================== */

.section-checkout {
    padding: 2.5rem 0 4.5rem;
    background-color: var(--background-light);
    min-height: 80vh;
}

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

.checkout-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 86, 160, 0.08);
    color: var(--primary);
    border: 1px solid rgba(30, 86, 160, 0.2);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.15rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.checkout-main-title {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: var(--primary-deep);
    margin: 0 0 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.checkout-main-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.55;
}

/* Steps progress line */
.checkout-steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.progress-step-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.progress-step-item.active {
    color: var(--primary-deep);
}

.progress-step-item.completed {
    color: var(--success);
}

.progress-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(30, 86, 160, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.progress-step-item.active .progress-step-num {
    background: var(--primary);
    color: var(--white);
}

.progress-step-item.completed .progress-step-num {
    background: var(--success);
    color: var(--white);
}

.progress-step-arrow {
    color: var(--border-color);
    font-size: 0.8rem;
}

/* 2-Column Grid Layout */
.checkout-grid-compact {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.checkout-white-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 20px rgba(22, 49, 114, 0.05), 0 0 0 1px var(--border-subtle);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.checkout-white-card.sticky-card {
    position: sticky;
    top: 90px;
}

/* Left Card / Form Details */
.checkout-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(214, 228, 240, 0.8);
}

.card-title-main {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin: 0 0 0.3rem;
}

.card-sub-main {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

.checkout-form-step {
    margin-bottom: 1.5rem;
}

.step-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.step-label-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.step-index-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
}

.badge-req {
    background: #FEE2E2;
    color: #DC2626;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.badge-rec {
    background: rgba(214, 228, 240, 0.5);
    color: var(--primary-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.badge-optional {
    background: #F1F5F9;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

/* Interactive Plan Selection Tiles */
.plan-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.plan-card-item {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem 0.95rem;
    background: #FFFFFF;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card-item:hover {
    border-color: var(--primary);
    background: #F9FBFE;
    transform: translateY(-1px);
}

.plan-card-item.selected {
    border-color: var(--primary);
    background: #F0F6FC;
    box-shadow: 0 0 0 2px rgba(30, 86, 160, 0.18);
}

.plan-card-item.featured-plan {
    border-color: rgba(30, 86, 160, 0.5);
}

.plan-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.plan-card-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.plan-card-tag {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tag-best-seller {
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: #FFFFFF;
}

.tag-duo {
    background: #E8F5E9;
    color: #1B5E20;
}

.plan-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-card-period {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-card-monthly {
    font-size: 0.74rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* Plan card spanning 2 columns for 2 years / Duo */
.plan-card-item.full-span {
    grid-column: span 2;
}

.compact-select {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    background-color: #FAFCFE;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23163172' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.compact-select:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.15);
}

.compact-input-wrapper {
    position: relative;
    width: 100%;
}

.compact-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0 1rem 0 2.65rem;
    font-size: 0.92rem;
    color: var(--text-main);
    background: #FAFCFE;
    transition: all var(--transition-fast);
    outline: none;
}

.compact-input::placeholder {
    color: var(--text-light);
}

.compact-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.15);
}

.step-help-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.4rem 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.4;
}

/* Payment Method Choices */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.payment-method-tile {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.85rem;
    background: #FAFCFE;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all var(--transition-fast);
}

.payment-method-tile:hover {
    border-color: var(--primary);
    background: #FFFFFF;
}

.payment-method-tile.selected {
    border-color: var(--primary);
    background: #F0F6FC;
    box-shadow: 0 0 0 2px rgba(30, 86, 160, 0.15);
}

.payment-tile-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(30, 86, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-tile-text {
    display: flex;
    flex-direction: column;
}

.payment-tile-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.payment-tile-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* CTA Button & Guarantees */
.btn-compact-checkout {
    width: 100%;
    min-height: 52px;
    background: linear-gradient(135deg, #1E56A0 0%, #163172 100%);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
    margin-top: 1.25rem;
    box-shadow: 0 6px 18px rgba(22, 49, 114, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
}

.btn-compact-checkout:hover {
    background: linear-gradient(135deg, #163172 0%, #0E204A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(22, 49, 114, 0.35);
    color: var(--white);
}

.btn-compact-checkout:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(22, 49, 114, 0.2);
}

.compact-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-wrap: wrap;
}

.trust-item-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.compact-support-link {
    text-align: center;
    margin-top: 0.75rem;
}

.compact-support-link a {
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.compact-support-link a:hover {
    color: var(--primary-deep);
    text-decoration: underline;
}

/* Right Card Styles / Summary */
.right-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.pill-offer-tag {
    background: rgba(30, 86, 160, 0.09);
    color: var(--primary-deep);
    font-size: 0.74rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pill-stock-tag {
    background: #E8F5E9;
    color: #1B5E20;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.stock-dot {
    font-size: 0.65rem;
    color: #1B5E20;
}

.card-title-right {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin: 0 0 1rem;
}

.plan-highlight-royal-box {
    background: linear-gradient(135deg, #163172 0%, #1E56A0 100%);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.45rem;
    color: var(--white);
    border: 1px solid rgba(214, 228, 240, 0.3);
    box-shadow: 0 10px 24px -4px rgba(22, 49, 114, 0.28);
}

.royal-plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.royal-plan-sub {
    font-size: 0.85rem;
    color: #D6E4F0;
    margin: 0.2rem 0 0.85rem;
}

.royal-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.royal-price-num {
    font-size: 2.15rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.royal-price-unit {
    font-size: 0.95rem;
    font-weight: 600;
    color: #D6E4F0;
}

.royal-monthly-pill {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.84rem;
    color: #D6E4F0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.royal-savings-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

.compact-inclusions-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.35rem 0 0.85rem;
}

.compact-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.compact-inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.45;
}

.chk-icon-green {
    color: var(--success);
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.compact-pricing-table {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.88rem;
}

.pricing-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
}

.pricing-row-val {
    font-weight: 700;
    color: var(--primary-deep);
}

.text-green-bold {
    color: var(--success) !important;
    font-weight: 700;
}

.compact-pricing-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.4rem 0;
}

.pricing-row-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    padding-top: 0.25rem;
}

.total-label-compact {
    font-size: 1.08rem;
    color: var(--primary-deep);
}

.total-amount-compact {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 900;
}

.compact-help-box {
    margin-top: 1.35rem;
    background: #F0F7FF;
    border: 1px solid rgba(30, 86, 160, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.95rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.compact-help-box:hover {
    border-color: var(--primary);
    background: #E5F1FC;
    transform: translateY(-1px);
}

.compact-help-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.compact-help-text strong {
    font-size: 0.88rem;
    color: var(--primary-deep);
    display: block;
    margin-bottom: 2px;
}

.compact-help-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 959px) {
    .checkout-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .checkout-white-card {
        padding: 1.75rem 1.35rem;
    }
    
    .checkout-main-title {
        font-size: 1.75rem;
    }
    
    .plan-picker-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card-item.full-span {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Thank You / Confirmation Page Styles
   ========================================================================== */

.section-thank-you {
    padding: 3rem 0 5rem;
    background: #F8FAFC;
}

.thank-you-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.success-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #2ED573 0%, #1FB75E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(46, 213, 115, 0.35);
}

.thank-you-badge {
    display: inline-block;
    background: rgba(46, 213, 115, 0.12);
    color: #108543;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(46, 213, 115, 0.3);
    margin-bottom: 0.75rem;
}

.thank-you-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin: 0 0 0.75rem;
}

.thank-you-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-ref-code {
    color: var(--primary);
    background: #D6E4F0;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-xs);
    font-size: 1.1rem;
}

/* Activation Timeline */
.activation-progress-box {
    background: #FAFCFE;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.progress-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0 0 1.25rem;
    text-align: center;
}

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

.progress-step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
}

.progress-step-item.is-done {
    border-color: #2ED573;
    background: #F2FDF6;
}

.progress-step-item.is-active {
    border-color: var(--primary);
    background: #F0F6FA;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.progress-step-item.is-done .step-circle {
    background: #2ED573;
    color: var(--white);
}

.progress-step-item.is-active .step-circle {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.step-pulsar {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

.step-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.step-label strong {
    font-size: 0.85rem;
    color: var(--secondary-dark);
}

.step-label span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Priority WhatsApp Box */
.priority-whatsapp-box {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(7, 94, 84, 0.25);
}

.priority-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-icon-bg {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.priority-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--white);
}

.priority-text {
    font-size: 0.85rem;
    color: #D1F2EB;
    margin: 0;
}

.btn-whatsapp-large {
    background: #25D366;
    color: #075E54;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #075E54;
}

/* Details Grid */
.thank-you-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.details-card {
    background: #FAFCFE;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.details-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border-light);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
}

.details-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    color: var(--secondary-dark);
}

.status-badge-active {
    background: rgba(46, 213, 115, 0.15);
    color: #108543;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

/* Steps instructions */
.steps-instructions-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.instruction-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.inst-num {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.instruction-row strong {
    font-size: 0.88rem;
    color: var(--secondary-dark);
    display: block;
    margin-bottom: 0.15rem;
}

.instruction-row p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* Guide Shortcuts */
.thank-you-guides-box {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

.guides-box-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0 0 0.85rem;
}

.guides-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.guide-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary-dark);
    text-decoration: none;
    transition: all var(--transition);
}

.guide-pill-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #F0F6FA;
}

.thank-you-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

/* Checkout & Thank You Responsive rules */
@media (max-width: 959px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .priority-whatsapp-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .priority-right {
        width: 100%;
    }

    .priority-right .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }

    .thank-you-details-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-plans-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-card {
        padding: 1.5rem 1.15rem;
    }

    .thank-you-title {
        font-size: 1.65rem;
    }

    .thank-you-footer-actions {
        flex-direction: column;
        width: 100%;
    }

    .thank-you-footer-actions .btn {
        width: 100%;
        justify-content: center;
    }
}



