/*
===============================================
AirPlayX Landing Page Styles
Professional design inspired by modern IPTV players
Brand Colors: Orange #D4AF87, Dark #2D3142, Teal #4ECDC4
Full-Width Layout - No Theme Constraints
===============================================
*/

/* ============================================
   REMOVE THEME CONSTRAINTS - FULL WIDTH
   ============================================ */
body.airplayx-landing-fullwidth {
    margin: 0 !important;
    padding: 0 !important;
}

.airplayx-landing-fullwidth .landing-page-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.airplayx-landing-fullwidth .landing-page-fullwidth > section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove parent theme header/footer (we have custom ones) */
.airplayx-landing-fullwidth #header-wrapper,
.airplayx-landing-fullwidth .site-header:not(.landing-header),
.airplayx-landing-fullwidth .site-footer:not(.landing-footer),
.airplayx-landing-fullwidth .breadcrumb {
    display: none !important;
}

/* Ensure body and html are full width */
html.airplayx-landing-fullwidth,
body.airplayx-landing-fullwidth {
    width: 100%;
    overflow-x: hidden;
}

/* Reset any parent theme containers */
.airplayx-landing-fullwidth .wrapper,
.airplayx-landing-fullwidth .inner-wrapper,
.airplayx-landing-fullwidth .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    /* Brand Colors - From AirPlayX Logo */
    --primary-gold: #F4B73F;              /* Bright Metallic Gold - main "AX" highlight */
    --primary-gold-light: #FFD67F;        /* Soft Gold Highlight - light reflection */
    --primary-purple: #A35AF3;            /* Vibrant Purple - main accent */
    --primary-purple-dark: #602B91;       /* Deep Violet Shadow - dark accent */
    
    /* Base Colors */
    --primary-dark: #2D3142;
    --primary-teal: #4ECDC4;
    --text-dark: #1a1d2e;
    --text-gray: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Shadow Colors with Brand */
    --shadow-gold: 0 4px 12px rgba(244, 183, 63, 0.3);
    --shadow-gold-lg: 0 8px 20px rgba(244, 183, 63, 0.4);
    --shadow-purple: 0 4px 12px rgba(163, 90, 243, 0.3);
}

/* ============================================
   GLOBAL LANDING PAGE STYLES
   ============================================ */
.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   CUSTOM HEADER - FULL WIDTH
   ============================================ */
.landing-header {
    background: rgba(45, 49, 66, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(45, 49, 66, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    border-radius: 8px;
}

/* Logo with gradient - optimized display */
.header-logo .custom-logo,
.header-logo .site-logo {
    max-height: 60px;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo with beautiful gold glow effect */
.header-logo .site-logo,
.header-logo img[src*="icon"],
.header-logo img[src*=".jpg"],
.header-logo img[src*="transparent"],
.header-logo img[src*=".png"] {
    filter: drop-shadow(0 2px 12px rgba(244, 183, 63, 0.3));
    transition: all 0.3s ease;
}

.header-logo .site-logo:hover,
.header-logo img[src*="icon"]:hover,
.header-logo img[src*=".jpg"]:hover,
.header-logo img[src*="transparent"]:hover,
.header-logo img[src*=".png"]:hover {
    filter: drop-shadow(0 4px 20px rgba(244, 183, 63, 0.6));
    transform: translateY(-2px) scale(1.02);
}

.logo-text-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text-gradient {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 8px rgba(244, 183, 63, 0.4));
    transition: all 0.3s ease;
}

.logo-text-gradient:hover {
    filter: drop-shadow(0 4px 16px rgba(244, 183, 63, 0.6));
    transform: translateY(-1px);
}

/* Old logo text style (backup) */
.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #D4AF87 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-gold);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.header-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.header-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.header-cta .btn-secondary i {
    margin-right: 6px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   CUSTOM FOOTER - FULL WIDTH
   ============================================ */
.landing-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1d2e 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0 0 16px 0;
    filter: drop-shadow(0 2px 8px rgba(244, 183, 63, 0.3));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 8px 0;
}

.footer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 183, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 183, 63, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--primary-dark);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1d2e 50%, var(--primary-purple-dark) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 700px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(244, 183, 63, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(163, 90, 243, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(96, 43, 145, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(249, 250, 251, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(78, 205, 196, 0.15);
    color: var(--primary-teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--primary-teal);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.feature-icon {
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 18px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* TV Frame */
.tv-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.tv-screen {
    background: linear-gradient(135deg, #1a1d2e 0%, #2D3142 100%);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.screen-content {
    background: #0f1117;
    border-radius: 8px;
    padding: 30px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Animated UI Elements */
.ui-element.top-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    border-radius: 4px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: auto;
}

.ui-card {
    background: linear-gradient(135deg, rgba(244, 183, 63, 0.1) 0%, rgba(163, 90, 243, 0.05) 100%);
    border: 1px solid rgba(244, 183, 63, 0.2);
    border-radius: 8px;
    height: 80px;
    animation: fade-in 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.ui-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    border-radius: 8px;
    opacity: 0.3;
}

.ui-card.active {
    background: linear-gradient(135deg, rgba(244, 183, 63, 0.2) 0%, rgba(163, 90, 243, 0.15) 100%);
    border-color: var(--primary-gold);
    animation: pulse-card 2s ease-in-out infinite;
}

.screen-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.airplayx-logo-text {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF87 0%, var(--primary-gold-light) 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 8px;
    animation: glow-text 3s ease-in-out infinite;
}

.screen-subtitle {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* TV Stand */
.tv-stand {
    width: 200px;
    height: 8px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-dark) 20%, var(--primary-dark) 80%, transparent 100%);
    margin: 20px auto 0;
    border-radius: 4px;
    position: relative;
}

.tv-stand::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 15px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 49, 66, 0.5) 50%, transparent 100%);
    border-radius: 0 0 8px 8px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px rgba(244, 183, 63, 0.3);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(244, 183, 63, 0.6);
    }
}

@keyframes pulse-card {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(244, 183, 63, 0);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(244, 183, 63, 0.3);
    }
}

@keyframes fade-in {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(244, 183, 63, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(244, 183, 63, 0.8));
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(244, 183, 63, 0.15) 0%, rgba(163, 90, 243, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(244, 183, 63, 0.1);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(244, 183, 63, 0.3);
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 0.5;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.step-card {
    position: relative;
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(244, 183, 63, 0.4);
    border: 3px solid white;
    animation: pulse-step 2s ease-in-out infinite;
}

@keyframes pulse-step {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(244, 183, 63, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(244, 183, 63, 0.6), 0 0 30px rgba(163, 90, 243, 0.3);
    }
}

.step-icon {
    margin: 24px auto 24px;
    color: var(--primary-teal);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof-strip {
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 100%);
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.proof-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
}

.proof-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.logo-chip {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .proof-divider { display: none; }
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-section {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-card figcaption {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 900px) {
    .screenshots-grid { grid-template-columns: 1fr; }
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Layout */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    gap: 48px;
    align-items: start;
    margin: 48px 0;
}

/* Benefits Section */
.pricing-benefits {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.pricing-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 24px 0;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

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

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 4px 0;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Main Pricing Card */
.pricing-card-wrapper {
    position: relative;
    z-index: 2;
}

.pricing-card {
    position: relative;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(244, 183, 63, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(244, 183, 63, 0.3);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 24px 0 16px;
}

.pricing-price {
    margin: 24px 0 32px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-gold);
}

.price-period {
    font-size: 20px;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid #F3F4F6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--primary-teal);
    stroke-width: 2.5;
}

.pricing-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Steps Section */
.pricing-steps {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.pricing-steps h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 24px 0;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #f8fafc;
    transform: translateX(-4px);
}

.pricing-steps .step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    position: static;
    transform: none;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 4px 0;
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Pricing Footer */
.pricing-footer {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.footer-item svg {
    color: var(--primary-teal);
}

.footer-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .trust-indicators {
        gap: 24px;
    }
    
    .pricing-footer {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pricing-footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   FAQ SECTION (WITH DISCLAIMER)
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-disclaimer-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start;
}

.disclaimer-column {
    position: sticky;
    top: 100px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(244, 183, 63, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    margin: 0;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   DISCLAIMER BOX (IN FAQ SIDEBAR)
   ============================================ */
.disclaimer-box-compact {
    background: #FFF9E6;
    border: 3px solid var(--primary-gold);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(244, 183, 63, 0.2);
    position: relative;
}

.disclaimer-box-compact::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
    border-radius: 16px;
    opacity: 0.1;
    z-index: -1;
    animation: pulse-glow-disclaimer 3s ease-in-out infinite;
}

@keyframes pulse-glow-disclaimer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.disclaimer-icon {
    font-size: 40px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
}

.disclaimer-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
}

.disclaimer-content {
    text-align: left;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.disclaimer-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.disclaimer-list li {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-left: 4px;
}

.disclaimer-note {
    font-size: 12px !important;
    color: var(--text-gray) !important;
    font-style: italic;
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 1px solid rgba(244, 183, 63, 0.3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-dark) 50%, var(--primary-purple-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(244, 183, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(163, 90, 243, 0.12) 0%, transparent 50%);
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .disclaimer-column {
        position: relative;
        top: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .tv-frame {
        max-width: 350px;
    }
    
    .screen-content {
        min-height: 250px;
        padding: 20px;
    }
    
    .airplayx-logo-text {
        font-size: 32px;
    }
    
    .ui-card {
        height: 60px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-section,
    .how-it-works-section,
    .pricing-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .faq-disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .disclaimer-column {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .disclaimer-box-compact {
        padding: 24px 20px;
    }
    
    .disclaimer-title {
        font-size: 18px;
    }
    
    .disclaimer-content p {
        font-size: 13px;
    }
    
    .disclaimer-list li {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ============================================
   HEADER & FOOTER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .header-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .header-nav.mobile-active {
        display: flex;
    }
    
    .header-nav a {
        padding: 16px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-nav a::after {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.btn:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* Hide elements but keep accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
