.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hero-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #f97316;
    border: 2px solid #f97316;
}

.hero-btn-secondary:hover {
    background: #fff7ed;
}

.badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #fed7aa 0%, #fcd34d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 0.85rem;
    font-weight: bold;
}

.how-it-works {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid #f0f0f0;
}

.how-it-works h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

.how-it-works-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #f97316;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a3a6b;
}

.feature-card .orange-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #f97316;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
}

.feature-list li strong {
    color: #f97316;
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
    color: #f97316;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 5rem;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.4);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f97316;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    line-height: 1.8;
    color: #f97316;
}

.cta-btn {
    background: #f97316;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.cta-btn:hover {
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    background: #ea580c;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .how-it-works {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.75rem;
    }
}
