/* ========================
   NEW CUSTOMER PAGE
   ======================== */

.c-new-customer {
    background-color: #eaf4e5;
}

/* Hero */
.c-new-customer__hero {
    background:
        linear-gradient(rgba(38, 72, 34, 0.72), rgba(38, 72, 34, 0.72)),
        url('https://cdn.fbhl.dev/servicing/images/Top-USDA-Lender-BG.png');
    background-size: cover;
    background-position: center;
    padding: var(--space-2xl) var(--space-s);
    text-align: center;
}

.c-new-customer__title {
    font-size: var(--step-4);
    font-weight: 900;
    color: var(--white);
    margin: 0 0 var(--space-s);
}

.c-new-customer__subtitle {
    font-size: var(--step-0);
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin: 0 auto var(--space-m);
    line-height: 1.7;
}

.c-new-customer__hero-btn {
    display: inline-block;
}

/* Features section */
.c-new-customer__features {
    padding: var(--space-2xl) var(--space-s);
}

.c-new-customer__section-title {
    font-size: var(--step-2);
    font-weight: 800;
    color: var(--pine);
    text-align: center;
    margin: 0 0 var(--space-l);
}

.c-new-customer__feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-m);
}

.c-new-customer__feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: var(--space-m);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .c-new-customer__feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
}

.c-new-customer__feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #edf4eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-s);
    color: var(--corporategreen);
}

.c-new-customer__feature-icon svg {
    width: 24px;
    height: 24px;
}

.c-new-customer__feature-title {
    font-size: var(--step-0);
    font-weight: 700;
    color: var(--pine);
    margin: 0 0 var(--space-3xs);
}

.c-new-customer__feature-text {
    font-size: var(--step--1);
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Register CTA */
.c-new-customer__register {
    padding: var(--space-2xl) var(--space-s);
    background-color: var(--frost);
}

.c-new-customer__register-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.c-new-customer__register-title {
    font-size: var(--step-2);
    font-weight: 800;
    color: var(--pine);
    margin: 0 0 var(--space-m);
}

.c-new-customer__register-text {
    font-size: var(--step-0);
    margin: 0 0 var(--space-s);
    line-height: 1.7;
}

.c-new-customer__register-btn {
    display: inline-block;
    margin-top: var(--space-s);
}

/* Responsive */
@media (max-width: 900px) {
    .c-new-customer__feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .c-new-customer__feature-grid {
        grid-template-columns: 1fr;
    }

    .c-new-customer__title {
        font-size: var(--step-3);
    }
}