/* ==========================================
   GLOBAL STYLES & VARIABLES
   ========================================== */

body {
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
    3. Hero Section
    ========================================================================== */
.hero {
    padding: 60px 20px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 5.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--primary-red);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-red {
    background-color: var(--primary-red);
    color: #ffffff;
}

.btn-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-navy {
    background-color: var(--navy-dark);
    color: #ffffff;
}

.btn-navy:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--green-check);
    background: #dcfce7;
    padding: 4px;
    border-radius: 50%;
    font-size: 0.85rem;
}

/* ==========================================================================
    4. Quick Stats Cards
    ========================================================================== */
.quick-stats {
    padding: 40px 20px 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 74px;
    height: 74px;
    background: #fef2f2;
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
}

.stat-icon .fa-regular {
    font-weight: 700;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.stat-value i {
    color: var(--navy-dark);
    font-size: 1.8rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
    5. Why Choose Section & Asymmetric Grid
    ========================================================================== */
.why-choose {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bento-card {
    padding: 28px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.bento-card:hover {
    transform: scale(1.02);
}

.bento-card.light {
    background: var(--bg-light);
}

.bento-card.red {
    background: var(--primary-red);
    color: #ffffff;
}

.bento-card.navy {
    background: var(--navy-dark);
    color: #ffffff;
}

.bento-card .bento-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.bento-card .bento-text {
    font-size: 0.9rem;
    margin-top: 4px;
    font-weight: 500;
}

.bento-card.light .bento-text {
    color: var(--text-muted);
}

.bento-card.red .bento-text,
.bento-card.navy .bento-text {
    opacity: 0.9;
}

.why-choose-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-choose-content .sub-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.feature-list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-list-item .icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-red);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-list-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.feature-list-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
    6. How It Works Section
    ========================================================================== */
.how-it-works {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 42px;
    height: 42px;
    background: var(--primary-red);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
    7. Testimonials Section
    ========================================================================== */
.testimonials {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: #e7e7e7;
}

.testimonial-card:hover .testimonial-quote {
    font-weight: 500;
}

.stars {
    color: var(--star-color);
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    color: var(--navy-dark);
    font-size: 0.98rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.author-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.author-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
    8. Bottom CTA Banner
    ========================================================================== */
.cta-banner {
    background: var(--navy-dark);
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .stats-grid, .steps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .why-choose-content h2 {
        font-size: 1.7rem;
    }
}
