/* Landing Page Styles - Premium Aesthetics */
:root {
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
}

.landing-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.png') center/cover no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 80%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 40px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.landing-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.landing-hero h1 span {
    color: var(--accent);
    display: block;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #999;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section Styling */
.landing-section {
    padding: 100px 5%;
    background: var(--bg-dark);
}

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

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(20, 20, 20, 0.8);
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #888;
    line-height: 1.6;
}

/* Tools Section (Image + Text) */
.tools-showcase {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.tools-text {
    flex: 1;
}

.tools-image {
    flex: 1;
    position: relative;
}

.tools-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Stats Section */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: rgba(139, 92, 246, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), #101010);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 30px;
}

.cta-box h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .tools-showcase {
        flex-direction: column;
        gap: 40px;
    }

    .landing-hero h1 {
        font-size: 3.5rem;
    }
}