/* ==========================================================================
   HeatUp Delivery - Nebula Theme Styles
   Version: 3.2 - Mobile Hero + Overflow Fixes + Better Buttons
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* Brand Colors */
    --heatup-orange: #FF6B35;
    --heatup-orange-dark: #E85A2A;
    --heatup-orange-light: #FF9F6B;
    --heatup-orange-glow: rgba(255, 107, 53, 0.25);

    /* Accent Colors - Softer for light theme */
    --nebula-purple: #A855F7;
    --nebula-purple-glow: rgba(168, 85, 247, 0.15);
    --nebula-cyan: #22D3EE;
    --nebula-cyan-glow: rgba(34, 211, 238, 0.15);
    --nebula-pink: #F472B6;
    --nebula-pink-glow: rgba(244, 114, 182, 0.15);
    --nebula-warm: rgba(255, 107, 53, 0.08);

    /* Light Theme */
    --dark-bg: #FFFFFF;
    --dark-bg-alt: #FAFAFA;
    --dark-surface: #F5F5F7;
    --dark-surface-elevated: #FFFFFF;
    --dark-border: rgba(0, 0, 0, 0.08);
    --dark-border-hover: rgba(0, 0, 0, 0.15);

    /* Glass Effect - Light */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-hover: rgba(0, 0, 0, 0.15);
    --glass-blur: 24px;

    /* Text - Dark on Light */
    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-muted: #737373;
    --text-dim: #a3a3a3;

    /* Status Colors */
    --status-blue: #3B82F6;
    --status-red: #EF4444;
    --status-green: #22C55E;
    --status-yellow: #FBBF24;

    /* Spacing */
    --section-padding-y: clamp(4rem, 10vw, 8rem);
    --section-padding-x: clamp(1rem, 5vw, 2rem);

    /* Animation */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   2. Base Styles & Reset
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 44px; /* Space for announcement bar */
    overflow-x: clip; /* clip doesn't break sticky, hidden does */
}

.font-display {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   3. Animated Background (Nebula Orbs) - Lighter & Warmer
   ========================================================================== */
.nebula-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.nebula-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.nebula-orb--orange {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    top: -15%;
    right: -15%;
    animation-delay: 0s;
}

.nebula-orb--purple {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    bottom: 5%;
    left: -10%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.nebula-orb--cyan {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    top: 35%;
    right: 15%;
    animation-delay: -14s;
    animation-duration: 30s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -30px) scale(1.08);
    }
    50% {
        transform: translate(-30px, 40px) scale(0.92);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.05);
    }
}

/* Noise Texture Overlay - Very subtle for light theme */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.015;
    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)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   4. Navbar / Header Styles
   ========================================================================== */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.navbar-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.navbar-logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.navbar-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-logo-text span {
    font-weight: 400;
    color: var(--heatup-orange);
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .navbar-nav { display: flex; }
}

.navbar-link {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

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

.navbar-btn-secondary {
    display: none;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .navbar-btn-secondary { display: inline-flex; }
}

.navbar-btn-secondary:hover {
    color: var(--text-primary);
}

.navbar-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

/* Hide on very small screens, show only hamburger */
@media (max-width: 400px) {
    .navbar-btn-primary {
        display: none;
    }
}

@media (min-width: 401px) and (max-width: 768px) {
    .navbar-btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .navbar-btn-primary svg {
        display: none;
    }
}

.navbar-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5);
}

.navbar-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

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

.navbar-mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

.navbar-mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: none;
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-menu-button:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--dark-border-hover);
}

.user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--heatup-orange), var(--heatup-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 220px;
    background: var(--dark-surface-elevated);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.user-menu-header {
    padding: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.user-menu-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.user-menu-email {
    color: var(--text-muted);
    font-size: 0.8125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-links {
    padding: 0.5rem;
}

.user-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.user-menu-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.user-menu-link svg {
    width: 18px;
    height: 18px;
}

.user-menu-link.logout {
    color: var(--status-red);
}

.user-menu-link.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    z-index: 80;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.mobile-menu-link:hover {
    background: var(--dark-surface);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 1rem 0;
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-btn-primary {
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn-secondary {
    background: var(--dark-surface);
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
}

/* ==========================================================================
   5. Announcement Bar
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    overflow: hidden;
    max-width: 100%;
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.625rem 0.75rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 0.5rem;
    transition: opacity var(--transition-fast);
}

.announcement-bar a:hover {
    opacity: 0.9;
}

.announcement-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ==========================================================================
   6. Hero Section - Cinematic Scroll (Desktop Only)
   ========================================================================== */
.hero-wrapper {
    height: 400vh;
    position: relative;
}

/* Hide scroll hero on mobile - show mobile hero instead */
@media (max-width: 768px) {
    .hero-wrapper {
        display: none;
    }
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 140px; /* Space for announcement bar + navbar + breathing room */
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
}

@media (max-width: 768px) {
    .hero-sticky {
        padding-top: 130px;
    }
}

/* Subtle dot pattern for light theme */
.hero-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(0,0,0,0.04), transparent),
        radial-gradient(1px 1px at 30% 65%, rgba(0,0,0,0.03), transparent),
        radial-gradient(1.5px 1.5px at 50% 40%, rgba(0,0,0,0.04), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(0,0,0,0.02), transparent),
        radial-gradient(1px 1px at 90% 30%, rgba(0,0,0,0.03), transparent);
    background-size: 300px 300px;
    animation: stars 150s linear infinite;
    pointer-events: none;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-1500px); }
}

/* Hero Text Layer */
.hero-text-layer {
    position: relative;
    z-index: 30;
    text-align: center;
    padding: 0 1.5rem;
    will-change: transform, opacity, filter;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }
}

.hero-title .highlight,
.text-gradient-orange {
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-light) 50%, var(--heatup-orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Product Layer */
.product-layer {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .product-layer {
        position: absolute;
        bottom: 10%;
        max-width: 85%;
    }
}

/* Final CTA Container */
.final-cta-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    pointer-events: auto;
    will-change: opacity, transform;
}

@media (max-width: 640px) {
    .final-cta-container {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Large CTA Buttons */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 40px var(--heatup-orange-glow),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    animation: btn-glow-strong 2s ease-in-out infinite;
}

@keyframes btn-glow-strong {
    0%, 100% {
        box-shadow:
            0 0 30px var(--heatup-orange-glow),
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        box-shadow:
            0 0 60px var(--heatup-orange-glow),
            0 0 80px rgba(255, 107, 53, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 60px var(--heatup-orange-glow),
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary-large:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   7. Product Stage & 360 Viewer
   ========================================================================== */
.product-stage {
    width: 100%;
    aspect-ratio: 1.5;
    position: relative;
}

.sprite-viewer {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 600% 600%;
}

/* Product aura glow effect */
.product-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: aura-pulse 4s ease-in-out infinite;
}

@keyframes aura-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.mouse-wheel {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--heatup-orange), transparent);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
        bottom: 1.5rem;
    }
}

/* ==========================================================================
   6b. Mobile Hero Section - Auto-rotate with Touch Pause
   ========================================================================== */
.mobile-hero {
    display: none;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    padding: 120px var(--section-padding-x) 2rem;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
}

@media (max-width: 768px) {
    .mobile-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

.mobile-hero-text {
    text-align: center;
    margin-bottom: 0.5rem;
    z-index: 10;
}

.mobile-hero-label {
    color: var(--heatup-orange);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.mobile-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

@media (min-width: 400px) {
    .mobile-hero-title {
        font-size: 2.25rem;
    }
}

.mobile-hero-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile Product Viewer */
.mobile-product-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    touch-action: manipulation;
    flex-shrink: 0;
}

.mobile-product-stage {
    width: 100%;
    aspect-ratio: 1.5;
    position: relative;
}

.mobile-sprite-viewer {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 600% 600%;
    transition: transform 0.1s ease-out;
}

.mobile-product-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: aura-pulse 4s ease-in-out infinite;
}

/* Touch indicator */
.mobile-touch-indicator {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mobile-touch-indicator svg {
    flex-shrink: 0;
}

.mobile-touch-indicator.paused {
    color: var(--heatup-orange);
    opacity: 1;
}

/* Pause overlay effect */
.mobile-product-container.paused .mobile-sprite-viewer {
    transform: scale(1.02);
}

/* Mobile CTA Buttons - Below device */
.mobile-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    margin: 1.5rem auto 0;
    z-index: 10;
}

.mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(255, 107, 53, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-btn-primary:active {
    transform: scale(0.97);
    box-shadow:
        0 4px 16px rgba(255, 107, 53, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.mobile-btn-primary:active::before {
    opacity: 1;
}

.mobile-btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.mobile-btn-secondary:active {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.15);
    transform: scale(0.98);
}

/* ==========================================================================
   8. CTA Buttons
   ========================================================================== */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
    margin-top: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow:
        0 0 30px var(--heatup-orange-glow),
        inset 0 1px 0 rgba(255,255,255,0.2);
    animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow:
            0 0 20px var(--heatup-orange-glow),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        box-shadow:
            0 0 40px var(--heatup-orange-glow),
            0 0 60px rgba(255, 107, 53, 0.2),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 40px var(--heatup-orange-glow),
        0 0 60px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   9. Stats Section
   ========================================================================== */
.stats-section {
    background: var(--dark-surface);
    padding: var(--section-padding-y) var(--section-padding-x);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

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

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-value.orange {
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   10. Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--heatup-orange);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==========================================================================
   11. How It Works Section
   ========================================================================== */
.how-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   12. Glass Cards with Warm Glow Hover Effect
   ========================================================================== */
.glass-card,
.step-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Gradient border effect */
.glass-card::before,
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,0,0,0.05), transparent 50%, rgba(0,0,0,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Warm dot/glow effect on hover */
.glass-card::after,
.step-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 159, 107, 0.08) 40%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.glass-card.visible,
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-card:hover,
.step-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.08),
        inset 0 0 30px rgba(255, 107, 53, 0.02);
}

.glass-card:hover::before,
.step-card:hover::before {
    opacity: 0.8;
}

.glass-card:hover::after,
.step-card:hover::after {
    opacity: 1;
}

/* Make card content above the glow */
.glass-card > *,
.step-card > * {
    position: relative;
    z-index: 1;
}

/* Step Card Specifics */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step-number.blue { background: rgba(59, 130, 246, 0.15); color: var(--status-blue); }
.step-number.red { background: rgba(239, 68, 68, 0.15); color: var(--status-red); }
.step-number.green { background: rgba(34, 197, 94, 0.15); color: var(--status-green); }

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.step-icon.blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
}

.step-icon.red {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 50px rgba(239, 68, 68, 0.3);
    animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 50px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 70px rgba(239, 68, 68, 0.5); }
}

.step-icon.green {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.3);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step-time {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.temp-display {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 1rem 0;
}

/* ==========================================================================
   13. Features Grid
   ========================================================================== */
.features-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-border);
    border-radius: 24px;
    overflow: hidden;
}

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

.feature-item {
    padding: 2.5rem;
    background: var(--dark-bg);
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.95);
    position: relative;
}

.feature-item.visible {
    opacity: 1;
    transform: scale(1);
}

.feature-item::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item:hover {
    background: var(--dark-surface);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================================
   14. ROI Calculator - Responsive Fix
   ========================================================================== */
.roi-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 100vw);
    height: min(700px, 100vw);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.roi-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
    .roi-card {
        padding: 1.25rem;
        border-radius: 20px;
    }
}

@media (min-width: 640px) {
    .roi-card {
        padding: 2.5rem;
    }
}

.roi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.roi-inputs {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .roi-inputs {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .input-group {
        gap: 0.75rem;
    }
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.input-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .input-label {
        font-size: 0.875rem;
    }
}

.input-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .input-value {
        font-size: 1.5rem;
    }
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--dark-border);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--heatup-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 15px var(--heatup-orange-glow);
    transition: all var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 25px var(--heatup-orange-glow);
}

.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--heatup-orange);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 15px var(--heatup-orange-glow);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .range-labels {
        font-size: 0.75rem;
    }
}

.roi-results {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .roi-results {
        border-radius: 20px;
        padding: 2rem;
    }
}

.roi-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .roi-label {
        font-size: 0.875rem;
    }
}

.roi-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--status-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.roi-percent {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    color: var(--status-green);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
}

@media (min-width: 640px) {
    .roi-percent {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   15. Pricing Section
   ========================================================================== */
.pricing-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-surface);
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

@media (min-width: 640px) {
    .pricing-card {
        padding: 2.5rem;
    }
}

.pricing-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: var(--dark-border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.selected {
    border-color: var(--heatup-orange);
    background: rgba(255, 107, 53, 0.05);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.3);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--heatup-orange), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 0 12px 12px;
}

.pricing-period {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.pricing-currency {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.3;
}

.pricing-currency small {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-save {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    color: var(--status-green);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--dark-border);
}

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

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features .check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--status-green);
}

.pricing-features .x {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--heatup-orange-glow);
    animation: btn-glow 3s ease-in-out infinite;
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--heatup-orange-glow);
}

.pricing-btn-secondary {
    background: var(--dark-surface);
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
}

.pricing-btn-secondary:hover {
    border-color: var(--dark-border-hover);
    background: var(--dark-surface-elevated);
}

/* ==========================================================================
   16. Trust Section
   ========================================================================== */
.trust-section {
    overflow: hidden;
    max-width: 100%;
    padding: 3rem var(--section-padding-x);
    background: var(--dark-surface);
    position: relative;
    z-index: 2;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    border-color: var(--dark-border-hover);
    background: rgba(255, 255, 255, 0.05);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--heatup-orange);
    flex-shrink: 0;
}

/* ==========================================================================
   17. Problem/Solution Section
   ========================================================================== */
.problem-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.comparison-card {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.comparison-card:hover::after {
    opacity: 1;
}

.comparison-card > * {
    position: relative;
    z-index: 1;
}

.comparison-card.negative {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.comparison-card.negative::after {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
}

.comparison-card.positive {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.comparison-card.positive::after {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
}

.comparison-header {
    margin-bottom: 1.5rem;
}

.comparison-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-badge.negative {
    background: rgba(239, 68, 68, 0.15);
    color: var(--status-red);
}

.comparison-badge.positive {
    background: rgba(34, 197, 94, 0.15);
    color: var(--status-green);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list .x-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--status-red);
}

.comparison-list .check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--status-green);
}

/* ==========================================================================
   18. Video Section
   ========================================================================== */
.video-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-surface);
    position: relative;
    z-index: 2;
}

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

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-surface-elevated) 0%, var(--dark-bg) 100%);
    border: 1px solid var(--dark-border);
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    cursor: pointer;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px var(--heatup-orange-glow);
    transition: all var(--transition-base);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 80px var(--heatup-orange-glow);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.video-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   19. Testimonials Section
   ========================================================================== */
.testimonials-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: var(--dark-border-hover);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: var(--status-yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--heatup-orange), var(--heatup-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   20. FAQ Section
   ========================================================================== */
.faq-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-surface);
    position: relative;
    z-index: 2;
}

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

.faq-item {
    border-bottom: 1px solid var(--dark-border);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-question:hover {
    color: var(--heatup-orange);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ==========================================================================
   21. CTA Section
   ========================================================================== */
.cta-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: var(--heatup-orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ==========================================================================
   22. Contact Section
   ========================================================================== */
.contact-section {
    overflow: hidden;
    max-width: 100%;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--dark-surface);
    position: relative;
    z-index: 2;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--dark-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--heatup-orange);
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--heatup-orange);
}

.made-in-poland {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--dark-bg);
    border-radius: 12px;
}

.poland-flag {
    font-size: 1.5rem;
}

.made-in-poland strong {
    display: block;
    font-size: 0.875rem;
}

.made-in-poland span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

@media (min-width: 640px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--heatup-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px var(--heatup-orange-glow);
}

.submit-btn:hover {
    box-shadow: 0 8px 30px var(--heatup-orange-glow);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   23. Footer
   ========================================================================== */
.footer {
    padding: 3rem var(--section-padding-x);
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--heatup-orange);
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--dark-surface);
    border-radius: 12px;
}

.footer-badge-flag {
    font-size: 1.5rem;
}

.footer-badge-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-badge-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* ==========================================================================
   24. Sticky CTA Mobile
   ========================================================================== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    z-index: 50;
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }

    .footer {
        padding-bottom: 5rem;
    }
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--heatup-orange) 0%, var(--heatup-orange-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--heatup-orange-glow);
}

/* ==========================================================================
   25. Interactive Card Glow Effect (Mouse Follow)
   ========================================================================== */
[data-glow-card] {
    --glow-x: 50%;
    --glow-y: 50%;
}

[data-glow-card]::after {
    left: var(--glow-x);
    top: var(--glow-y);
}

/* ==========================================================================
   26. Utility Classes
   ========================================================================== */
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.text-left { text-align: left; }

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

/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}


.animate-spin-slow {
    animation: spin 3s linear infinite;
}

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

.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing;
}


/* Wyrazistsze wyróżnienie karty featured */
.pricing-card.featured {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.25);
}

/* Migający/pulsujący button tylko na wyróżnionym pakiecie */
.pricing-btn-primary.pulse-btn {
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(255, 107, 53, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.4);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(255, 107, 53, 0.6),
            0 0 0 10px rgba(255, 107, 53, 0);
        transform: translateY(-2px) scale(1.02);
    }
}

/* Usuń domyślną animację z zwykłych buttonów primary (zostaw tylko na pulse-btn) */
.pricing-btn-primary {
    animation: none;
}

/* Przywróć glow tylko na hover dla zwykłych przycisków */
.pricing-btn-primary:not(.pulse-btn) {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.pricing-btn-primary:not(.pulse-btn):hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}
.video-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.video-column {
    display: flex;
    justify-content: center;
}

.video-placeholder-vertical {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.9), rgba(15, 15, 25, 0.95));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-placeholder-vertical .video-thumbnail {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.1) 0%, rgba(15, 15, 25, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-vertical .video-play-btn {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
}

.video-placeholder-vertical .video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.video-placeholder-vertical .video-play-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 4px;
}

.video-placeholder-vertical .video-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: white;
    backdrop-filter: blur(4px);
}

.video-placeholder-vertical iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* Content Column */
.video-content-column {
    display: flex;
    align-items: center;
}

.video-content-inner {
    max-width: 480px;
}

.video-content-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;

    margin-bottom: 1rem;
    line-height: 1.2;
}

.video-content-desc {
    font-size: 1.1rem;

    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.video-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    color: #F97316;
}

.video-highlights li strong {
    display: block;

    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.video-highlights li span {
    display: block;

    font-size: 0.9rem;
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.video-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.video-cta-btn svg {
    transition: transform 0.3s ease;
}

.video-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .video-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-column {
        order: 1;
    }

    .video-content-column {
        order: 2;
        justify-content: center;
    }

    .video-content-inner {
        max-width: 100%;
    }

    .video-placeholder-vertical {
        max-width: 280px;
    }

    .video-highlights li {
        text-align: left;
    }

    .video-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-placeholder-vertical {
        max-width: 240px;
    }

    .video-split-container {
        padding: 0 1rem;
        gap: 2rem;
    }
}

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

.navbar-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-logo-img {
        height: 36px;
    }
}

/* ========================================================================
   VIDEO SECTION - Split Layout for Vertical Video
   ======================================================================== */

.video-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.video-column {
    display: flex;
    justify-content: center;
}

.video-placeholder-vertical {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Video Element */
.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Poster/Thumbnail */
.video-poster {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-poster img {
    object-fit: contain;
}

/* Play Button - Initial State */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.5);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.6);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

/* Video Overlay - clickable area when playing */
.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Control (Play/Pause icon) */
.video-center-control {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.video-center-control svg {
    width: 28px;
    height: 28px;
    color: white;
}

.video-center-control svg polygon {
    margin-left: 3px;
}

/* Show on hover or when paused */
.video-overlay:hover .video-center-control,
.video-center-control.show {
    opacity: 1;
}

/* Duration Badge */
.video-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: white;
    backdrop-filter: blur(4px);
    z-index: 4;
}

/* Content Column */
.video-content-column {
    display: flex;
    align-items: center;
}

.video-content-inner {
    max-width: 480px;
}

.video-content-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;

    margin-bottom: 1rem;
    line-height: 1.2;
}

.video-content-desc {
    font-size: 1.1rem;

    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.video-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    color: #F97316;
}

.video-highlights li strong {
    display: block;

    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.video-highlights li span {
    display: block;

    font-size: 0.9rem;
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.video-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.video-cta-btn svg {
    transition: transform 0.3s ease;
}

.video-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .video-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .video-column {
        order: 1;
    }

    .video-content-column {
        order: 2;
        justify-content: center;
    }

    .video-content-inner {
        max-width: 100%;
    }

    .video-placeholder-vertical {
        max-width: 280px;
    }

    .video-highlights li {
        text-align: left;
    }

    .video-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-placeholder-vertical {
        max-width: 240px;
    }

    .video-split-container {
        padding: 0 1rem;
        gap: 2rem;
    }

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

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}


