/* --- HERO SECTION --- */
.hero-section {
    padding: 120px 0 80px 0;
    background: radial-gradient(circle at top right, #f0fdf4, #ffffff);
}

.badge-new {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0a1128;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-gradient {
    color: #2ecc71; 
}

.hero-subtitle {
    color: #64748b;
    margin: 30px auto;
    max-width: 650px;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Centering the CTA Button */
.hero-cta-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-create {
    background-color: #0a1128;
    color: white;
    padding: 22px 45px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(10, 17, 40, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-create:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(10, 17, 40, 0.4);
    background-color: #1a202c;
}

.cta-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 100px 0;
    background: #fff;
}

.section-header { margin-bottom: 60px; }
.section-title { font-size: 2.5rem; color: #0a1128; font-weight: 800; }
.section-subtitle { color: #64748b; font-size: 1.1rem; margin-top: 10px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #2ecc71;
    transform: translateY(-5px);
}

.f-icon {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #0a1128;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}



/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.faq-item h4 {
    color: #0a1128;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}