/* ============================================
    AURELO LANDING PAGE DESIGN SYSTEM
    ============================================ */

:root {
    /* Colors - Premium Teal/Violet Palette */
    --primary-500: #2dd4bf;
    --primary-400: #2dd4bf;
    --primary-600: #14b8a6;
    --accent-500: #8b5cf6;
    --accent-400: #c4b5fd;
    --accent-600: #a78bfa;
    
    /* Surface Colors - Dark */
    --surface-950: oklch(0.09 0.02 250);
    --surface-900: oklch(0.13 0.03 250);
    --surface-800: oklch(0.18 0.04 250);
    --surface-700: oklch(0.25 0.04 250);
    --surface-600: oklch(0.35 0.04 250);
    --surface-500: oklch(0.63 0.03 250);
    --surface-400: oklch(0.65 0.03 250);
    --surface-100: oklch(0.95 0.02 250);
    
    /* Typography */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Mesh Background Colors */
    --mesh-color-1: rgba(45, 212, 191, 0.08);
    --mesh-color-2: rgba(167, 139, 250, 0.08);
    --mesh-color-3: rgba(45, 212, 191, 0.05);
    --mesh-color-4: rgba(167, 139, 250, 0.05);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    /* Surface Colors - Light */
    --surface-950: oklch(0.98 0.01 250);
    --surface-900: oklch(0.95 0.01 250);
    --surface-800: oklch(0.92 0.02 250);
    --surface-700: oklch(0.85 0.02 250);
    --surface-600: oklch(0.70 0.03 250);
    --surface-500: oklch(0.50 0.03 250);
    --surface-400: oklch(0.40 0.03 250);
    --surface-100: oklch(0.15 0.02 250);
    
    /* Glass Morphism - Light */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    /* Mesh Background Colors - Light */
    --mesh-color-1: rgba(45, 212, 191, 0.12);
    --mesh-color-2: rgba(167, 139, 250, 0.12);
    --mesh-color-3: rgba(45, 212, 191, 0.08);
    --mesh-color-4: rgba(167, 139, 250, 0.08);
}

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

body {
    font-family: var(--font-display);
    background: var(--surface-950);
    color: var(--surface-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

/* ============================================
    UTILITY CLASSES
    ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-display);
    white-space: nowrap;
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    color: white !important;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.5);
    color: white !important;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--surface-100);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(12px);
}

.theme-toggle:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--surface-100);
    transition: transform var(--transition-base);
}

.theme-toggle:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* ============================================
    ANIMATIONS
    ============================================ */

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float-medium {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 25px) scale(1.05); }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes border-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-float-slow {
    animation: float-slow 20s ease-in-out infinite;
}

.animate-float-medium {
    animation: float-medium 15s ease-in-out infinite;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(24px);
}

.animate-fade-in-up.is-visible {
    animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero .animate-fade-in-up {
    animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.08s; }
.animate-delay-2 { animation-delay: 0.12s; }
.animate-delay-3 { animation-delay: 0.16s; }
.animate-delay-4 { animation-delay: 0.2s; }
.animate-delay-5 { animation-delay: 0.24s; }
.animate-delay-6 { animation-delay: 0.28s; }

.language-item.animate-fade-in-up {
    opacity: 1;
    transform: none;
    animation: none;
}

/* ============================================
    MESH BACKGROUND
    ============================================ */

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.mesh-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--mesh-color-1);
    top: -10%;
    left: -10%;
    animation: float-slow 20s ease-in-out infinite;
}

.mesh-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--mesh-color-2);
    top: 20%;
    right: -5%;
    animation: float-medium 15s ease-in-out infinite;
}

.mesh-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--mesh-color-3);
    bottom: 10%;
    left: 10%;
    animation: float-slow 18s ease-in-out infinite 1s;
}

.mesh-orb-4 {
    width: 450px;
    height: 450px;
    background: var(--mesh-color-4);
    bottom: -5%;
    right: 15%;
    animation: float-medium 16s ease-in-out infinite 2s;
}

/* Noise Overlay */
.bg-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ============================================
    HEADER / NAVIGATION
    ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--surface-100);
}

.logo-icon {
    height: 50px;
    width: auto;
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

[data-theme="light"] .logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--surface-400);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-500);
}

.nav-links .nav-login,
.mobile-nav-links .nav-login {
    color: var(--primary-500);
    white-space: nowrap;
}

.nav-links .nav-login:hover,
.mobile-nav-links .nav-login:hover {
    color: var(--primary-500);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.mobile-menu-toggle svg {
    stroke: #000 !important;
}

.mobile-only {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--surface-900);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem;
    z-index: 99;
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--surface-100);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
}

.mobile-nav-links .theme-toggle {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-only {
        display: none;
    }

    .mobile-nav-links .btn {
        margin-top: 0 !important;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .btn {
        white-space: normal;
    }

    .hero-title,
    .section-title,
    .pricing-price {
        overflow-wrap: anywhere;
    }
}

/* ============================================
    HERO SECTION
    ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 8rem 4rem;
    overflow: hidden;
}

@media (max-width: 1450px) {
    .hero {
        padding: 120px 4rem 3rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    text-align: left;
}

.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
    top: 50px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(45, 212, 191, 0.2);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 1rem;
    backdrop-filter: blur(12px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-primary {
    position: relative;
    z-index: 2;
    transform: translateZ(0) scale(1);
}

.hero-image-secondary {
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 1;
    transform: translateZ(-50px) scale(0.88);
    opacity: 0.85;
    filter: blur(2px);
}

.hero-image-container:hover .hero-image-primary {
    transform: translateZ(-50px) scale(0.92) rotate(-2deg);
    opacity: 0.6;
    filter: blur(3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image-container:hover .hero-image-secondary {
    transform: translateZ(60px) scale(1.20) rotate(1deg);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 140px rgba(45, 212, 191, 0.35);
}

.hero-image-dark {
    display: block !important;
}

.hero-image-light {
    display: none !important;
}

[data-theme="light"] .hero-image-dark {
    display: none !important;
}

[data-theme="light"] .hero-image-light {
    display: block !important;
}

.desktop-screen img.hero-image-light,
.phone-screen img.hero-image-light {
    display: none !important;
}

[data-theme="light"] .desktop-screen img.hero-image-light,
[data-theme="light"] .phone-screen img.hero-image-light {
    display: block !important;
}

[data-theme="light"] .desktop-screen img.hero-image-dark,
[data-theme="light"] .phone-screen img.hero-image-dark {
    display: none !important;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Animated floating elements */
.hero-float-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.float-qr {
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    animation: float-slow 8s ease-in-out infinite;
}

.float-wave {
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation: float-medium 6s ease-in-out infinite;
}

.float-globe {
    top: 40%;
    left: -5%;
    width: 120px;
    height: 120px;
    animation: float-slow 10s ease-in-out infinite 1s;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 2rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-top: 5rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-container {
        max-width: 500px;
        
    }

    .hero-float-element {
        display: none;
    }
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--surface-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 100%;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--surface-100);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    margin-bottom: 1rem;
    backdrop-filter: blur(12px);
}

.hero-proof strong {
    font-weight: 800;
}

.hero-proof-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.18);
    color: var(--primary-500);
}

.hero-proof-icon svg {
    width: 15px;
    height: 15px;
}

[data-theme="light"] .hero-proof {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-proof-icon {
    background: #ccfbf1;
    color: #0f766e;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: var(--surface-300);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge-icon {
    color: var(--primary-500);
    font-size: 1.75rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 2.5rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .hero-cta {
        justify-content: center;
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .hero-cta .btn,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    .hero {
        padding: 100px 1.5rem 3rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* ============================================
    TESTIMONIALS SECTION
    ============================================ */

.testimonials-section {
    background: linear-gradient(180deg, 
        var(--surface-950) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        var(--surface-950) 100%
    );
}

.testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

#testimonials {
    scroll-margin-top: 100px;
}

.testimonial-card.testimonial-card-featured {
    background: linear-gradient(135deg, var(--glass-bg), rgba(45, 212, 191, 0.06));
    border-color: rgba(45, 212, 191, 0.24);
}

.testimonial-card-featured .testimonial-text {
    max-width: 780px;
}

.testimonials-grid .testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonials-grid .testimonial-author {
    margin-top: auto;
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        gap: 1.25rem;
    }

    .testimonials-grid .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-grid .testimonial-text {
        margin: 1.5rem 0;
        font-size: 1rem;
        line-height: 1.7;
    }
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    position: relative;
}

.quote-icon {
    color: var(--primary-500);
    opacity: 0.3;
    font-size: 3rem;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--surface-300);
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-500);
}

.author-info h4,
.author-info .author-name {
    color: var(--surface-100);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--surface-400);
    font-size: 0.9rem;
}

/* ============================================
    LANGUAGES SHOWCASE
    ============================================ */

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.language-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    will-change: border-color, background-color;
}

.language-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary-500);
}

.language-flag {
    font-size: 1.5rem;
    line-height: 1;
}

.language-name {
    font-weight: 500;
    color: var(--surface-100);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

/* ============================================
    MODES COMPARISON
    ============================================ */

.modes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mode-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow);
    border-color: var(--primary-500);
}

.mode-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mode-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-500);
}

.mode-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--surface-100);
}

.mode-card p {
    color: var(--surface-400);
    line-height: 1.8;
    font-size: 1.05rem;
}

.mode-image {
    width: 100%;
    border-radius: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
    WHY CHOOSE SECTION
    ============================================ */

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 3rem;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow);
}

.why-card:nth-child(2) {
    direction: rtl;
}

.why-card:nth-child(2) .why-content {
    direction: ltr;
    text-align: left;
    padding-left: 2rem;
}

.why-card:nth-child(2) .why-icon-wrapper {
    direction: ltr;
}

.why-content {
    padding: 0;
}

.why-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(45, 212, 191, 0.15);
}

.why-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary-500);
    filter: drop-shadow(0 2px 8px rgba(45, 212, 191, 0.3));
}

.why-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--surface-100);
    font-weight: 700;
}

.why-content p {
    color: var(--surface-400);
    line-height: 1.8;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .why-choose-grid {
        gap: 2rem;
    }

    .why-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .why-card:nth-child(2) {
        direction: ltr;
    }

    .why-icon {
        width: 80px;
        height: 80px;
    }

    .why-icon svg {
        width: 48px;
        height: 48px;
    }

    .why-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
    SECTION STYLES
    ============================================ */

section {
    position: relative;
    z-index: 10;
    padding: 5rem 2rem;
}

@supports (content-visibility: auto) {
    section:not(.hero) {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}

#network-streaming {
    padding-bottom: 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--surface-400);
    line-height: 1.6;
}

/* ============================================
    VIDEO OVERVIEW
    ============================================ */

.video-overview-section {
    padding-top: 3rem;
    scroll-margin-top: 6rem;
}

.video-overview-header {
    margin-bottom: 3rem;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary-500);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.video-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    background: var(--surface-900);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 70px rgba(45, 212, 191, 0.12);
}

.video-embed iframe,
.video-placeholder,
.video-placeholder picture,
.video-placeholder img {
    width: 100%;
    height: 100%;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
}

.video-placeholder {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #09111c;
    color: white;
    cursor: pointer;
    font: inherit;
    opacity: 1;
    visibility: visible;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.video-placeholder.is-playing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 8, 17, 0.72) 100%);
    transition: background var(--transition-base);
}

.video-placeholder picture {
    display: block;
}

.video-placeholder img {
    display: block;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.video-placeholder:hover img {
    transform: scale(1.025);
    filter: brightness(0.88);
}

.video-placeholder:focus-visible {
    outline: 3px solid var(--primary-500);
    outline-offset: -4px;
}

.video-play-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-placeholder:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 16px 45px rgba(45, 212, 191, 0.35);
}

.video-play-icon svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
    fill: currentColor;
}

.video-play-label {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.25rem;
    left: 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.video-noscript {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 3;
    text-align: center;
}

.video-noscript a {
    color: white;
}

.video-overview-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.video-overview-copy > p {
    color: var(--surface-400);
    font-size: 1.08rem;
    line-height: 1.75;
}

.video-overview-copy .video-overview-lead {
    color: var(--surface-100);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.55;
}

.video-proof-list {
    width: 100%;
    display: grid;
    gap: 0.8rem;
    list-style: none;
}

.video-proof-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--surface-100);
    font-weight: 650;
}

.video-proof-list svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--primary-500);
}

.video-overview-copy .video-overview-note {
    padding: 1rem 1.1rem;
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary-500);
    border-radius: 0 0.8rem 0.8rem 0;
    background: var(--glass-bg);
    font-size: 0.96rem;
}

.video-overview-note strong {
    color: var(--surface-100);
}

/* ============================================
    FEATURE CARDS (GLASS MORPHISM)
    ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow), 0 0 40px rgba(45, 212, 191, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(45, 212, 191, 0.5));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.15) rotate(-8deg); }
}

.feature-icon svg {
    color: var(--primary-500) !important;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(45, 212, 191, 0.3));
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--surface-100);
}

.feature-card p {
    color: var(--surface-400);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .feature-icon {
        margin: 0 auto 1.5rem;
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 70px !important;
        height: 70px !important;
    }
}

/* ============================================
    HOW IT WORKS SECTION
    ============================================ */

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-mono);
    position: relative;
    color: white;
}

.step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-500), transparent);
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--surface-400);
    font-size: 1.125rem;
    line-height: 1.7;
}

.emphasis-text {
    display: inline-block;
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--surface-100);
    position: relative;
    box-shadow: 0 8px 32px rgba(45, 212, 191, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    line-height: 1.7;
}

.emphasis-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
}

.emphasis-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================
    PRICING SECTION
    ============================================ */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 3rem;
    max-width: 400px;
}

.pricing-toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--surface-400);
    transition: all var(--transition-base);
}

.pricing-toggle-label.active {
    color: var(--primary-500);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    border-radius: 50%;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(45, 212, 191, 0.5);
}

.toggle-switch.monthly::before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.popular {
    border-color: var(--primary-500);
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.2);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.05);
}

.enterprise-card {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(45, 212, 191, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid var(--primary-500);
}

.enterprise-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.4);
    white-space: nowrap;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.enterprise-left,
.enterprise-right {
    min-width: 0;
}

.enterprise-left h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.enterprise-left .pricing-price {
    font-size: 3rem;
}

.enterprise-description {
    color: var(--surface-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.enterprise-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enterprise-right .btn {
    width: fit-content;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    white-space: normal;
}

.enterprise-card {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(45, 212, 191, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid var(--primary-500);
}

.enterprise-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.4);
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.enterprise-left,
.enterprise-right {
    min-width: 0;
}

.enterprise-left h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.enterprise-left .pricing-price {
    font-size: 3rem;
}

.enterprise-description {
    color: var(--surface-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.enterprise-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enterprise-right .btn {
    width: fit-content;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    white-space: normal;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-duration {
    color: var(--surface-400);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--surface-400);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-500);
    font-weight: 700;
    font-size: 1.25rem;
    flex: 0 0 auto;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    color: var(--surface-400);
    font-size: 1.05rem;
}

.pricing-note strong {
    color: var(--primary-500);
}

@media (max-width: 1200px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        overflow: visible;
    }
    .pricing-card.popular {
        margin-top: 1rem;
        transform: scale(1);
    }
    .pricing-card .btn {
        white-space: normal;
    }
    .enterprise-card {
        max-width: 100%;
    }
    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .enterprise-left .pricing-price {
        font-size: clamp(2.25rem, 11vw, 3rem);
        overflow-wrap: anywhere;
    }
    .enterprise-right {
        align-items: stretch;
    }
    .enterprise-right .btn {
        width: 100%;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
    COMPARISON SECTION
    ============================================ */

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.comparison-table::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.25rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.comparison-table:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.15);
}

.comparison-table:hover::before {
    opacity: 1;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--surface-100);
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(45, 212, 191, 0.05);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--surface-300);
}

.comparison-table td:nth-child(2) {
    color: var(--surface-500);
}

.comparison-table td:nth-child(3) {
    color: var(--primary-500);
    font-weight: 600;
}

.comparison-tagline {
    display: inline-block;
    margin-top: 2rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--surface-100);
    position: relative;
    box-shadow: 0 8px 32px rgba(45, 212, 191, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    line-height: 1.7;
}

.comparison-tagline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
}

.comparison-tagline:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================
    PRODUCT SHOWCASE SECTION
    ============================================ */

.product-showcase-section {
    background: linear-gradient(180deg, 
        var(--surface-950) 0%, 
        rgba(20, 184, 166, 0.03) 50%, 
        var(--surface-950) 100%
    );
    position: relative;
    overflow: hidden;
}

.product-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(45, 212, 191, 0.08) 0%, 
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-hero {
    grid-column: 1 / 13;
    margin-bottom: 1rem;
}

.showcase-secondary {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.showcase-triple {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.screenshot-container {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, 
        rgba(45, 212, 191, 0.3) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(40px);
    z-index: 1;
}

.showcase-item:hover .screenshot-container {
    transform: translateY(-12px);
    border-color: rgba(45, 212, 191, 0.5);
    box-shadow: 0 20px 80px rgba(45, 212, 191, 0.2);
}

.showcase-item:hover .screenshot-img {
    transform: scale(1.02);
}

.showcase-item:hover .screenshot-glow {
    opacity: 1;
}

.showcase-caption {
    padding: 1.5rem;
    text-align: center;
}

.showcase-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-caption p {
    color: var(--surface-400);
    font-size: 1.05rem;
    line-height: 1.6;
}

.showcase-hero .screenshot-container {
    padding: 2rem;
}

.showcase-hero .showcase-caption h3 {
    font-size: 2rem;
}

.showcase-hero .showcase-caption p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-medium .screenshot-container {
    padding: 1.25rem;
}

.showcase-small .screenshot-container {
    padding: 1rem;
}

.showcase-small .showcase-caption h3 {
    font-size: 1.25rem;
}

.showcase-small .showcase-caption p {
    font-size: 0.95rem;
}

/* Staggered hover effects for grid items */
.showcase-triple .showcase-item:nth-child(1):hover {
    transform: rotate(-1deg);
}

.showcase-triple .showcase-item:nth-child(2):hover {
    transform: scale(1.05);
}

.showcase-triple .showcase-item:nth-child(3):hover {
    transform: rotate(1deg);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .showcase-secondary {
        grid-template-columns: 1fr;
    }

    .showcase-triple {
        grid-template-columns: 1fr;
    }

    .modes-container {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .languages-grid {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .languages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }

    .language-flag {
        font-size: 1.1rem;
    }

    .language-name {
        font-size: 0.7rem;
    }

    .language-item {
        padding: 0.4rem 0.5rem;
    }

    .enterprise-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
        max-width: calc(100% - 2rem);
    }

    .pricing-card.popular::before {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        gap: 1.5rem;
    }

    .screenshot-container {
        padding: 1rem;
    }

    .showcase-hero .screenshot-container {
        padding: 1.25rem;
    }

    .showcase-caption {
        padding: 1rem;
    }

    .showcase-caption h3 {
        font-size: 1.25rem;
    }

    .showcase-caption p {
        font-size: 0.95rem;
    }

    .showcase-hero .showcase-caption h3 {
        font-size: 1.5rem;
    }

    .showcase-hero .showcase-caption p {
        font-size: 1rem;
    }
}

/* ============================================
    FAQ SECTION
    ============================================ */

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    overflow: hidden;
}

.faq-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--surface-100);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-500);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    color: var(--surface-400);
    line-height: 1.7;
    font-size: 1.05rem;
    padding: 0 2rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

/* ============================================
    DOWNLOAD / CTA SECTION
    ============================================ */

.download-section {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.05) 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.platform-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow);
    border-color: var(--primary-500);
}

.platform-icon {
    font-size: 4rem;
}

.platform-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--surface-400);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.system-requirements {
    max-width: 500px;
    margin: 2rem auto;
    padding: 0;
    background: transparent;
    border: none;
    text-align: center;
}

.system-requirements h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--surface-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.system-requirements ul {
    list-style: none;
    color: var(--surface-400);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.system-requirements li {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.system-requirements li::before {
    content: '•';
    color: var(--primary-500);
    font-size: 1rem;
}

/* ============================================
    FOOTER
    ============================================ */

footer {
    position: relative;
    z-index: 10;
    background: var(--surface-900);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--surface-400);
    line-height: 1.7;
}

.footer-section h3,
.footer-section h4,
.footer-section .footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--surface-100);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--surface-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--surface-500);
    font-size: 0.95rem;
}

/* ============================================
    STATS BAR
    ============================================ */

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
    margin: 4rem 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--surface-400);
    font-size: 1.05rem;
}

/* ============================================
    NETWORK & SUBTITLE FEATURE SECTIONS
    ============================================ */

.feature-spotlight-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.feature-spotlight-section + .feature-spotlight-section {
    padding-top: 2rem;
}

.feature-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-spotlight-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-spotlight-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--surface-100);
}

.feature-spotlight-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--surface-400);
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.feature-benefit-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.feature-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
}

.feature-benefit-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--surface-100);
}

.feature-benefit-text p {
    font-size: 1rem;
    color: var(--surface-400);
    line-height: 1.6;
}

.feature-spotlight-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-device-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.device-screen {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(45, 212, 191, 0.25);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-screen:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 120px rgba(45, 212, 191, 0.35);
}

.device-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.qr-floating-element {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(45, 212, 191, 0.2);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.qr-floating-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.dual-device-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    min-height: 600px;
}

.stacked-device-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.desktop-qr-screen {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.centered-phone {
    margin-top: 2rem;
}

.phone-mockup {
    position: relative;
    width: 280px;
    perspective: 1500px;
    z-index: 2;
}

.phone-mockup:nth-child(2) {
    z-index: 1;
}

.phone-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(145deg, 
        rgba(30, 30, 35, 0.95) 0%, 
        rgba(20, 20, 25, 0.98) 100%);
    border-radius: 40px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .phone-frame {
    background: linear-gradient(145deg, 
        rgba(245, 245, 250, 0.95) 0%, 
        rgba(235, 235, 240, 0.98) 100%);
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.phone-mockup:hover .phone-frame {
    transform: translateY(-20px) rotateY(5deg) rotateX(-5deg) scale(1.05);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(45, 212, 191, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0 0 20px 20px;
    z-index: 3;
    box-shadow: inset 0 -2px 3px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .phone-notch {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.05);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .phone-screen {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.phone-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-reflection {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 90%;
    height: 120px;
    opacity: 0.15;
    filter: blur(10px);
    background: linear-gradient(to bottom, 
        rgba(45, 212, 191, 0.3) 0%,
        transparent 70%);
    border-radius: 40px;
    pointer-events: none;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(45, 212, 191, 0.25) 0%,
        rgba(139, 92, 246, 0.15) 50%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.feature-spotlight-section.reverse .feature-spotlight-grid {
    grid-template-columns: 1fr 1fr;
}

.feature-spotlight-section.reverse .feature-spotlight-content {
    order: 2;
}

.feature-spotlight-section.reverse .feature-spotlight-visual {
    order: 1;
}

.subtitles-background-section {
    position: relative;
    background-image: url('assets/church-live-captions-screen.webp');
    background-size: 50% auto;
    background-position: left center;
    background-repeat: no-repeat;
}

[data-theme="light"] .subtitles-background-section {
    background-image: url('assets/church-live-captions-screen.webp');
    background-size: 50% auto;
    background-position: left center;
    background-repeat: no-repeat;
}

.subtitles-background-section .feature-spotlight-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.subtitles-background-section .feature-spotlight-content {
    padding: 3rem;
    max-width: 45%;
    background: transparent;
}

@media (max-width: 768px) {
    .subtitles-background-section .feature-spotlight-content {
        max-width: 100%;
    }
}

.desktop-mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.desktop-screen {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(45, 212, 191, 0.2);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 1rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-screen:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 120px rgba(45, 212, 191, 0.3);
}

.desktop-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* ============================================
    COOKIE BANNER
    ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: min(520px, calc(100% - 2rem));
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    z-index: 50;
    padding: 1.25rem;
    color: var(--surface-100);
    animation: fade-in-up 0.35s ease;
}

.cookie-banner-hide {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.cookie-banner-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
    justify-items: end;
}

.cookie-banner-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--surface-100);
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: var(--surface-400);
    margin-bottom: 0.35rem;
}

.cookie-banner-text a {
    color: var(--primary-500);
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner-text {
    text-align: right;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 1rem;
    }
    
    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: normal;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .cookie-banner .btn {
        flex: 0 0 calc(50% - 0.375rem);
    }
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .animate-fade-in-up {
        opacity: 1;
        transform: none;
    }

    .bg-mesh,
    .hero-image-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    .bg-mesh,
    .hero-image-glow {
        display: none;
    }

    .hero-float-element,
    .mesh-orb,
    .feature-icon,
    .feature-icon svg {
        animation: none;
    }

    header,
    .btn-secondary,
    .theme-toggle,
    .hero-image,
    .why-card,
    .feature-card,
    .feature-benefit-item,
    .pricing-card,
    .testimonial-card,
    .faq-item,
    .platform-card,
    .system-requirements,
    .cookie-banner {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-image,
    .hero-image-container:hover .hero-image-primary,
    .hero-image-container:hover .hero-image-secondary {
        filter: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }

    .btn-primary,
    .feature-card:hover,
    .platform-card:hover,
    .why-card:hover {
        box-shadow: none;
    }

    section {
        padding: 4rem 0rem;
    }

    .video-overview-section {
        padding-top: 2.5rem;
        scroll-margin-top: 6.5rem;
    }

    .video-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-embed {
        border-radius: 1rem;
    }

    .video-overview-copy {
        align-items: stretch;
    }

    .video-overview-copy .btn {
        width: 100%;
    }

    .video-play-icon {
        width: 64px;
        height: 64px;
    }

    .video-play-icon svg {
        width: 28px;
        height: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .enterprise-right {
        align-items: stretch;
    }

    .enterprise-right .btn {
        width: 100%;
    }

    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .enterprise-right .btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step:not(:last-child) .step-number::after {
        display: none;
    }

    .stats-bar {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-spotlight-section {
        padding: 2rem 1.5rem;
    }

    .feature-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-spotlight-section.reverse .feature-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .feature-spotlight-section.reverse .feature-spotlight-content,
    .feature-spotlight-section.reverse .feature-spotlight-visual {
        order: unset;
    }

    .feature-spotlight-content h2 {
        font-size: 2rem;
    }

    .feature-benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-benefit-icon {
        width: 70px;
        height: 70px;
    }

    .feature-benefit-icon svg {
        width: 70px !important;
        height: 70px !important;
    }

    .feature-benefit-text {
        text-align: left;
    }

    #how-it-works {
        padding-top: 0;
    }

    .download-section {
        padding: 8rem 0;
    }

    .qr-floating-element {
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
    }

    .dual-device-showcase {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .stacked-device-showcase {
        gap: 2rem;
    }

    .desktop-qr-screen {
        max-width: 100%;
    }

    .phone-mockup {
        width: 240px;
    }

    .phone-screen {
        height: 480px;
    }

    .cookie-banner-text {
        text-align: left;
    }

    .compare-section .container {
        padding: 0rem;
    }

    .compare-section .container > *:not(.comparison-table) {
        padding: 0 1.5rem;
    }

    .compare-section .comparison-table {
        box-shadow: none;
        border-radius: 0;
    }

    #download {
        padding-top: 0;
    }

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