/* ============================================================
   APP NAVIGATION CSS
   Shared navigation styles loaded on ALL pages.
   Homepage-specific styles remain in app-redesign.css.
   ============================================================ */

/* Navigation CSS Variables */
:root {
    --db-charcoal: #1A1A1A;
    --db-slate: #2D2D2D;
    --db-white: #FFFFFF;
    --db-coral: #F71EC7;
    --db-coral-dark: #D916AB;
    --db-coral-soft: rgba(247, 30, 199, 0.08);
    --db-gradient-border: linear-gradient(135deg, #F71EC7 0%, #8B5CF6 50%, #0EA5E9 100%);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --spring-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   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;
}

/* ============================================================
   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;
    }
}
