/* ============================================================
   DESIGNERBOX.AI - PREMIUM REDESIGN V3
   Targeted selectors that work with existing HTML structure
   Enhanced with DesignerBox animations
   ============================================================ */

/* === PREMIUM GOOGLE FONTS === */
/* Moved to <link> tags in frontend_style_ai.pug for faster loading (avoids render-blocking @import chain) */

/* === DESIGN TOKENS === */
:root {
    /* Color Palette */
    --db-black: #0F0F0F;
    --db-charcoal: #1A1A1A;
    --db-slate: #2D2D2D;
    --db-ash: #6B7280;
    --db-silver: #9CA3AF;
    --db-mist: #E5E7EB;
    --db-pearl: #F9FAFB;
    --db-white: #FFFFFF;
    --db-cream: #FFFBF7;

    /* Accent Colors - Pink from logo (#F71EC7) */
    --db-coral: #F71EC7;
    --db-coral-light: #FF4FD8;
    --db-coral-dark: #D916AB;
    --db-coral-soft: rgba(247, 30, 199, 0.08);
    --db-coral-glow: rgba(247, 30, 199, 0.35);

    /* Secondary Accents */
    --db-violet: #8B5CF6;
    --db-violet-soft: rgba(139, 92, 246, 0.08);
    --db-emerald: #10B981;
    --db-emerald-soft: rgba(16, 185, 129, 0.08);
    --db-sky: #0EA5E9;
    --db-sky-soft: rgba(14, 165, 233, 0.08);
    --db-amber: #F59E0B;
    --db-amber-soft: rgba(245, 158, 11, 0.08);
    --db-rose: #F43F5E;
    --db-rose-soft: rgba(244, 63, 94, 0.08);

    /* Gradients - Updated to use pink */
    --db-gradient-primary: linear-gradient(135deg, #F71EC7 0%, #FF4FD8 50%, #FF7FE3 100%);
    --db-gradient-hero: linear-gradient(180deg, #FFFBF7 0%, #FFF7F0 20%, #FEF3E8 40%, #F0F9FF 60%, #F5FDF8 80%, #FFFFFF 100%);
    --db-gradient-mesh: radial-gradient(at 40% 20%, rgba(247, 30, 199, 0.12) 0px, transparent 50%),
                        radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
                        radial-gradient(at 0% 50%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
                        radial-gradient(at 80% 50%, rgba(14, 165, 233, 0.06) 0px, transparent 50%);
    --db-gradient-footer: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);

    /* Gradient Borders - Updated to use pink */
    --db-gradient-border: linear-gradient(135deg, #F71EC7 0%, #8B5CF6 50%, #0EA5E9 100%);
    --db-gradient-border-subtle: linear-gradient(135deg, rgba(247, 30, 199, 0.5) 0%, rgba(139, 92, 246, 0.5) 50%, rgba(14, 165, 233, 0.5) 100%);
    --db-gradient-border-purple: linear-gradient(135deg, #6701ef 0%, #9954f2 100%);
    --db-gradient-border-blue: linear-gradient(135deg, #0084ff 0%, #2574F5 100%);
    --db-gradient-glow: 0 0 20px rgba(247, 30, 199, 0.15), 0 0 40px rgba(139, 92, 246, 0.1);

    /* Typography - Clean DesignerBox Style */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.06), 0 16px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.08), 0 32px 64px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;

    /* DesignerBox Animation System */
    --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --spring-duration: 0.7s;
    --db-text: #111928;
    --db-bg-light: #f9fafb;

    /* DesignerBox Typography */
    --font-db-display: 'Poppins', sans-serif;
    --font-db-body: 'Inter', sans-serif;
}

/* Fix: Override Foundation's off-canvas-wrap overflow:hidden so that
   position:sticky works for the expanding panels sticky scroll effect.
   .off-canvas-wrap is a direct child of body, wraps everything. */
.off-canvas-wrap {
    overflow: visible !important;
}

/* === ANIMATIONS === */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(1deg); }
    50% { transform: translate(40px, 15px) rotate(-1deg); }
    75% { transform: translate(-15px, 20px) rotate(0.5deg); }
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

/* === DESIGNERBOX-STYLE SCROLL ANIMATIONS === */
@keyframes dbFadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dbFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dbFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dbScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes dbFloatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes floatDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -25px) rotate(5deg); }
    50% { transform: translate(-10px, -40px) rotate(-3deg); }
    75% { transform: translate(-20px, -15px) rotate(2deg); }
}

@keyframes floatDriftReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -20px) rotate(-5deg); }
    50% { transform: translate(15px, -35px) rotate(3deg); }
    75% { transform: translate(10px, -10px) rotate(-2deg); }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(247, 30, 199, 0.3);
    }
    50% {
        box-shadow: 0 6px 28px rgba(247, 30, 199, 0.5), 0 0 40px rgba(247, 30, 199, 0.2);
    }
}

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

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

@keyframes dbShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === SCROLL-TRIGGERED ANIMATION CLASSES === */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    animation: dbFadeInUp var(--spring-duration) var(--spring-bounce) forwards;
}

.animate-on-scroll.animate-left.visible {
    animation: dbFadeInLeft var(--spring-duration) var(--spring-bounce) forwards;
}

.animate-on-scroll.animate-right.visible {
    animation: dbFadeInRight var(--spring-duration) var(--spring-bounce) forwards;
}

.animate-on-scroll.animate-scale.visible {
    animation: dbScaleIn var(--spring-duration) var(--spring-bounce) forwards;
}

/* Staggered Animation Delays */
.animate-on-scroll.visible.delay-1 { animation-delay: 0.1s; }
.animate-on-scroll.visible.delay-2 { animation-delay: 0.2s; }
.animate-on-scroll.visible.delay-3 { animation-delay: 0.3s; }
.animate-on-scroll.visible.delay-4 { animation-delay: 0.4s; }
.animate-on-scroll.visible.delay-5 { animation-delay: 0.5s; }
.animate-on-scroll.visible.delay-6 { animation-delay: 0.6s; }

/* Floating Decorative Elements */
.float-element {
    animation: dbFloat 5s ease-in-out infinite;
}

.float-element-slow {
    animation: dbFloatSlow 8s ease-in-out infinite;
}

.float-element-reverse {
    animation: dbFloat 6s ease-in-out infinite reverse;
}

/* === DESIGNERBOX SPRING TRANSITIONS === */
.spring-hover {
    transition: all 0.4s var(--spring-smooth);
}

.spring-hover:hover {
    transform: translateY(-4px) scale(1.02);
}

.spring-btn,
.landing-page .btn,
.landing-page .button,
.landing-page .cta-wrap button {
    transition: all 0.4s var(--spring-smooth);
}

.spring-btn:hover,
.landing-page .btn:hover,
.landing-page .button:hover,
.landing-page .cta-wrap button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px -4px rgba(93, 95, 239, 0.35);
}

.spring-card,
.feature-card,
.card-item,
.gen-item,
.video-item,
.carousel-slide {
    transition: all 0.4s var(--spring-smooth);
}

.spring-card:hover,
.feature-card:hover,
.card-item:hover,
.gen-item:hover,
.video-item:hover,
.carousel-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.18);
}

/* === DESIGNERBOX TYPOGRAPHY CLASSES === */
.db-headline {
    font-family: var(--font-db-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--db-text);
    line-height: 1.2;
}

.db-headline-xl {
    font-family: var(--font-db-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--db-text);
    line-height: 1.1;
}

.db-body {
    font-family: var(--font-db-body);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.db-body-lg {
    font-family: var(--font-db-body);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    color: var(--db-ash);
}

/* === DESIGNERBOX HERO - Solid background === */
.db-hero-gradient {
    background: #ffffff;
}

.db-hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

/* === DESIGNERBOX BUTTON STYLES === */
.db-btn-primary {
    background: #F71EC7;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-db-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--spring-smooth);
    box-shadow: 0 4px 20px -4px rgba(247, 30, 199, 0.4);
}

.db-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px -8px rgba(247, 30, 199, 0.5);
}

.db-btn-secondary {
    background: transparent;
    color: var(--db-text);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-db-body);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s var(--spring-smooth);
}

.db-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* === DESIGNERBOX CARD STYLES === */
.db-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--spring-smooth);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

.db-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(93, 95, 239, 0.2);
}

/* ============================================================
   DESKTOP NAVIGATION - .navigation-section .top-bar
   ============================================================ */
.navigation-section.desktop {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0;
    transition: all 0.4s var(--spring-smooth);
    box-shadow: none;
}

/* Navigation scrolled state - enhanced blur and shadow */
.navigation-section.desktop.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navigation-section.desktop .row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.navigation-section .top-bar {
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 70px !important;
    overflow: visible !important;
}

.navigation-section .top-bar .title-area {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navigation-section .top-bar .title-area li {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
}

.navigation-section .top-bar .title-area li.name {
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

.navigation-section .top-bar .title-area li.name a {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    padding: 0 !important;
}

.navigation-section .top-bar .top-bar-section {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
}

.navigation-section .top-bar .top-bar-section > ul,
.navigation-section .top-bar ul.left,
.navigation-section .top-bar ul.right,
.navigation-section .top-bar ul.top-left-header {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.navigation-section .top-bar .top-bar-section > ul > li,
.navigation-section .top-bar ul.left > li,
.navigation-section .top-bar ul.right > li,
.navigation-section .top-bar ul.top-left-header > li {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    float: none !important;
    background: transparent !important;
}

.navigation-section .top-bar ul {
    background: transparent !important;
}

.navigation-section .top-bar ul li {
    background: transparent !important;
}

.navigation-section .top-bar .top-bar-section > ul > li > a,
.navigation-section .top-bar ul.left > li > a,
.navigation-section .top-bar ul.top-left-header > li > a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--db-slate) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s var(--spring-smooth);
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    line-height: 1.4 !important;
    position: relative !important;
}

/* Nav link underline effect - water ripple */
.navigation-section .top-bar .top-bar-section > ul > li > a::after,
.navigation-section .top-bar ul.left > li > a::after,
.navigation-section .top-bar ul.top-left-header > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    top: auto !important;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--db-coral);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    opacity: 0;
}

/* Water ripple secondary wave */
.navigation-section .top-bar .top-bar-section > ul > li > a::before,
.navigation-section .top-bar ul.left > li > a::before,
.navigation-section .top-bar ul.top-left-header > li > a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    top: auto !important;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--db-coral);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
                opacity 0.5s ease 0.05s;
    opacity: 0;
    filter: blur(1px);
}

.navigation-section .top-bar .top-bar-section > ul > li > a:hover,
.navigation-section .top-bar ul.left > li > a:hover,
.navigation-section .top-bar ul.top-left-header > li > a:hover {
    color: var(--db-coral) !important;
    background: transparent !important;
    transform: translateY(-1px);
}

.navigation-section .top-bar .top-bar-section > ul > li > a:hover::after,
.navigation-section .top-bar ul.left > li > a:hover::after,
.navigation-section .top-bar ul.top-left-header > li > a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.navigation-section .top-bar .top-bar-section > ul > li > a:hover::before,
.navigation-section .top-bar ul.left > li > a:hover::before,
.navigation-section .top-bar ul.top-left-header > li > a:hover::before {
    transform: scaleX(0.7);
    opacity: 0.4;
}

/* Header Right Section - Rounded Container Style */
.navigation-section .top-bar ul.right {
    /*background: linear-gradient(var(--db-white), var(--db-white)) padding-box,*/
                var(--db-gradient-border) border-box;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 6px 6px 6px 16px;
    /*box-shadow: 0 2px 12px rgba(247, 30, 199, 0.1);*/
}

/* Sign In Link */
.navigation-section .top-bar ul.right li:first-child a {
    padding: 8px 16px !important;
}

/* Get Started Button */
.navigation-section .top-bar ul.right li:last-child a {
    background: #F71EC7 !important;
    color: var(--db-white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(247, 30, 199, 0.2);
    transition: all 0.4s var(--spring-smooth);
}

.navigation-section .top-bar ul.right li:last-child a:hover {
    transform: translateY(-2px) scale(1.02);
    background: #d919a8 !important;
    box-shadow: 0 4px 12px rgba(247, 30, 199, 0.3);
}

/* ============================================================
   MOBILE NAVIGATION - .tab-bar
   ============================================================ */
nav.tab-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    line-height: normal !important;
    box-sizing: border-box !important;
}

nav.tab-bar section.left-small {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

nav.tab-bar section.right-small {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

nav.tab-bar .left-small .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 8px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    height: auto !important;
    width: auto !important;
}

nav.tab-bar .left-small .burger-line {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--db-charcoal) !important;
    border-radius: 2px !important;
}

nav.tab-bar .left-small .tab-bar__link {
    display: flex !important;
    align-items: center !important;
}

nav.tab-bar .left-small .top-bar__logo,
nav.tab-bar .left-small img.top-bar__logo,
nav.tab-bar section.left-small .top-bar__logo {
    height: 36px !important;
    min-height: 36px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 160px !important;
    object-fit: contain !important;
}

nav.tab-bar .mobile-get-started-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: #F71EC7 !important;
    color: var(--db-white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(247, 30, 199, 0.15) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

/* ============================================================
   HERO SECTION - .db-hero (DesignerBox Enhanced)
   ============================================================ */
.landing-page .db-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fef7f5 15%, #fdf5f3 25%, #ffffff 50%);
    overflow: hidden;
}

/* Mesh Gradient Background - DesignerBox style (subtle coral/pink tint) */
.landing-page .db-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(251, 94, 71, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Floating Blob Shape - Subtle */
.landing-page .db-hero::after {
    content: '';
    position: absolute;
    top: 5%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(251, 94, 71, 0.08) 0%, rgba(251, 94, 71, 0.04) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(80px);
    animation: blob-morph 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.landing-page .db-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Badge */
.landing-page .db-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--db-white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--db-ash);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out-expo) both;
}

.landing-page .db-hero .badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--db-coral);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hero Title - DesignerBox Poppins Style (Dark solid text like DesignerBox) */
.landing-page .db-hero h1 {
    font-family: var(--font-db-display);
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    font-style: normal;
    color: #111928 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #111928 !important;
    background-clip: unset !important;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    animation: dbFadeInUp 0.8s var(--spring-bounce) 0.1s both;
}

/* Hero Subtitle - DesignerBox Inter Style */
.landing-page .db-hero h2,
.landing-page .db-hero .hero-subtitle {
    font-family: var(--font-db-body);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    color: var(--db-ash);
    line-height: 1.7;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    animation: dbFadeInUp 0.8s var(--spring-bounce) 0.2s both;
}

/* Hero CTA Form - Solid Border Style */
.landing-page .db-hero .cta-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
    position: relative;
    background: var(--db-white);
    border: 2px solid rgba(247, 30, 199, 0.3);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(247, 30, 199, 0.1);
}

.landing-page .db-hero .cta-wrap input[type="email"] {
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: var(--db-white);
    min-width: 300px;
    flex: 1;
    transition: all var(--duration-fast) var(--ease-out-expo);
    box-shadow: none;
}

.landing-page .db-hero .cta-wrap input:focus {
    outline: none;
    background: var(--db-pearl);
}

.landing-page .db-hero .cta-wrap button.btn {
    padding: 18px 36px;
    font-family: var(--font-db-body);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #F71EC7;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(247, 30, 199, 0.2);
    transition: all 0.4s var(--spring-smooth);
}

.landing-page .db-hero .cta-wrap button.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #d916ab;
    box-shadow: 0 6px 20px rgba(247, 30, 199, 0.3);
}

/* Hero Stats */
.landing-page .db-hero .stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.landing-page .db-hero .stats .stat {
    text-align: center;
}

.landing-page .db-hero .stats .stat .num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--db-charcoal);
    line-height: 1.2;
}

.landing-page .db-hero .stats .stat .label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--db-silver);
}

/* ============================================================
   FLOATING DECORATIVE ELEMENTS
   ============================================================ */
.hero-float-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-float-element.circle-1 {
    top: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--db-coral);
    border-radius: 50%;
    animation: floatDrift 8s ease-in-out infinite;
}

.hero-float-element.circle-2 {
    top: 25%;
    right: 12%;
    width: 40px;
    height: 40px;
    background: var(--db-violet-soft);
    border-radius: 50%;
    animation: floatDriftReverse 10s ease-in-out infinite;
}

.hero-float-element.square-1 {
    bottom: 30%;
    left: 5%;
    width: 35px;
    height: 35px;
    border: 2px solid var(--db-sky);
    border-radius: 8px;
    animation: floatDriftReverse 12s ease-in-out infinite;
    transform: rotate(15deg);
}

.hero-float-element.dot-cluster {
    top: 40%;
    right: 8%;
    display: flex;
    gap: 8px;
    animation: floatDrift 9s ease-in-out infinite;
}

.hero-float-element.dot-cluster span {
    width: 10px;
    height: 10px;
    background: var(--db-coral);
    border-radius: 50%;
    opacity: 0.4;
}

.hero-float-element.dot-cluster span:nth-child(2) {
    opacity: 0.6;
    animation-delay: 0.2s;
}

.hero-float-element.dot-cluster span:nth-child(3) {
    opacity: 0.8;
    animation-delay: 0.4s;
}

.hero-float-element.ring-1 {
    bottom: 25%;
    right: 15%;
    width: 50px;
    height: 50px;
    border: 2px dashed var(--db-emerald);
    border-radius: 50%;
    animation: floatDrift 11s ease-in-out infinite reverse;
}

/* Hide floating elements on mobile */
@media (max-width: 900px) {
    .hero-float-element {
        display: none;
    }
}

/* ============================================================
   AI SHOWCASE SECTION
   ============================================================ */
.ai-showcase-section {
    padding: 80px 0;
    background: var(--db-white);
}

.ai-showcase-section .showcase-title {
    font-family: var(--font-db-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: var(--db-text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ai-showcase-section .showcase-subtitle {
    font-family: var(--font-db-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--db-ash);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ============================================================
   PRODUCT CAROUSEL SECTION — Dark expanding panels gallery
   ============================================================ */
.product-carousel-section {
    padding: 120px 0 140px;
    background: #000000;
}

.product-carousel-section .carousel-title {
    font-family: var(--font-db-display);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 80px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.product-carousel-section .carousel-title em {
    font-style: italic;
    color: var(--db-coral);
}

.product-carousel-section .carousel-subtitle {
    display: none;
}

/* ============================================================
   IMMERSIVE GALLERY SHOWCASE - #gallery
   Sidebar | horizontal carousel with prev/next peek
   ============================================================ */
#gallery {
    padding: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.ig-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.ig-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.ig-section-title em {
    font-style: italic;
    background: linear-gradient(135deg, #e040fb, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.ig-showcase {
    position: relative;
    max-width: 100%;
    height: 780px; /* Fallback — JS overrides with tallest image height */
}

/* ---- Sidebar (glassmorphic overlay, image area only) ---- */
.ig-sidebar {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 270px;
    max-height: calc(100% - 90px - 32px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 10;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.ig-sidebar::-webkit-scrollbar {
    width: 4px;
}

.ig-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.ig-sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
    border: 1px solid transparent;
    outline: none;
    flex-shrink: 0;
}

.ig-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ig-sidebar-item:focus-visible {
    outline: 2px solid var(--db-coral);
    outline-offset: 2px;
}

.ig-sidebar-item.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.ig-sidebar-thumb {
    width: 56px;
    height: 56px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.ig-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ig-sidebar-item:hover .ig-sidebar-thumb img {
    transform: scale(1.1);
}

.ig-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ig-sidebar-category {
    font-family: var(--font-db-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.ig-sidebar-item.active .ig-sidebar-category {
    color: rgba(255, 255, 255, 0.6);
}

.ig-sidebar-title {
    font-family: var(--font-db-display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.ig-sidebar-item.active .ig-sidebar-title {
    color: #fff;
}

/* ---- Main Viewer (full width, behind sidebar) ---- */
.ig-viewer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Carousel container */
.ig-slides {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* Horizontal track - slides in a row */
.ig-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.65s var(--ease-out-expo);
    will-change: transform;
}

/* Each slide: 60% width. 20% peek on each side for prev/next images */
.ig-slide {
    flex: 0 0 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Inactive slides dimmed (visible through sidebar glass) */
.ig-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
}

/* Active slide is fully visible */
.ig-slide.active::after {
    opacity: 0;
}

.ig-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ---- Caption Bar ---- */
.ig-caption {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 90px;
}

.ig-caption-text {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.ig-caption-title {
    font-family: var(--font-db-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    transition: opacity 0.4s ease;
}

.ig-caption-desc {
    font-family: var(--font-db-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0 0 0 auto;
    max-width: 680px;
    transition: opacity 0.4s ease;
}

.ig-caption-expand {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.ig-caption-expand:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.ig-caption-expand:focus-visible {
    outline: 2px solid var(--db-coral);
    outline-offset: 2px;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .ig-slides-track {
        transition: transform 0.2s ease;
    }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .ig-showcase {
        grid-template-columns: 240px 1fr;
    }

    .ig-sidebar {
        padding: 12px 10px 12px 14px;
    }

    .ig-sidebar-thumb {
        width: 48px;
        height: 48px;
    }
}

/* ============================================================
   FEATURED APPS SECTION
   ============================================================ */
.featured-apps-section {
    padding: 120px 24px 140px;
    background: #000000;
    position: relative;
    overflow: visible;
}

/* Gradient separator at top — matches product-carousel-section */
.featured-apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 30, 199, 0.3) 50%, transparent 100%);
}

.featured-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.featured-apps-header {
    text-align: center;
    margin-bottom: 80px;
    overflow: visible;
}

.featured-apps-title {
    font-family: var(--font-db-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 16px 0;
    padding: 0;
    text-transform: uppercase;
    overflow: visible !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
}

.featured-apps-title em {
    font-style: italic;
    background: linear-gradient(135deg, #e040fb, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.15em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.featured-apps-subtitle {
    font-family: var(--font-db-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Tile Grid */
.featured-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Tile Card */
.fa-tile {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--spring-bounce);
}

.fa-tile:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 24px 56px -12px rgba(247, 30, 199, 0.15),
        0 12px 24px -8px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 30, 199, 0.3);
}

.fa-tile:focus-within {
    border-color: rgba(247, 30, 199, 0.3);
    box-shadow: 0 0 0 2px rgba(247, 30, 199, 0.15);
}

/* Tile Image */
.fa-tile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fa-tile-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
}

/* Tile Body */
.fa-tile-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fa-tile-title {
    font-family: var(--font-db-display);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fa-tile-desc {
    font-family: var(--font-db-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Launch Button */
.fa-tile-launch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: var(--font-db-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--spring-smooth);
}

.fa-tile-launch:hover {
    background: var(--db-coral);
    color: white;
    border-color: var(--db-coral);
    transform: scale(1.02);
}

.fa-tile-launch:active {
    transform: scale(0.98);
    transition-duration: 100ms;
}

.fa-tile-launch:focus-visible {
    outline: 2px solid var(--db-coral);
    outline-offset: 2px;
}

/* Before/After Slider */
.fa-tile-ba {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.fa-tile-ba img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.fa-tile-ba-after {
    position: absolute;
    inset: 0;
}

.fa-tile-ba-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
}

.fa-tile-ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: white;
    transform: translateX(-1px);
    pointer-events: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.fa-tile-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.fa-tile-ba-handle svg {
    width: 14px;
    height: 8px;
}

.fa-tile-ba-label {
    position: absolute;
    top: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 10px;
    font-weight: 600;
    pointer-events: none;
    z-index: 4;
}

.fa-tile-ba-label-before { left: 8px; }
.fa-tile-ba-label-after { right: 8px; }

/* View all Apps link */
.featured-apps-cta {
    text-align: center;
    margin-top: 48px;
}

.featured-apps-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-db-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s var(--spring-smooth);
}

.featured-apps-link:hover {
    background: var(--db-coral);
    color: #ffffff;
    border-color: var(--db-coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 30, 199, 0.25);
}

.featured-apps-link:focus-visible {
    outline: 2px solid var(--db-coral);
    outline-offset: 2px;
}

.featured-apps-link:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 100ms;
}

.featured-apps-link svg {
    transition: transform 0.3s ease;
}

.featured-apps-link:hover svg {
    transform: translateX(4px);
}

/* Featured Apps Responsive */
@media (max-width: 1024px) {
    .featured-apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-apps-section {
        padding: 80px 20px;
    }

    .featured-apps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fa-tile,
    .fa-tile-launch,
    .featured-apps-link {
        transition: none;
    }

    .fa-tile:hover {
        transform: none;
    }

    .fa-tile-launch:hover {
        transform: none;
    }

    .featured-apps-link:hover {
        transform: none;
    }
}

/* ============================================================
   FASHION CAROUSEL SECTION
   ============================================================ */
.fashion-carousel-section {
    padding: 80px 0;
    background: var(--db-white);
}

.fashion-carousel-section .fashion-carousel-title {
    font-family: var(--font-db-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: var(--db-text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.fashion-carousel-section .fashion-carousel-subtitle {
    font-family: var(--font-db-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--db-ash);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ============================================================
   FEATURE CARDS SECTION
   ============================================================ */
.features-section,
[class*="features"] {
    padding: 80px 24px;
}

.features-section h2,
.features-section h3 {
    font-family: var(--font-db-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color: var(--db-text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* Feature Cards - Gradient Border Style with Spring Animation */
.feature-card,
.card-item,
[class*="feature-card"] {
    position: relative;
    background: linear-gradient(var(--db-white), var(--db-white)) padding-box,
                linear-gradient(135deg, rgba(247, 30, 199, 0.15) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(14, 165, 233, 0.15) 100%) border-box;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--spring-bounce);
    cursor: pointer;
}

.feature-card:hover,
.card-item:hover,
[class*="feature-card"]:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(var(--db-white), var(--db-white)) padding-box,
                linear-gradient(135deg, rgba(247, 30, 199, 0.4) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(14, 165, 233, 0.4) 100%) border-box;
    box-shadow: 0 24px 56px -12px rgba(247, 30, 199, 0.18), 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

.feature-card h3,
.card-item h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--db-charcoal);
    margin-bottom: 8px;
}

.feature-card p,
.card-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--db-ash);
    line-height: 1.6;
}

/* ============================================================
   AI FEATURES SECTION - Senja/VidIQ Inspired
   ============================================================ */
.ai-features-section {
    padding: 100px 24px;
    background: var(--db-pearl);
}

.ai-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-features-section .features-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-features-section .features-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--db-coral);
    margin-bottom: 12px;
}

.ai-features-section .features-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--db-charcoal);
    margin: 0;
}

.ai-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-features-section .feature-card {
    position: relative;
    background: linear-gradient(var(--db-white), var(--db-white)) padding-box,
                linear-gradient(135deg, rgba(247, 30, 199, 0.15) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(14, 165, 233, 0.15) 100%) border-box;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s var(--spring-bounce);
    cursor: pointer;
}

.ai-features-section .feature-card:hover {
    transform: translateY(-12px) scale(1.01);
    background: linear-gradient(var(--db-white), var(--db-white)) padding-box,
                var(--db-gradient-border) border-box;
    box-shadow: 0 24px 56px -12px rgba(247, 30, 199, 0.18), var(--db-gradient-glow);
}

.ai-features-section .feature-card.feature-large {
    grid-column: span 2;
}

.ai-features-section .feature-icon {
    margin-bottom: 20px;
}

.ai-features-section .icon-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--db-coral-soft) 0%, var(--db-violet-soft) 100%);
    border-radius: 16px;
}

.ai-features-section .feature-content h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--db-charcoal);
    margin-bottom: 12px;
}

.ai-features-section .feature-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--db-ash);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ai-features-section .feature-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ai-features-section .feature-stats .stat {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--db-coral);
    background: var(--db-coral-soft);
    border-radius: 50px;
}

.ai-features-section .feature-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--db-coral);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.ai-features-section .feature-cta:hover {
    color: var(--db-coral-dark);
    transform: translateX(4px);
}

.ai-features-section .feature-demo {
    margin-top: 20px;
}

.ai-features-section .processing-bar {
    height: 8px;
    background: var(--db-mist);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.ai-features-section .processing-bar .progress {
    height: 100%;
    background: var(--db-gradient-primary);
    border-radius: 4px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.ai-features-section .processing-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--db-silver);
}

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

    .ai-features-section .feature-card.feature-large {
        grid-column: span 1;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.footer-course {
    background: var(--db-gradient-footer);
    color: var(--db-silver);
    padding: 80px 24px 32px;
    padding-top: 0px;
}

footer h4,
footer .footer-heading,
footer li:first-child > div {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--db-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

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

footer li {
    margin-bottom: 10px;
}

footer li a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--db-ash);
    transition: all var(--duration-fast) var(--ease-out-expo);
}

footer li a:hover {
    color: var(--db-white);
    transform: translateX(4px);
}

/* Footer Social Icons */
footer .social-icons a,
footer ul[class*="social"] a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--db-slate);
    border-radius: 10px;
    margin-right: 8px;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

footer .social-icons a:hover,
footer ul[class*="social"] a:hover {
    background: var(--db-coral);
    transform: translateY(-3px);
}

footer .social-icons img,
footer ul[class*="social"] img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Footer CTA Button */
footer a[href*="pricing"] {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--db-gradient-primary);
    color: var(--db-white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

footer a[href*="pricing"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.4);
}

/* Footer Bottom */
footer .copyright,
footer [class*="copyright"] {
    font-size: 0.8rem;
    color: var(--db-ash);
}

/* ============================================================
   SECTION SPACING & VISUAL HIERARCHY
   ============================================================ */
/* Consistent section padding */
section {
    padding: 100px 24px;
}

/* Section titles - consistent styling */
section h2,
section h3.carousel-title,
section h3.showcase-title,
section h3.fashion-carousel-title {
    font-family: var(--font-db-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--db-text);
    margin-bottom: 16px;
}

/* Fix: Dark sections override the generic section title color */
.product-carousel-section h2.carousel-title,
.ai-showcase-section h2.showcase-title {
    color: #ffffff;
}

/* Section subtitles */
section p.showcase-subtitle,
section p.carousel-subtitle,
section p.fashion-carousel-subtitle {
    font-family: var(--font-db-body);
    color: var(--db-ash);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

/* Divider between major sections */
.ai-showcase-section,
.product-carousel-section,
#gallery,
.featured-apps-section,
.fashion-carousel-section,
.ai-features-section {
    position: relative;
}

/* Smooth section transitions */
.ai-showcase-section::before,
.fashion-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 30, 199, 0.1), transparent);
}

/* Product carousel uses a stronger pink gradient separator */
.product-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 30, 199, 0.3) 50%, transparent 100%);
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 768px) {
    .landing-page .db-hero {
        padding-top: 100px;
        min-height: auto;
    }

    /* Hide floating decorative elements on mobile */
    .hero-float-element {
        display: none;
    }

    /* Add more top margin to badge on mobile */
    .landing-page .db-hero .badge {
        margin-top: 20px;
    }

    .landing-page .db-hero .stats {
        flex-direction: column;
        gap: 24px;
    }

    .ig-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }

    .ig-sidebar {
        position: absolute;
        bottom: 90px;
        left: 0;
        right: 0;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 12px 16px;
        gap: 8px;
        z-index: 10;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .ig-sidebar::-webkit-scrollbar {
        display: none;
    }

    .ig-sidebar-item {
        flex-shrink: 0;
        padding: 8px 12px;
    }

    .ig-sidebar-info {
        display: none;
    }

    .ig-sidebar-thumb {
        width: 44px;
        height: 44px;
    }

    .ig-slide:first-child {
        margin-left: 5%;
    }

    .ig-slide {
        flex: 0 0 90%;
    }

    .ig-caption {
        padding: 14px 16px;
        min-height: 70px;
    }

    .ig-caption-title {
        font-size: 1.2rem;
    }

    .ig-caption-desc {
        font-size: 13px;
    }
}

/* Form stacks only on small phones */
@media (max-width: 580px) {
    .landing-page .db-hero .cta-wrap {
        flex-direction: column;
        align-items: center;
        border-radius: 24px;
    }

    .landing-page .db-hero .cta-wrap input[type="email"] {
        min-width: 100%;
        max-width: 350px;
        border-radius: 16px;
    }

    .landing-page .db-hero .cta-wrap button.btn {
        width: 100%;
        max-width: 350px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .landing-page .db-hero h1 {
        font-size: 2rem;
    }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--db-coral);
    outline-offset: 3px;
}

/* ============================================================
   FOOTER BUTTON - Match Header Pink Color
   ============================================================ */
.row-footer .button.button-shine2,
footer .button.button-shine2 {
    background: var(--db-coral) !important;
    border: none !important;
    color: #fff !important;
}

.row-footer .button.button-shine2:hover,
footer .button.button-shine2:hover {
    background: #d919a8 !important;
    transform: scale(1.025) translateZ(0px);
}

/* ============================================================
   FOOTER - Remove Blue Gradient from dark-background
   ============================================================ */
.dark-background {
    /*background: var(--db-charcoal) !important;*/
}

footer .dark-background,
.row-footer .dark-background {
    /*background: var(--db-charcoal) !important;*/
}

/* ============================================================
   PRICING PAGE - DESIGNERBOX STYLE
   ============================================================ */
.pricingHero {
    background: #ffffff;
}

.pricingHero .main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    color: #1a1a2e;
    line-height: 1.2;
}

.pricingHero .offer-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

/* Pricing Toggle */
.switchContainer {
    margin: 32px auto;
}

.switchSelector {
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.switchSelector.yearly-button {
    background: #F71EC7 !important;
    border-color: #F71EC7 !important;
    color: white !important;
}

.switchSelector.yearly-button:hover {
    background: #e01ab5 !important;
    border-color: #e01ab5 !important;
}

.switchSelector.monthly-button {
    background: transparent !important;
    border: 1px solid #e5e7eb !important;
    color: #64748b !important;
}

.switchSelector.monthly-button:hover {
    border-color: #F71EC7 !important;
    color: #F71EC7 !important;
}

/* Pricing Cards Container - Flexbox for equal height cards */
#pricing {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 20px !important;
}

/* Pricing card widths - fit 4 in one row on large screens */
@media (min-width: 1400px) {
    #pricing {
        flex-wrap: nowrap !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        gap: 20px !important;
    }

    #pricing > .price_wrapper {
        flex: 1 1 0 !important;
        max-width: 320px !important;
    }
}

/* Pricing Cards */
.price_wrapper {
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    overflow: hidden;
}

/* Make pricing cards use flexbox to push buttons to bottom */
.price_wrapper.lite {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Push the button container to the bottom of the card */
.price_wrapper.lite .margin-left-right.margin-top-bottom {
    margin-top: auto !important;
}

.price_wrapper:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(247, 30, 199, 0.12) !important;
    border-color: rgba(247, 30, 199, 0.2) !important;
}

/* Recommended/Popular Plan */
.price_wrapper.pro,
.price_wrapper.recommended,
.price_wrapper.most-popular {
    border: 2px solid #F71EC7 !important;
    position: relative;
}

.price_wrapper.pro::before,
.price_wrapper.recommended::before,
.price_wrapper.most-popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #F71EC7;
    color: white;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
}

/* Pricing CTA Buttons */
.price_wrapper .button.cta-new-col-white,
.price_wrapper .cta-button,
.price_wrapper .button.cta,
.price_wrapper a.button,
.pricingHero .button.cta-new-col-white,
.pricingHero a.cta-new-col-white {
    background: #F71EC7 !important;
    border: none !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 4px 16px rgba(247, 30, 199, 0.25);
    color: #ffffff !important;
}

.price_wrapper .button.cta-new-col-white:hover,
.price_wrapper .cta-button:hover,
.price_wrapper .button.cta:hover,
.price_wrapper a.button:hover,
.pricingHero .button.cta-new-col-white:hover,
.pricingHero a.cta-new-col-white:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(247, 30, 199, 0.35) !important;
    background: #e01ab5 !important;
    color: #ffffff !important;
}

/* Pricing Features List */
.price_wrapper .features-list li,
.price_wrapper .pricing-features li {
    color: #64748b;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

/* Pricing table check icons */
.price_wrapper .check-icon,
.price_wrapper .feature-check {
    color: #F71EC7;
}

/* Price display */
.price_wrapper .price-value,
.price_wrapper .price-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
}

/* FAQ Section */
.pricing-faq-section {
    background: #fafafa;
}

.pricing-faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
}

/* Toggle switch - keep original green style with dark text */
.switchSelector.yearly-button {
    background: rgb(208, 255, 153) !important;
}

.switchSelector.yearly-button .header-switch {
    color: #1a1a2e !important;
}

.switchSelector.yearly-button .custom-saving {
    color: #1a1a2e !important;
    background: transparent !important;
}

.switchSelector.yearly-button .pricing-svg path {
    fill: #1a1a2e !important;
}

.switchSelector.monthly-button .header-switch {
    color: #64748b !important;
}

/* Pricing savings badge on cards - pink theme */
.custom-saving3,
.price_wrapper .custom-saving3,
.pricingHero .custom-saving3 {
    background: linear-gradient(135deg, rgba(247, 30, 199, 0.1) 0%, rgba(121, 26, 254, 0.1) 100%) !important;
    color: #F71EC7 !important;
    border: 1px solid rgba(247, 30, 199, 0.2) !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
}

.custom-saving3 .pricing-svg path,
.price_wrapper .custom-saving3 .pricing-svg path {
    fill: #F71EC7 !important;
}

.discount-amount {
    color: #F71EC7 !important;
    font-weight: 700 !important;
}

/* Most Popular badge in table header - fix styling */
.mpt-table .badge-popular,
.mpt-table__header-cell .badge-popular,
.mpt-table__header-cell.price_wrapper.pro .badge-popular,
th.price_wrapper.pro .badge-popular,
th.pro .badge-popular {
    background: transparent !important;
    background-color: transparent !important;
    color: #F71EC7 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    display: block !important;
    margin-bottom: 4px !important;
}

/* Remove the PRO title pseudo element for table header since badge-popular is shown */
.mpt-table th.price_wrapper.pro::before {
    display: none !important;
}

/* ============================================================
   PREMIUM PLAN CARD - Solid Pink Background
   ============================================================ */
#pricing .price_wrapper.lite.premium .header,
#pricing .price_wrapper.premium .header,
.price_wrapper.lite.premium .header,
.price_wrapper.premium .header {
    background: #F71EC7 !important;
    background-image: none !important;
}

/* ============================================================
   DASHBOARD BUTTON - Vertical Alignment Fix
   ============================================================ */
.navigation-section .top-bar ul.right li.menu-item {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.navigation-section .top-bar ul.right li.menu-item a.button {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* ============================================================
   TOP NAV RIGHT BUTTONS - Sign In & Get Started Alignment
   ============================================================ */
nav.top-bar .top-bar-section ul.right,
.top-bar .top-bar-section ul.right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
}

nav.top-bar .top-bar-section ul.right > li,
nav.top-bar .top-bar-section ul.right > li.menu-item,
.top-bar .top-bar-section ul.right > li,
.top-bar .top-bar-section ul.right > li.menu-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

nav.top-bar .top-bar-section ul.right > li > a,
.top-bar .top-bar-section ul.right > li > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 44px !important;
    line-height: 44px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

/* Sign In button styling */
nav.top-bar .top-bar-section ul.right > li > a.login-button,
.top-bar .top-bar-section ul.right > li > a.login-button {
    font-weight: 500 !important;
    color: var(--db-slate, #2D2D2D) !important;
    border-radius: 50px !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

nav.top-bar .top-bar-section ul.right > li > a.login-button:hover,
.top-bar .top-bar-section ul.right > li > a.login-button:hover {
    color: #F71EC7 !important;
    border-color: #F71EC7 !important;
    background: rgba(247, 30, 199, 0.05) !important;
}

/* Get Started button styling */
nav.top-bar .top-bar-section ul.right > li > a.button,
nav.top-bar .top-bar-section ul.right > li > a.button.cta,
nav.top-bar .top-bar-section ul.right > li > a.button.button-shine,
.top-bar .top-bar-section ul.right > li > a.button,
.top-bar .top-bar-section ul.right > li > a.button.cta,
.top-bar .top-bar-section ul.right > li > a.button.button-shine {
    padding: 0 24px !important;
    background: #F71EC7 !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(247, 30, 199, 0.2) !important;
    border: none !important;
}

nav.top-bar .top-bar-section ul.right > li > a.button:hover,
nav.top-bar .top-bar-section ul.right > li > a.button.cta:hover,
nav.top-bar .top-bar-section ul.right > li > a.button.button-shine:hover,
.top-bar .top-bar-section ul.right > li > a.button:hover,
.top-bar .top-bar-section ul.right > li > a.button.cta:hover,
.top-bar .top-bar-section ul.right > li > a.button.button-shine:hover {
    background: #d919a8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(247, 30, 199, 0.3) !important;
}

/* Icon inside Get Started button */
nav.top-bar .top-bar-section ul.right > li > a.button i,
.top-bar .top-bar-section ul.right > li > a.button i {
    margin-left: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* FORCE ALIGNMENT - Override all conflicting styles */
nav.top-bar[data-topbar] .top-bar-section ul.right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 70px !important;
    background: transparent !important;
}

nav.top-bar[data-topbar] .top-bar-section ul.right > li.menu-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    float: none !important;
    background: transparent !important;
}

nav.top-bar[data-topbar] .top-bar-section ul.right > li.menu-item > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    position: relative !important;
    top: 0 !important;
    bottom: 0 !important;
}

nav.top-bar[data-topbar] .top-bar-section ul.right > li.menu-item > a.login-button {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 20px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50px !important;
    background: transparent !important;
}

nav.top-bar[data-topbar] .top-bar-section ul.right > li.menu-item > a.button {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 24px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ============================================================
   DROPDOWN HEIGHT OVERRIDES
   Override height restrictions for dropdown menu items
   ============================================================ */
.image-menu ul,
.image-menu ul li,
.image-menu li,
.image-dropdown-list,
.image-dropdown-list li,
.image-menu-column ul,
.image-menu-column li,
.video-menu ul,
.video-menu ul li,
.video-menu li,
.video-dropdown-list,
.video-dropdown-list li,
.video-menu-column ul,
.video-menu-column li {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

/* Remove underline from dropdown menu items */
.use-cases-menu a::after,
.image-menu a::after,
.video-menu a::after,
.simple-dropdown-menu a::after,
.image-dropdown-list a::after,
.video-dropdown-list a::after {
    display: none !important;
}

/* ============================================================
   USE CASES DROPDOWN - Elegant Grid Design
   ============================================================ */
.use-cases-dropdown {
    position: relative;
}

.use-cases-dropdown .dropdown-arrow {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.use-cases-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.use-cases-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -20px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px;
    width: 220px;
    min-height: fit-content;
    max-height: none;
    height: auto;
    display: block;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    box-sizing: border-box;
}

.use-cases-dropdown:hover .use-cases-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                visibility 0s linear 0s;
}

/* Override Foundation dropdown styles */
.use-cases-menu ul,
.use-cases-menu ul.simple-dropdown-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.use-cases-menu ul li,
.use-cases-menu ul.simple-dropdown-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    line-height: normal !important;
    background: transparent !important;
}

.use-cases-menu ul li a,
.use-cases-menu ul.simple-dropdown-menu li a {
    display: block !important;
    padding: 8px 12px !important;
    margin: 2px 0 !important;
    color: #1a1a1a !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
    line-height: 1.4 !important;
}

.use-cases-menu ul li a:hover,
.use-cases-menu ul.simple-dropdown-menu li a:hover {
    background: rgba(247, 30, 199, 0.08) !important;
    color: #F71EC7 !important;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.use-cases-grid li {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 72px;
    box-sizing: border-box;
    overflow: hidden;
}

.use-cases-grid li:last-child {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    height: 64px;
}

.use-cases-grid a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 14px;
    padding: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04),
               inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.use-cases-grid a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
               rgba(255, 107, 53, 0.1) 0%,
               rgba(123, 104, 238, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.use-cases-grid a:hover::before {
    opacity: 1;
}

.use-cases-grid a:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.12),
               0 4px 16px rgba(0, 0, 0, 0.08),
               inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.use-case-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.use-case-visual {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.25),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-cases-grid a:hover .use-case-visual {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4),
               inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.use-case-visual.ai-model {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-visual.ai-influencer {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 16px rgba(240, 147, 251, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-visual.photo-gen {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 16px rgba(79, 172, 254, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-visual.ai-video {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 16px rgba(67, 233, 123, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-visual.virtual-tryon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 16px rgba(250, 112, 154, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-visual.image-upscaling {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3),
               inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.use-case-title {
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.use-case-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.use-cases-grid a:hover .use-case-title {
    color: #0f0f0f;
}

.use-cases-grid a:hover .use-case-desc {
    opacity: 1;
    color: #555;
}

/* Simple dropdown menu styles */
.simple-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: fit-content;
}

.simple-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    flex-shrink: 0;
}

.use-cases-menu .simple-dropdown-menu li {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    padding: 0 !important;
    margin: 0 !important;
}

.use-cases-menu .simple-dropdown-menu a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 8px 12px !important;
    margin: 2px 0 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.use-cases-menu .simple-dropdown-menu a .menu-text {
    display: flex !important;
    width: 100% !important;
    color: #1a1a1a !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.use-cases-menu .simple-dropdown-menu a:hover {
    background: rgba(247, 30, 199, 0.08) !important;
    border: none !important;
    outline: none !important;
}

.use-cases-menu .simple-dropdown-menu a:hover .menu-text {
    color: #F71EC7 !important;
}

/* ============================================================
   IMAGE MENU DROPDOWN - Two Column Layout
   ============================================================ */
.image-dropdown .dropdown-arrow {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.image-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.image-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -20px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    width: 480px;
    min-height: fit-content;
    max-height: none;
    height: auto;
    display: block;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    box-sizing: border-box;
}

.image-dropdown:hover .image-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                visibility 0s linear 0s;
}

.image-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: fit-content;
    overflow: visible;
    box-sizing: border-box;
    align-content: start;
}

.image-menu-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: fit-content;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
}

.image-menu-column .column-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
    padding: 0 8px;
    text-align: left;
    width: 100%;
}

.image-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: flex-start;
    max-height: none !important;
    overflow: visible !important;
    box-sizing: border-box;
}

.image-dropdown-list li {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    height: auto !important;
    max-height: none !important;
    width: 100%;
    box-sizing: border-box;
}

.image-dropdown-list a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 10px 12px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    width: 100% !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.image-dropdown-list a:hover {
    background: rgba(247, 30, 199, 0.08) !important;
}

.image-dropdown-list a:hover .feature-title {
    color: #F71EC7 !important;
}

.image-dropdown-list .feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    align-items: flex-start;
    height: auto;
    min-height: fit-content;
}

.image-dropdown-list .feature-title {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    height: auto;
    transition: color 0.2s ease;
}

.image-dropdown-list .feature-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    height: auto;
}

.image-dropdown-list .badge {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-dropdown-list .badge-new {
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%);
    color: #ffffff;
}

.image-dropdown-list .badge-best {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
}

/* ============================================================
   VIDEO MENU DROPDOWN - Two Column Layout (mirrors Image)
   ============================================================ */
.video-dropdown .dropdown-arrow {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.video-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.video-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -20px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    width: 480px;
    min-height: fit-content;
    max-height: none;
    height: auto;
    display: block;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    box-sizing: border-box;
}

.video-dropdown:hover .video-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                visibility 0s linear 0s;
}

.video-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: fit-content;
    overflow: visible;
    box-sizing: border-box;
    align-content: start;
}

.video-menu-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: fit-content;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
}

.video-menu-column .column-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
    padding: 0 8px;
    text-align: left;
    width: 100%;
}

.video-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: flex-start;
    max-height: none !important;
    overflow: visible !important;
    box-sizing: border-box;
}

.video-dropdown-list li {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    height: auto !important;
    max-height: none !important;
    width: 100%;
    box-sizing: border-box;
}

.video-dropdown-list a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 10px 12px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    width: 100% !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.video-dropdown-list a:hover {
    background: rgba(247, 30, 199, 0.08) !important;
}

.video-dropdown-list a:hover .feature-title {
    color: #F71EC7 !important;
}

.video-dropdown-list .feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    align-items: flex-start;
    height: auto;
    min-height: fit-content;
}

.video-dropdown-list .feature-title {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    height: auto;
    transition: color 0.2s ease;
}

.video-dropdown-list .feature-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
    height: auto;
}

/* ============================================================
   FOOTER LOGO - Matching Top Bar Style
   ============================================================ */
.footer-logo-text {
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ============================================================
   MOBILE NAVIGATION - Responsive Burger Menu
   ============================================================ */
.tab-bar.hide-for-large-up {
    display: none !important;
}

/* Mobile & Tablet breakpoint */
@media screen and (max-width: 1024px) {
    .tab-bar.hide-for-large-up {
        display: flex !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 0 !important;
        height: 64px !important;
        align-items: center !important;
        padding: 0 16px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1001 !important;
        box-shadow: none !important;
        justify-content: space-between !important;
        max-width: 100% !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    .tab-bar.hide-for-large-up section,
    .tab-bar.hide-for-large-up section.left-small,
    .tab-bar.hide-for-large-up section.right-small,
    .tab-bar.hide-for-large-up .tab-bar-section {
        border: none !important;
        border-left: none !important;
        border-right: none !important;
        background: transparent !important;
    }

    .tab-bar.hide-for-large-up section.right-small {
        margin-left: auto !important;
    }

    .navigation-section.show-for-large-up {
        display: none !important;
    }

    /* Hide desktop separator on mobile */
    li.separator,
    em.separator,
    .vertical-line {
        display: none !important;
    }
}

/* Mobile Navigation Sections */
.tab-bar section.left-small {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    height: 100% !important;
    border: none !important;
    flex: 0 0 auto !important;
}

.tab-bar section.right-small {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    padding-left: 12px !important;
    justify-content: flex-end !important;
}

.tab-bar section {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
}

.tab-bar .tab-bar__link {
    flex-shrink: 1 !important;
    min-width: 0 !important;
}

/* Burger Menu */
.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: auto !important;
    height: auto !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.burger-line {
    width: 24px !important;
    height: 2px !important;
    background: #000 !important;
    border-radius: 2px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Burger to X animation */
.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(-10px) !important;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
}

/* Mobile Logo */
.tab-bar .tab-bar__link {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    flex-shrink: 0 !important;
    min-width: 120px !important;
}

.tab-bar .tab-bar__link img.top-bar__logo {
    height: 28px !important;
    width: auto !important;
    max-width: 150px !important;
    min-width: 100px !important;
    object-fit: contain !important;
}

.mobile-logo-text {
    font-weight: 900 !important;
    font-size: 22px !important;
    letter-spacing: 0.3px !important;
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    white-space: nowrap !important;
    border: none !important;
}

/* Get Started Button - Match Desktop */
.mobile-get-started-btn {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0 16px !important;
    height: 36px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.mobile-get-started-btn:hover {
    background: #333333 !important;
    transform: translateY(-1px) !important;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(128, 128, 128, 0.15) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    z-index: 10000 !important;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
}

.mobile-menu-drawer.active {
    left: 0 !important;
}

/* Tablet - 35% width */
@media screen and (min-width: 481px) and (max-width: 1024px) {
    .mobile-menu-drawer {
        width: 35% !important;
    }
}

.mobile-menu-header {
    display: flex !important;
    justify-content: flex-end !important;
    padding: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-close {
    background: transparent !important;
    border: none !important;
    color: #000000 !important;
    font-size: 32px !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transition: transform 0.2s ease !important;
}

.mobile-menu-close:hover {
    transform: rotate(90deg) !important;
}

.mobile-menu-content {
    padding: 16px 0 !important;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: background 0.2s ease !important;
    min-height: 72px !important;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.mobile-menu-link i.fa-chevron-down {
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-left: 16px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
}

.mobile-menu-item.active .mobile-menu-link i.fa-chevron-down {
    transform: rotate(180deg) !important;
    color: #000000 !important;
}

.mobile-submenu {
    max-height: 0 !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-menu-item.active .mobile-submenu {
    max-height: 1000px !important;
}

.mobile-submenu-section {
    padding: 12px 0 !important;
}

.mobile-submenu-title {
    padding: 8px 20px !important;
    color: rgba(0, 0, 0, 0.5) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.mobile-submenu-link {
    display: block !important;
    padding: 12px 20px 12px 40px !important;
    color: rgba(0, 0, 0, 0.85) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: background 0.2s ease !important;
}

.mobile-submenu-link:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #000000 !important;
}

/* Mobile - smaller screens optimization */
@media screen and (max-width: 480px) {
    .tab-bar.hide-for-large-up {
        padding: 0 16px !important;
        top: 12px !important;
        left: 12px !important;
        right: 12px !important;
        height: 48px !important;
        border-radius: 48px !important;
        max-width: calc(100% - 24px) !important;
    }

    .tab-bar section.left-small {
        gap: 8px !important;
    }

    .mobile-logo-text {
        font-size: 18px !important;
    }

    .mobile-get-started-btn {
        padding: 0 14px !important;
        font-size: 12px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }

    .mobile-menu-toggle {
        padding: 6px !important;
        flex-shrink: 0 !important;
    }

    .burger-line {
        width: 20px !important;
    }
}
