/* ================================================================
   CTA Form section
   ================================================================ */
.cta-section {
    padding-block: 120px 120px;
}

/* ---- Two-column grid ---- */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ================================================================
   Left column
   ================================================================ */
.cta-left__title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 38px;
    margin-bottom: 20px;
}

.cta-left__subtitle {
    font-size: 14px;
    color: #5A5A5A;
    line-height: 22px;
    margin-bottom: 40px;
}

/* ---- Feature list ---- */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.cta-feature {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}

.cta-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #0F51320D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-feature__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ================================================================
   Right column — form card
   ================================================================ */
.cta-card {
    background: var(--color-white);
    border: 1px solid #1A1A1A;
    padding: 20px;
    box-shadow: 0px 1px 2px -1px #0000001A, 0px 1px 3px 0px #0000001A;
}

.cta-card__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.cta-card__desc {
    font-size: 14px;
    color: #5A5A5A;
    line-height: 1.6;
    margin-bottom: 26px;
}

.cta-form .form-label {
    color: var(--color-text-primary);
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-card__title {
        font-size: 22px;
    }

    .cta-feature__title {
        font-weight: 400;
    }
}

@media (max-width: 768px) {
    .cta-section { padding-block: 60px 60px; background-color: var(--color-white); }

    .cta-card {
        padding: 10px;
    }

    .cta-form .request-form__grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .cta-form .form-label {
        text-transform: none;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
    }
}
