/* Hero Section - Full Screen */
.hero-lux {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-lux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-lux {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 24px;
}

.hero-title-lux {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle-lux {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #94a3b8;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero-buttons-lux {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Features Section - Masonry */
.features-lux {
    padding: 80px 0;
    background: #0f172a;
}

.masonry-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 10px;
}

.card-lux {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card-lux:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.card-lux:nth-child(1) { grid-row: span 18; }
.card-lux:nth-child(2) { grid-row: span 14; }
.card-lux:nth-child(3) { grid-row: span 16; }

.card-icon-lux {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-lux img {
    width: 28px;
}

.card-lux h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.card-lux p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Security Section */
.secure-lux {
    padding: 80px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.secure-content-lux {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.secure-content-lux h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.secure-content-lux > p {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.badge-lux {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: #f59e0b;
}

.badge-lux img {
    width: 20px;
}

.badge-container-lux {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Use Cases - Horizontal Scroll */
.cases-lux {
    padding: 80px 0;
    background: #0f172a;
}

.case-scroll-lux {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #f59e0b #1e293b;
}

.case-scroll-lux::-webkit-scrollbar {
    height: 6px;
}

.case-scroll-lux::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 3px;
}

.case-scroll-lux::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 3px;
}

.case-card-lux {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.case-card-lux:hover {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.case-icon-lux {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.case-icon-lux img {
    width: 26px;
}

.case-card-lux h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.case-card-lux p {
    color: #64748b;
    font-size: 0.85rem;
}

/* CTA Section */
.cta-lux {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    text-align: center;
    position: relative;
}

.cta-lux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-lux {
    position: relative;
    z-index: 1;
}

.cta-content-lux h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.cta-content-lux p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-lux {
        font-size: 2.2rem;
    }

    .hero-subtitle-lux {
        font-size: 1rem;
    }

    .masonry-lux {
        grid-template-columns: 1fr;
        grid-auto-rows: 10px;
    }

    .card-lux:nth-child(1),
    .card-lux:nth-child(2),
    .card-lux:nth-child(3) {
        grid-row: span 1;
    }

    .card-lux {
        padding: 1.5rem;
    }

    .case-card-lux {
        flex: 0 0 240px;
    }
}

@media (max-width: 480px) {
    .hero-title-lux {
        font-size: 1.8rem;
    }

    .case-card-lux {
        flex: 0 0 200px;
        padding: 1.5rem;
    }
}
