/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(118, 75, 162, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(102, 126, 234, 0.1), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .gradient-highlight {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.35rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

.gradient-text {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary-glow {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.35);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(59, 130, 246, 0.45);
    background: var(--primary-dark);
}

.btn-secondary-outline {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    background: #f8fafc;
}

/* Stats Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem;
    border-radius: 24px;
    background: white;
    border: 1px solid #0080ff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    /* border-color: rgba(102, 126, 234, 0.3); */
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.icon-purple {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    position: relative;
    margin: 4rem 2rem;
    border-radius: 3rem;
    overflow: hidden;
    text-align: center;
    background: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .cta-section {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
        border-radius: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-white {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}