/* Landing Page Styles */

/* Hero */
.hero {
    position: relative;
    height: 600px;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
/*    left: -50%;*/
    width: 100%;
    height: 100%;
/*    background: radial-gradient(circle at 30% 40%, var(--primary-light) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(253, 203, 110, 0.1) 0%, transparent 50%);*/
    z-index: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: radial-gradient(circle, black 60%, var(--bg-hero) 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, var(--bg-hero) 100%);
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 0;
    max-width: 720px;
    margin: 5%;
    text-align: left;
/*    z-index: 1;*/
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
/*    background: linear-gradient(135deg, #fff, #ffe493);*/
background: linear-gradient(90deg, #fcff9e, #e6aa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-alt);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 16px var(--shadow-hover);
    transform: translateY(-3px);
}

.feature-card svg {
    margin-bottom: 16px;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-alt);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content {
/*        margin: 10% 5%;*/
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
