/* Home (Landing Page) Specific Styles */

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(26, 115, 232, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow-x: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: white;
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-radius: 60px;
    overflow-x: hidden;
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(26, 115, 232, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    .cta-box {
        padding: 40px;
    }
    .cta-box h2 {
        font-size: 32px;
    }
}

