/* --- Products section --- */

.products-section {
    padding: 80px 0 90px;
    background-color: #f5f8fc; /* light grey-blue like Kashat */
}

.products-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.products-eyebrow {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f2a900; /* same yellow as hero eyebrow */
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.products-title {
    font-size: 2.4rem;
    line-height: 1.15;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
}

.products-text {
    font-size: 1rem;
    color: #6b7280;
    max-width: 520px;
}

/* large rounded white card */

.products-card {
    margin-top: 20px;
}

.products-card-inner {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 32px 36px 32px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.06);
    max-width: 820px;
}

.products-card-title {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #081f4d;
    margin-bottom: 0.6rem;
}

.products-card-sub {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 24px;
}

/* logos row */

.products-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
}

.products-logos img {
    height: 32px;
    object-fit: contain;
}

/* CTA button */

.products-cta {
    margin-top: 8px;
}

.btn-get-loan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 12px 26px;
    border-radius: 999px;
    background-color: #f2a900;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(242, 169, 0, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-get-loan:hover {
    background-color: #e09b00;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(242, 169, 0, 0.55);
}

.btn-arrow {
    font-size: 1.3rem;
}

/* responsive */

@media (max-width: 767.98px) {
    .products-section {
        padding: 60px 0 70px;
    }

    .products-card-inner {
        padding: 24px 22px;
    }

    .products-title {
        font-size: 2rem;
    }

    .products-logos {
        gap: 12px;
    }

    .products-logos img {
        height: 26px;
    }
}
