/* ── Page section ──────────────────────────────────────────────────────────── */
.biz-form-section {
    padding: 60px 0 80px;
}

/* ── 3-area layout: top-left / right (spans 2 rows) / bottom-left ─────────── */
.biz-form-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 992px) {
    .biz-form-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 32px 40px;
    }

    .biz-fl-top    { grid-column: 1; grid-row: 1; }
    .biz-fl-right  { grid-column: 2; grid-row: 1 / 3; }
    .biz-fl-bottom { grid-column: 1; grid-row: 2; }
}

/* ── Left column ───────────────────────────────────────────────────────────── */
.biz-form-title {
    font-size: clamp(28px, 4vw, 44px);
    color: #252525;
    line-height: 1.18;
    margin-bottom: 20px;
}

.biz-form-discuss-label {
    color: #3D5A97;
    font-size: 18px;
}

.biz-form-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.biz-form-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.biz-step-num {
    color: #3D5A97;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1;
    min-width: 52px;
    flex-shrink: 0;
    padding-top: 2px;
}

.biz-step-title {
    font-size: 16px;
    color: #252525;
    margin-bottom: 4px;
}

/* ── Right column — form card ──────────────────────────────────────────────── */
.biz-form-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    /* box-shadow: 0px 4px 24px 0px #0000000F; */
    padding: 36px 32px;
}

@media (max-width: 575px) {
    .biz-form-card {
        padding: 24px 18px;
    }
}

/* ── Form controls — same theme as join-our-network.html ───────────────────── */
.biz-label {
    font-size: 14px;
    font-weight: 600;
    color: #3D5A97;
    margin-bottom: 6px;
}

.biz-input {
    border: 1px solid #D1D9E6;
    border-radius: 8px;
    font-size: 14px;
    color: #252525;
    /* background: #FAFBFD; */
    padding: 10px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.biz-input::placeholder {
    color: #A0AEC0;
}

.biz-input:focus {
    border-color: #3D5A97;
    box-shadow: 0 0 0 3px rgba(61, 90, 151, 0.12);
    background: #fff;
    outline: none;
}

select.biz-input {
    color: #252525;
}

select.biz-input option[value=""] {
    color: #A0AEC0;
}

textarea.biz-input {
    resize: vertical;
}

/* ── Submit button ─────────────────────────────────────────────────────────── */
.btn-submit {
    background: #4975BF;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 36px;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 4px 4px 0px #FFFFFF40 inset;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-submit:hover {
    background: #2f4a82;
    color: #fff;
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 575px) {
    .btn-submit {
        width: 100%;
    }

    .d-flex.align-items-end {
        align-items: stretch !important;
    }
}

/* ── Thank You view ────────────────────────────────────────────────────────── */
.biz-ty-section {
    padding: 80px 0 100px;
}

.biz-ty-card {
    background: #fff;
    /* border: 1px solid #E2E8F0; */
    box-shadow: 2.5px 2.5px 15px 0px #0000001A;
    backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 0px 4px 32px 0px #0000000D;
    padding: 56px 48px;
    text-align: center;
}

@media (max-width: 575px) {
    .biz-ty-card {
        padding: 40px 24px;
    }
}

.biz-ty-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-ty-title {
    font-size: clamp(28px, 4vw, 40px);
    color: #252525;
    line-height: 1.15;
}

.biz-ty-sub {
    font-size: 16px;
    color: #252525;
}

.biz-ty-desc {
    font-size: 15px;
    /* color: #5A6677; */
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.biz-ty-btn {
    background: #4975BF;
    color: #fff;
    box-shadow: 0px 4px 4px 0px #FFFFFF40 inset;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 14px;
    border: none;
    transition: background 0.2s;
}

.biz-ty-btn:hover {
    background: #2f4a82;
    color: #fff;
}
