

:root {
    --primary-gradient: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%) !important;
    --dark-bg: #ffffff !important;
    --card-bg: rgba(0, 0, 0, 0.03) !important;
    --text-primary: #000000 !important;
    --text-secondary: rgba(0, 0, 0, 0.7) !important;
    --border-radius: 16px !important;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.24) !important;
}


/* Hero Section - Clean solid background */
.db-hero {position: relative; min-height: 100vh; padding: 140px 24px 80px; background: #ffffff; color: var(--text-primary); display: flex; align-items: center; justify-content: center; overflow: hidden;}
@media screen and (max-width: 1024px) {
    .db-hero {padding-top: 120px;}
}

/* Single Random Video Background */
.db-hero-videos {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden;}
.db-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.15;
    pointer-events: none;
    filter: brightness(1.1) saturate(0.8);
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(-50%, -50%, 0);
}

@media (prefers-reduced-motion: reduce) {
    .db-hero-video {
        animation: none;
        transform: translate3d(-50%, -50%, 0) scale(1.02);
    }
}

@keyframes slowPan {
    0% { transform: translate3d(-50%, -50%, 0) scale(1); }
    50% { transform: translate3d(-52%, -48%, 0) scale(1.03); }
    100% { transform: translate3d(-50%, -50%, 0) scale(1); }
}

/* Desktop animation - only for high performance devices */
@media screen and (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
    .db-hero-video {
        animation: slowPan 45s infinite ease-in-out;
    }
}

/* Mobile optimizations - reduce video effects on smaller screens */
@media screen and (max-width: 1024px) {
    .db-hero-video {
        animation: none;
        transform: translate3d(-50%, -50%, 0) scale(1.02);
        opacity: 0.1;
        filter: brightness(1.1) saturate(0.8);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .db-hero-video {animation: none; transform: translate(-50%, -50%);}
}

.db-hero::before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: transparent; opacity: 0; z-index: 1;}
.db-hero::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: transparent;
    z-index: 2;
    will-change: transform;
    backface-visibility: hidden;
}

@media screen and (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
    .db-hero::after {
        animation: rotate 30s linear infinite;
    }
}

@keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
.db-hero .container {max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 10;}
.db-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
}

@media screen and (min-width: 769px) {
    .db-hero .badge {
        backdrop-filter: blur(12px);
    }
}
.db-hero .badge::before {content: '✨'; margin-right: 6px; font-size: 16px;}
.db-hero h1 {font-size: clamp(48px, 8vw, 80px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 24px; color: #111928 !important; background: none !important; -webkit-background-clip: unset !important; -webkit-text-fill-color: #111928 !important; background-clip: unset !important; padding: 8px 0;}
.db-hero h2, .db-hero .hero-subtitle {font-size: clamp(18px, 3vw, 24px); font-weight: 400; color: var(--text-secondary); max-width: 700px; margin: 0 auto 48px; line-height: 1.6;}
.db-hero .cta-wrap {display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 80px; align-items: stretch;}
.db-hero .cta-wrap input {width: 360px; max-width: 70vw; padding: 0 28px; border-radius: 50px; border: 1px solid rgba(0, 0, 0, 0.12); background: rgba(255, 255, 255, 0.9); color: var(--text-primary); font-size: 17px; backdrop-filter: blur(16px); transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); height: 64px; box-sizing: border-box; line-height: 64px; margin: 0; vertical-align: middle;}
.db-hero .cta-wrap input::placeholder {color: var(--text-secondary); font-weight: 400;}
.db-hero .cta-wrap input:focus {outline: none; border-color: rgba(247, 30, 199, 0.5); box-shadow: 0 0 0 4px rgba(247, 30, 199, 0.1), 0 8px 24px rgba(0, 0, 0, 0.12);}
.db-hero .cta-wrap .btn {padding: 0 40px; border-radius: 50px; background: #F71EC7; color: #fff; border: none; font-weight: 600; font-size: 17px; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 24px rgba(247, 30, 199, 0.35); height: 64px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; margin: 0; line-height: 1;}
.db-hero .cta-wrap .btn:hover {transform: translateY(-3px); box-shadow: 0 12px 32px rgba(247, 30, 199, 0.5);}
.db-hero .stats {display: flex; justify-content: center; gap: 80px; margin-bottom: 80px; flex-wrap: wrap;}
.db-hero .stat {text-align: center; padding: 24px; background: transparent; border-radius: var(--border-radius); backdrop-filter: none; border: none; transition: all 0.3s ease;}
.db-hero .stat:hover {transform: translateY(-4px); box-shadow: var(--shadow-soft);}
.db-hero .stat .num {font-weight: 800; font-size: 36px; margin-bottom: 8px; color: #111928; background: none; -webkit-background-clip: unset; -webkit-text-fill-color: #111928; background-clip: unset;}
.db-hero .stat .label {opacity: 0.9; font-size: 14px; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;}

/* PNG File Icon Styles */
.png-preview-wrapper {display: flex; justify-content: center; margin-top: 40px;}
.png-file-icon {position: relative; width: 280px; height: 360px;}
.file-document {position: relative; width: 100%; height: 320px; background: linear-gradient(145deg, #ffffff, #f8f9fa); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.1); overflow: hidden;}
.file-corner {position: absolute; top: 0; right: 0; width: 40px; height: 40px; background: linear-gradient(-45deg, transparent 46%, #e9ecef 46%, #e9ecef 54%, transparent 54%); border-radius: 0 24px 0 0;}
.image-preview {position: absolute; top: 40px; left: 30px; width: 160px; height: 120px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.15);}
.image-preview img {width: 100%; height: 100%; object-fit: cover;}
.magnifying-glass {position: absolute; bottom: 30px; right: 25px; width: 70px; height: 70px; background: linear-gradient(145deg, #6c757d, #495057); border-radius: 50%; border: 4px solid #fff; box-shadow: 0 8px 20px rgba(0,0,0,.25);}
.magnifying-glass::before {content: ''; position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border: 3px solid #fff; border-radius: 50%; background: transparent;}
.glass-handle {position: absolute; bottom: -12px; right: -12px; width: 24px; height: 24px; background: linear-gradient(145deg, #6c757d, #495057); border-radius: 3px; transform: rotate(45deg); border: 2px solid #fff;}
.file-type-label {text-align: center; margin-top: 16px; font-size: 28px; font-weight: 700; color: #6c757d; letter-spacing: 3px;}

/* Modern Testimonials Section */
.testimonials-section-new {background: var(--dark-bg); padding: 0; margin-top: 0;}
.testimonial-platform-section {position: relative; padding: 100px 0; overflow: hidden; min-height: 600px;}
.platform-background {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.15;}
.platform-title {font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: var(--text-primary); margin-bottom: 60px; text-align: center; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; padding: 8px 0;}
.testimonial-cards-row {display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 10; max-width: 1200px; margin: 0 auto;}

/* Creator-focused backgrounds */
.creators-section .platform-background {background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?auto=format&fit=crop&w=1920&h=800&q=80');}
.social-section .platform-background {background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1611262588024-d12430b98920?auto=format&fit=crop&w=1920&h=800&q=80');}

/* Modern Testimonial Cards */
.testimonial-card {background: var(--card-bg); backdrop-filter: blur(24px); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-strong); max-width: 480px; border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;}
.testimonial-card::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary-gradient);}
.testimonial-card:hover {transform: translateY(-8px); box-shadow: 0 24px 80px rgba(255, 107, 53, 0.2); border-color: rgba(255, 107, 53, 0.3);}

.profile-section {display: flex; align-items: center; gap: 16px; margin-bottom: 20px;}
.avatar img {width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 107, 53, 0.5);}
.profile-info .name {font-weight: 700; font-size: 18px; color: var(--text-primary); margin-bottom: 4px;}
.profile-info .role {font-size: 14px; color: var(--text-secondary); font-weight: 500; margin-bottom: 6px;}
.profile-info .rating {font-size: 14px; opacity: 0.9;}

.testimonial-content {font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 24px; font-style: italic;}

.cta-buttons {display: flex; gap: 12px; flex-wrap: wrap;}
.btn-primary, .btn-secondary {padding: 10px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 6px;}
.btn-primary {background: var(--primary-gradient); color: #fff; border: none;}
.btn-primary:hover {transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);}
.btn-secondary {background: transparent; color: var(--text-secondary); border: 1px solid rgba(255, 255, 255, 0.12);}
.btn-secondary:hover {background: var(--card-bg); color: var(--text-primary); border-color: rgba(255, 107, 53, 0.3);}

/* AI Features Section */
.ai-features-section {background: var(--dark-bg); padding: 60px 24px !important; position: relative;}
.ai-features-section::before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(123, 104, 238, 0.1) 0%, transparent 50%); pointer-events: none;}
.ai-features-section .container {padding: 0 !important; margin: 0 auto !important; max-width: 1400px !important;}
.ai-features-section .features-header {text-align: center; margin-bottom: 24px !important; padding: 0 !important; position: relative; z-index: 10;}
.ai-features-section .features-subtitle {color: var(--text-secondary); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px !important; padding: 0 !important;}
.ai-features-section .features-title {font-size: clamp(36px, 6vw, 56px); font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0 !important; padding: 0 !important; line-height: 1.2;}
.ai-features-section .features-grid {padding: 0 !important;}

.features-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 10;}
.feature-card {background: var(--card-bg); border-radius: 24px; padding: 40px; border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(24px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;}
.feature-card::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--primary-gradient); opacity: 0; transition: opacity 0.3s ease;}
.feature-card:hover {transform: translateY(-8px); box-shadow: var(--shadow-strong); border-color: rgba(255, 107, 53, 0.2);}
.feature-card:hover::before {opacity: 1;}
.feature-large {grid-column: span 2;}

.feature-icon {margin-bottom: 24px;}
.icon-gradient {font-size: 48px; display: inline-block; padding: 20px; background: var(--card-bg); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.12);}

.feature-content h3 {font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px;}
.feature-content p {font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px;}

.feature-stats {display: flex; gap: 16px; margin-top: 20px;}
.stat {background: rgba(255, 107, 53, 0.1); color: #ff6b35; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600;}

.feature-cta {color: #ff6b35; font-weight: 600; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;}
.feature-cta:hover {color: var(--text-primary); transform: translateX(4px);}

.feature-preview {margin-top: 24px;}
.preview-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;}
.preview-item {width: 80px; height: 80px; border-radius: 12px; background-size: cover; background-position: center; border: 2px solid rgba(255, 255, 255, 0.1);}

.feature-demo {margin-top: 24px;}
.processing-bar {background: rgba(255, 255, 255, 0.1); border-radius: 8px; height: 8px; overflow: hidden; margin-bottom: 12px;}
.progress {height: 100%; background: var(--primary-gradient); border-radius: 8px; transition: width 0.3s ease;}
.processing-text {color: var(--text-secondary); font-size: 14px; font-weight: 500;}

/* Integration Features */
.integration-features {background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1b 100%); padding: 120px 0;}
.integration-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 80px;}
.integration-card {background: var(--card-bg); border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); transition: all 0.3s ease;}
.integration-card:hover {transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(255, 107, 53, 0.2);}
.integration-icon {font-size: 40px; margin-bottom: 16px;}
.integration-icon img {width: 40px; height: 40px; filter: brightness(0) invert(1); opacity: 0.8;}
.integration-card h4 {color: var(--text-primary); font-size: 18px; font-weight: 700; margin-bottom: 8px;}
.integration-card p {color: var(--text-secondary); font-size: 14px;}

.cta-section {text-align: center; padding: 60px 40px; background: var(--card-bg); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.08);}
.cta-section h3 {font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px;}
.cta-section p {font-size: 18px; color: var(--text-secondary); margin-bottom: 32px;}
.cta-buttons {display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;}
.btn-primary-large, .btn-secondary-large {padding: 18px 36px; font-size: 18px; font-weight: 700; border-radius: 16px; text-decoration: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}
.btn-primary-large {background: var(--primary-gradient); color: #fff; box-shadow: var(--shadow-strong);}
.btn-primary-large:hover {transform: translateY(-3px); box-shadow: 0 20px 80px rgba(255, 107, 53, 0.4);}
.btn-secondary-large {background: transparent; color: var(--text-secondary); border: 2px solid rgba(255, 255, 255, 0.12);}
.btn-secondary-large:hover {background: var(--card-bg); color: var(--text-primary); border-color: rgba(255, 107, 53, 0.3);}

/* AI Channels Section Styling */
.ai-icon {font-size: 24px; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--card-bg); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08);}

/* AI Generation Showcase - Futuristic Hero Design */
.ai-generation-showcase {margin-top: 60px; position: relative; z-index: 10;}
.generation-grid {display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; max-width: 600px; margin: 0 auto 40px; height: 320px;}
.gen-item {position: relative; border-radius: 20px; overflow: hidden; background: var(--card-bg); border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}
.gen-item:hover {transform: translateY(-4px); box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);}
.gen-main {grid-row: span 2; position: relative;}
.gen-main::before {content: ''; position: absolute; inset: -2px; background: var(--primary-gradient); border-radius: 22px; z-index: -1; opacity: 0.6;}
.gen-preview {width: 100%; height: 100%; overflow: hidden; border-radius: 20px;}
.gen-preview img {width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;}
.gen-item:hover .gen-preview img {transform: scale(1.05);}
.gen-overlay {position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 20px; color: white;}
.gen-badge {position: absolute; top: 12px; left: 12px; background: #F71EC7; color: white; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; backdrop-filter: blur(10px);}
.gen-specs {font-size: 14px; opacity: 0.9; margin-top: 4px;}
.gen-glow {position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255, 107, 53, 0.2) 0%, transparent 70%); pointer-events: none; opacity: 0; transition: opacity 0.4s ease;}
.gen-main:hover .gen-glow {opacity: 1;}

.gen-processing {display: flex; align-items: center; justify-content: center; background: linear-gradient(45deg, var(--card-bg), rgba(255, 107, 53, 0.05));}
.processing-animation {text-align: center;}
.processing-dots {display: flex; gap: 8px; margin-bottom: 16px; justify-content: center;}
.dot {
    width: 12px;
    height: 12px;
    background: var(--primary-gradient);
    border-radius: 50%;
    will-change: opacity;
    backface-visibility: hidden;
}

@media screen and (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .dot {
        animation: processing 2s infinite ease-in-out;
    }
    .dot:nth-child(2) {animation-delay: 0.3s;}
    .dot:nth-child(3) {animation-delay: 0.6s;}
}

@keyframes processing {
    0%, 80%, 100% {opacity: 0.3;}
    40% {opacity: 1;}
}

.generation-stats {display: flex; justify-content: center; gap: 40px; margin-top: 20px;}
.stat-item {text-align: center;}
.stat-number {font-size: 20px; font-weight: 800; color: #F71EC7; margin-bottom: 4px;}
.stat-label {font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px;}

/* AI Showcase Section - Immersive Dark Cinematic Theme */
.ai-showcase-section {
    background: #000000 !important;
    padding: 0 !important;
    min-height: auto !important;
    position: relative;
    overflow: hidden;
}

.ai-showcase-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(247, 30, 199, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container-deserve {display: flex; align-items: flex-start; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 24px;}
.container-deserve-left {flex: 1; max-width: 500px; display: flex; flex-direction: column; align-items: flex-start;}
.container-deserve-right {flex: 1; display: flex; justify-content: center; align-items: flex-start; min-height: 600px;}

.ai-output-grid {display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); gap: 20px; max-width: 500px; height: 600px;}
.ai-output-item {background: #ffffff; border-radius: 20px; padding: 16px; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-start; text-align: left;}
.ai-output-item::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #F71EC7; opacity: 0; transition: opacity 0.3s ease;}
.ai-output-item:hover::before {opacity: 1;}
.ai-output-item:hover {transform: translateY(-6px); box-shadow: 0 16px 48px rgba(247, 30, 199, 0.15); border-color: rgba(247, 30, 199, 0.2);}

.output-preview {width: 100%; height: 100px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; position: relative; flex-shrink: 0;}
.output-preview img {width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;}
.ai-output-item:hover .output-preview img {transform: scale(1.1);}

.batch-preview {background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(123, 104, 238, 0.1)); display: flex; align-items: center; justify-content: center; position: relative;}
.batch-counter {font-size: 32px; font-weight: 800; color: #fff; position: absolute; z-index: 10;}
.batch-grid {display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; opacity: 0.3;}
.batch-mini {width: 24px; height: 24px; background: var(--primary-gradient); border-radius: 4px;}

/* Creation Tools Section - Modern Grid Design */
.creation-tools-section {padding: 120px 0; background: var(--dark-bg); position: relative;}
.creation-tools-section::before {content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(123, 104, 238, 0.05) 0%, transparent 50%); pointer-events: none;}

.tools-header {text-align: center; margin-bottom: 80px; position: relative; z-index: 10;}
.tools-header h2 {font-size: clamp(36px, 5vw, 48px); font-weight: 700; color: var(--text-primary); margin-bottom: 20px; line-height: 1.2;}
.tools-header p {font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; line-height: 1.6;}

.explore-btn {display: inline-flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); color: #6366f1; padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(12px);}
.explore-btn:hover {background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2); border-color: rgba(99, 102, 241, 0.3);}
.explore-btn i {font-size: 14px; transition: transform 0.3s ease;}
.explore-btn:hover i {transform: translateX(4px);}

.tools-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 10;}

.tool-card {position: relative; height: 400px; border-radius: 24px; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;}
.tool-card::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary-gradient); opacity: 0; transition: opacity 0.3s ease; z-index: 5;}
.tool-card:hover::before {opacity: 1;}
.tool-card:hover {transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.2);}

.tool-card.primary-tool {border-color: rgba(255, 107, 53, 0.3);}
.tool-card.primary-tool::before {opacity: 1;}

.tool-image-bg {position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; background-repeat: no-repeat; filter: brightness(0.7) saturate(1.2);}
.tool-card:hover .tool-image-bg {filter: brightness(0.8) saturate(1.3); transform: scale(1.05);}

.tool-content-overlay {position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%); padding: 24px; color: white; z-index: 3;}
.tool-content-overlay.centered {top: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px);}

.tool-badge {position: absolute; top: 16px; right: 16px; background: var(--primary-gradient); color: white; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; z-index: 4; box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);}

.tool-title {font-size: 24px; font-weight: 700; color: white; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);}
.tool-subtitle {font-size: 16px; font-weight: 400; color: rgba(255, 255, 255, 0.8); text-align: center;}

.tool-features {display: flex; flex-direction: column; gap: 8px;}
.feature {font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px;}
.feature.green {color: #4ade80;}
.feature.red {color: #f87171;}
.feature::before {content: attr(data-icon); font-weight: 600;}

.see-all-card {background: rgba(0, 0, 0, 0.4); border: 2px dashed rgba(255, 255, 255, 0.3); backdrop-filter: blur(20px);}
.see-all-card:hover {border-color: rgba(255, 107, 53, 0.6); background: rgba(255, 107, 53, 0.1);}
.see-all-icon {width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; border: 2px solid rgba(255, 255, 255, 0.2);}
.see-all-icon i {font-size: 36px; color: rgba(255, 255, 255, 0.8);}
.see-all-card:hover .see-all-icon {background: var(--primary-gradient); border-color: transparent;}
.see-all-card:hover .see-all-icon i {color: white;}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .creation-tools-section {padding: 80px 0;}
    .tools-grid {grid-template-columns: 1fr; gap: 20px; max-width: 400px;}
    .tool-card {height: 320px;}
    .tool-content-overlay {padding: 20px;}
    .tool-title {font-size: 20px; margin-bottom: 12px;}
    .tool-features {display: none;} /* Hide features on mobile for cleaner look */
    .tools-header {margin-bottom: 60px;}
    .tools-header h2 {font-size: 32px;}
    .tools-header p {font-size: 16px;}
}

.output-label {color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 6px; line-height: 1.3;}
.output-meta {color: rgba(255, 255, 255, 0.7); font-size: 12px; font-weight: 500; line-height: 1.4;}

@media screen and (max-width: 768px) {
    .generation-grid {grid-template-columns: 1fr; grid-template-rows: auto; height: auto;}
    .gen-main {grid-row: span 1;}
    .ai-output-grid {grid-template-columns: 1fr; height: auto; grid-template-rows: auto;}
    .generation-stats {gap: 20px;}
    .container-deserve {flex-direction: column; gap: 40px; align-items: center;}
    .container-deserve-left {text-align: center;}
    .container-deserve-right {min-height: auto;}
}

.ai-showcase-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 120px;
    position: relative;
    z-index: 1;
}

.showcase-title {
    text-align: center;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-bottom: 60px;
    padding: 0;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.showcase-title em {
    font-style: italic;
    color: var(--db-coral) !important;
    -webkit-text-fill-color: var(--db-coral) !important;
}

.showcase-subtitle {
    display: none !important;
}

/* =======================================================
   AVANT-GARDE BENTO GRID - Asymmetric cinematic layout
   7 tiles mixing video + images at dramatic size variations
   ======================================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 320px 240px 280px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Bento Item Base --- */
.bento-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
    cursor: pointer;
    transition: transform 0.5s var(--spring-smooth),
                box-shadow 0.5s var(--spring-smooth);
}

.bento-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 80px rgba(247, 30, 199, 0.12),
                0 24px 80px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Media fills */
.bento-item video,
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) contrast(1.05);
    transition: filter 0.5s ease, transform 0.6s var(--spring-smooth);
}

.bento-item:hover video,
.bento-item:hover img {
    filter: saturate(1.25) contrast(1.1);
    transform: scale(1.06);
}

/* Pink play button - only on items with data-video */
.bento-item[data-video]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 64px;
    height: 64px;
    background: rgba(247, 30, 199, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s var(--spring-bounce);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-position: 54% center;
    background-repeat: no-repeat;
    z-index: 3;
}

.bento-item[data-video]:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Caption overlays */
.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.bento-item:hover .video-caption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Grid Placement: 3-row asymmetric bento --- */

/* Row 1: Wide hero video (8 cols) + tall image spanning rows 1-2 (4 cols) */
.bento-hero {
    grid-column: 1 / 9;
    grid-row: 1;
}

.bento-tall-right {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

/* Row 2: Small image (3 cols) + wide video (6 cols) + small image (3 cols, shared with tall) */
.bento-sm-left {
    grid-column: 1 / 4;
    grid-row: 2;
    border-radius: 14px;
}

.bento-wide-center {
    grid-column: 4 / 9;
    grid-row: 2;
}

.bento-sm-right {
    /* This sits inside the tall-right's visual space conceptually */
    display: none;
}

/* Row 3: Medium image (5 cols) + wide travel video (7 cols) */
.bento-md-left {
    grid-column: 1 / 5;
    grid-row: 3;
}

.bento-wide-right {
    grid-column: 5 / 13;
    grid-row: 3;
}

/* Subtle border glow on specific items for visual rhythm */
.bento-hero {
    border: 1px solid rgba(247, 30, 199, 0.15);
}

.bento-tall-right {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bento-md-left {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Responsive: Tablet --- */
@media screen and (max-width: 1024px) {
    .ai-showcase-section .container {
        padding: 80px 24px 100px;
    }

    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 260px 220px 220px 220px;
        gap: 8px;
    }

    .bento-hero {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .bento-tall-right {
        grid-column: 1 / 4;
        grid-row: 2;
    }

    .bento-sm-left {
        grid-column: 4 / 7;
        grid-row: 2;
    }

    .bento-wide-center {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .bento-md-left {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .bento-wide-right {
        grid-column: 3 / 7;
        grid-row: 4;
    }
}

/* --- Responsive: Mobile --- */
@media screen and (max-width: 768px) {
    .ai-showcase-section .container {
        padding: 60px 16px 80px;
    }

    .showcase-title {
        font-size: clamp(36px, 10vw, 56px) !important;
        margin-bottom: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px 200px;
        gap: 8px;
    }

    .bento-hero {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .bento-tall-right {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-sm-left {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-wide-center {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .bento-md-left {
        grid-column: 1;
        grid-row: 4;
    }

    .bento-wide-right {
        grid-column: 2;
        grid-row: 4;
    }

    .bento-item {
        border-radius: 10px;
    }

    .video-caption {
        opacity: 1;
        transform: translateY(0);
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 12px 14px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .video-item,
    .video-item::after,
    .video-caption {
        transition: none;
    }

    .video-item:hover {
        transform: none;
    }

    .video-caption {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 96px rgba(0, 0, 0, 0.5);
}

.video-modal-player video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 90vh;
}

@media screen and (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* ============================================================
   PRODUCT CAROUSEL — Dark expanding panels gallery
   Uses sticky scroll so panels cycle slowly as user scrolls.
   The section is tall (300vh) to create scroll runway, while
   the .container pins to the viewport via position: sticky.
   ============================================================ */
.product-carousel-section {
    background: #000000;
    position: relative;
    /* No overflow: hidden — breaks position: sticky */
    /* Extra height creates scroll runway for the sticky panel animation */
    height: 300vh;
}

/* Container becomes sticky — pins to viewport while section scrolls */
.product-carousel-section .container {
    position: sticky;
    top: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

/* Subtle gradient separator from bento section above */
.product-carousel-section::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 30, 199, 0.3) 50%, transparent 100%);
}

.product-carousel-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bold uppercase title with italic pink emphasis */
.carousel-title {
    text-align: center;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 80px;
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    padding: 0;
}

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

/* Subtitle hidden — let images speak */
.carousel-subtitle {
    display: none;
}

/* ---- Expanding Panels Gallery ---- */
.pc-panels {
    display: flex;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.pc-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    min-width: 60px;
    transition: flex 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 4px;
    border-radius: 16px;
}

.pc-panel:first-child {
    margin-left: 0;
}

.pc-panel:last-child {
    margin-right: 0;
}

/* Active panel expands to dominate — ratio ~10:1 gives visible collapsed strips */
.pc-panel.active {
    flex: 10;
}

/* Background image fill — uses --panel-bg CSS variable from inline style */
.pc-panel-bg {
    position: absolute;
    inset: 0;
    background-image: var(--panel-bg);
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-panel:hover .pc-panel-bg {
    transform: scale(1.05);
}

/* Dark gradient overlay for readability */
.pc-panel-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Label container — bottom-left of panel */
.pc-panel-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Collapsed panels: hide label */
.pc-panel:not(.active) .pc-panel-label {
    opacity: 0;
    transform: translateY(8px);
}

/* Active panel: show label — fades in after the panel has mostly expanded */
.pc-panel.active .pc-panel-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Brand icon circle */
.pc-panel-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Text info block */
.pc-panel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pc-panel-info .pc-panel-brand {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.pc-panel-info .pc-panel-platform {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Focus state for keyboard navigation */
.pc-panel:focus-visible {
    outline: 2px solid var(--db-coral-light);
    outline-offset: 2px;
}

/* Responsive: tablet */
@media screen and (max-width: 1024px) {
    .product-carousel-section {
        height: 250vh;
    }

    .pc-panels {
        height: 500px;
    }

    .carousel-title {
        margin-bottom: 60px;
    }
}

/* Responsive: mobile — stack vertically, shorter sticky runway */
@media screen and (max-width: 768px) {
    .product-carousel-section {
        height: 350vh;
    }

    .product-carousel-section .container {
        padding: 80px 20px 60px;
    }

    .carousel-title {
        font-size: clamp(32px, 8vw, 42px);
        margin-bottom: 48px;
    }

    .pc-panels {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
    }

    .pc-panel {
        margin: 3px 0;
        border-radius: 12px;
        height: 80px;
        flex: none;
        transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pc-panel:first-child {
        margin-top: 0;
    }

    .pc-panel:last-child {
        margin-bottom: 0;
    }

    .pc-panel.active {
        height: 360px;
        flex: none;
    }

    .pc-panel-label {
        bottom: 16px;
        left: 16px;
    }

    .pc-panel-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 13px;
    }

    .pc-panel-info .pc-panel-brand {
        font-size: 15px;
    }

    .pc-panel-info .pc-panel-platform {
        font-size: 11px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .pc-panel {
        transition: none;
    }

    .pc-panel-bg {
        transition: none;
    }

    .pc-panel-label {
        transition: none;
    }
}

.fashion-carousel-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f9 100%);
}

.fashion-carousel-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.fashion-carousel-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    padding: 8px 0;
}

.fashion-carousel-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 60px;
}

.fashion-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.fashion-carousel-container {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    min-height: 600px;
    background: #f4f5f9;
}

.fashion-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.fashion-carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fashion-carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    display: block;
}

.fashion-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    padding: 40px 32px 32px;
    font-size: 24px;
    font-weight: 600;
}

.fashion-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: #000;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    outline: none;
    padding: 0;
}

.fashion-carousel-btn:hover {
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%) !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1);
}

.fashion-carousel-btn:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    box-shadow: 0 4px 16px rgba(247, 30, 199, 0.3);
}

.fashion-carousel-btn:active {
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%) !important;
    color: #fff !important;
}

.fashion-carousel-btn:focus:not(:hover) {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
}

.fashion-carousel-btn.fashion-prev {
    left: 24px;
}

.fashion-carousel-btn.fashion-next {
    right: 24px;
}

.fashion-arrow-left,
.fashion-arrow-right {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
}

.fashion-arrow-left {
    transform: rotate(-135deg);
    margin-right: -2px;
}

.fashion-arrow-right {
    transform: rotate(45deg);
    margin-left: -2px;
}

.fashion-carousel-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.fashion-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fashion-carousel-dot.active {
    background: linear-gradient(135deg, #F71EC7 0%, #791AFE 100%);
    width: 32px;
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    .fashion-carousel-section {
        padding: 60px 0;
    }

    .fashion-carousel-title {
        font-size: 36px;
    }

    .fashion-carousel-subtitle {
        font-size: 18px;
    }

    .fashion-carousel-container {
        min-height: 400px;
    }

    .fashion-carousel-slide img {
        height: 400px;
    }

    .fashion-carousel-btn {
        width: 48px;
        height: 48px;
    }

    .fashion-carousel-btn.fashion-prev {
        left: 12px;
    }

    .fashion-carousel-btn.fashion-next {
        right: 12px;
    }

    .fashion-slide-caption {
        font-size: 20px;
        padding: 32px 24px 24px;
    }
}



.lazy-blur {
    filter: blur(10px);
    transition: filter 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.lazy-blur.loaded {
    filter: blur(0);
}


/* Gallery Grid Styles */
#gallery {
    padding: 60px 0;
}

#gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    width: calc(25% - 12px);
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 280px; /* Fixed height to prevent gaps */
    object-fit: cover; /* This ensures images fill the space */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Varied sizes for visual interest */
.gallery-item--large {
    width: calc(50% - 12px);
}

.gallery-item--large img {
    height: 380px; /* Taller for large items */
}

.gallery-item--wide {
    width: calc(50% - 12px);
}

.gallery-item--wide img {
    height: 280px;
}

.gallery-item--tall img {
    height: 450px; /* Extra tall */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-item {
        width: calc(33.333% - 10px);
    }

    .gallery-item--large,
    .gallery-item--wide {
        width: calc(66.666% - 10px);
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-item--large img {
        height: 350px;
    }

    .gallery-item--tall img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 8px);
    }

    .gallery-item--large,
    .gallery-item--wide {
        width: calc(50% - 8px);
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item--large img,
    .gallery-item--tall img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-item,
    .gallery-item--large,
    .gallery-item--wide {
        width: 100%;
        margin-bottom: 10px;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

/* Lazy loading styles */
.gallery-item {
    background: #e0e0e0; /* Placeholder color */
    position: relative;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Optional: Add a loading spinner */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.gallery-item.loaded::before {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add a placeholder background while loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    background: #e0e0e0;
    min-height: 280px; /* Match your image height */
}

.lazy-image.loaded {
    opacity: 1;
    background: transparent;
}

/* Footer Brand Statement — Full-width massive text */
.footer-brand-statement {
    background: #000000;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.footer-brand-statement-text {
    font-size: clamp(80px, 13vw, 240px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #1a1a1a;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}

@media screen and (max-width: 768px) {
    .footer-brand-statement {
        padding: 2rem 1rem;
    }
    .footer-brand-statement-text {
        font-size: clamp(48px, 18vw, 120px);
    }
}

/* Footer Social Icons - Remove empty space on left and right */
ul.footer-social-icons {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
}

footer .row-footer .large-4.medium-8.columns {
    padding: 0 !important;
}

footer ul.footer-social-icons li {
    margin-right: 8px !important;
}

footer ul.footer-social-icons li a {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile Header - Remove empty space on left and right */
@media screen and (max-width: 1024px) {
    .tab-bar.hide-for-large-up {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }
}

/* ============================================================
   LANGUAGE MODAL - Modern Redesign
   ============================================================ */

/* Modal Backdrop */
.reveal-modal-bg {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Modal Container */
#changelanguage.reveal-modal {
    background: #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
    max-width: 600px !important;
    width: 90% !important;
    margin: 0 auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    overflow: hidden !important;
    border: none !important;
}

/* Modal Header */
#changelanguage.reveal-modal::before {
    content: 'Select Language' !important;
    display: block !important;
    font-family: 'Poppins', 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    padding: 24px 24px 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%) !important;
}

/* Close Button */
#changelanguage .close-x-btn {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    color: #666 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    line-height: 1 !important;
}

#changelanguage .close-x-btn:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    transform: rotate(90deg) !important;
}

/* Remove br tag spacing */
#changelanguage br {
    display: none !important;
}

/* Content Container */
#changelanguage .flex-video {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

#changelanguage .flex-video.widescreen2 {
    padding-bottom: 0 !important;
}

#changelanguage .submit-container-button.changelang {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 20px 24px 28px !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
}

/* Column Reset */
#changelanguage .medium-6.columns {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

#changelanguage .medium-6.columns ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

/* Language Item */
#changelanguage .changelang li {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}

#changelanguage .changelang li:hover {
    background: rgba(93, 95, 239, 0.08) !important;
}

/* Language Link */
#changelanguage .changelang a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 6px 16px !important;
    color: #333 !important;
    font-family: 'Inter', 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
}

#changelanguage .changelang a:hover {
    color: #5d5fef !important;
    transform: translateX(4px) !important;
}

/* Flag Icon */
#changelanguage .flag-icon {
    width: 24px !important;
    height: 18px !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
    flex-shrink: 0 !important;
}

/* Scrollbar Styling */
#changelanguage .submit-container-button.changelang::-webkit-scrollbar {
    width: 6px !important;
}

#changelanguage .submit-container-button.changelang::-webkit-scrollbar-track {
    background: transparent !important;
}

#changelanguage .submit-container-button.changelang::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 3px !important;
}

#changelanguage .submit-container-button.changelang::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25) !important;
}

/* Mobile Responsive */
@media screen and (max-width: 640px) {
    #changelanguage.reveal-modal {
        width: 95% !important;
        max-width: none !important;
        border-radius: 20px !important;
        top: auto !important;
        bottom: 0 !important;
        transform: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        max-height: 85vh !important;
    }

    #changelanguage .submit-container-button.changelang {
        grid-template-columns: 1fr !important;
        max-height: 65vh !important;
        padding: 16px 20px 24px !important;
    }

    #changelanguage.reveal-modal::before {
        font-size: 18px !important;
        padding: 20px 20px 14px !important;
    }

    #changelanguage .changelang a {
        padding: 6px 16px !important;
    }
}

/* ============================================================
   HERO CAROUSEL - Full-width image carousel with text overlay
   ============================================================ */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 96vh;
    max-height: 1080px;
    overflow: hidden;
    background: var(--db-black);
}

.hero-carousel-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.7s var(--ease-out-expo);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.hero-carousel-track.is-dragging {
    transition: none;
    cursor: grabbing;
}

.hero-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 8s linear;
}

/* Subtle Ken Burns zoom on active slide */
.hero-carousel-slide.active img {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel-slide img,
    .hero-carousel-slide.active img {
        transition: none;
        transform: none;
    }
}

/* Gradient overlay for text readability */
.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%),
        linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 5;
    display: flex;
    align-items: center;
    /* Account for floating glassmorphic navbar (14px top + 60px height + 14px gap) */
    padding-top: 88px;
    pointer-events: none;
}

.hero-carousel-content {
    max-width: 600px;
    /* Align left edge with the navbar container */
    padding: 0 40px;
    margin-left: max(80px, calc((100vw - 1400px) / 2));
    pointer-events: auto;
}

.hero-carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-carousel-badge::before {
    content: '\2728';
    font-size: 14px;
}

.hero-carousel-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff !important;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.hero-carousel-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px;
    max-width: 520px;
}

.hero-carousel-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-carousel-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--db-coral);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s var(--spring-smooth);
    box-shadow: 0 8px 24px var(--db-coral-glow);
}

.hero-carousel-btn-primary:hover {
    background: var(--db-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--db-coral-glow);
    color: #fff;
    text-decoration: none;
}

.hero-carousel-btn-primary:active {
    transform: scale(0.98);
    transition-duration: 100ms;
}

.hero-carousel-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s var(--spring-smooth);
}

.hero-carousel-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-carousel-btn-secondary:active {
    transform: scale(0.98);
    transition-duration: 100ms;
}

/* Focus states for accessibility */
.hero-carousel-btn-primary:focus-visible,
.hero-carousel-btn-secondary:focus-visible {
    outline: 2px solid var(--db-coral-light);
    outline-offset: 2px;
}

/* Navigation Controls */
.hero-carousel-controls {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.hero-carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

.hero-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #fff !important;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.25s var(--spring-smooth);
    opacity: 0.7;
}

.hero-carousel-arrow svg {
    color: #fff !important;
    stroke: #fff !important;
}

.hero-carousel-section:hover .hero-carousel-arrow {
    opacity: 1;
}

.hero-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    color: #fff !important;
}

.hero-carousel-arrow:active,
.hero-carousel-arrow:focus {
    transform: scale(0.95);
    transition-duration: 100ms;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.hero-carousel-arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    opacity: 1;
    color: #fff !important;
}

/* Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    pointer-events: auto;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-carousel-dot.active {
    background: #fff;
    transform: scale(1.15);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hero-carousel-section {
        height: 80vh;
        max-height: 800px;
    }

    .hero-carousel-content {
        padding: 0 40px;
        margin-left: 40px;
    }

    .hero-carousel-overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.15) 100%),
            linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
    }

    .hero-carousel-arrow {
        opacity: 1;
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 768px) {
    .hero-carousel-section {
        height: 75vh;
        max-height: 650px;
    }

    .hero-carousel-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.8) 100%);
        align-items: flex-end;
    }

    .hero-carousel-content {
        padding: 0 24px 100px;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-carousel-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-carousel-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-carousel-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-carousel-btn-primary,
    .hero-carousel-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-carousel-arrows {
        padding: 0 12px;
    }

    .hero-carousel-arrow {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        opacity: 0.7;
    }

    .hero-carousel-dots {
        bottom: 16px;
    }

    .hero-carousel-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
}
