@charset "utf-8";
/* CSS Document */
.bt-form-section {
    background:
        radial-gradient(circle at top left, rgba(40,99,39,.08), transparent 34%),
        linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}

.bt-summary {
    top: 100px;
    background: #ffffff;
    border: 1px solid #dce5e8;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(0, 70, 81, 0.10);
}

.bt-summary-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #edf2f3;
}

.bt-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bt-step-counter {
    display: inline-flex;
    align-items: center;
    background: #004651;
    color: #ffffff;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.bt-summary-title {
    color: #004651;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.bt-summary-block {
    margin-bottom: 22px;
}

.bt-summary-block:last-child {
    margin-bottom: 0;
}

.bt-summary-block h4 {
    font-size: 13px;
    font-weight: 800;
    color: #286327;
    margin-bottom: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bt-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bt-summary-list li {
    font-size: 15px;
    line-height: 1.45;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f3;
}

.bt-summary-list li:last-child {
    border-bottom: 0;
}

.bt-summary-list strong {
    display: block;
    color: #1f1f1f;
    font-weight: 800;
}

.bt-summary-list span {
    display: block;
    color: #5f6f73;
    margin-top: 3px;
}

.bt-form-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dce5e8;
    border-radius: 28px;
    padding: 52px;
    box-shadow: 0 18px 50px rgba(0, 70, 81, 0.10);
    overflow: hidden;
}

.bt-form-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(40,99,39,.08);
    border-radius: 50%;
}

.bt-step {
    display: none;
    position: relative;
    z-index: 2;
}

.bt-step.active {
    display: block;
}

.bt-step-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #286327;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bt-step h2 {
    color: #004651;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.bt-help {
    color: #65787d;
    margin-top: -14px;
    margin-bottom: 26px;
}

.bt-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bt-options label {
    cursor: pointer;
    margin: 0;
}

.bt-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bt-options span {
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 18px 20px;
    border: 1px solid #dce5e8;
    border-radius: 16px;
    background: #ffffff;
    color: #1f1f1f;
    font-weight: 700;
    transition: all .2s ease;
}

.bt-options span:hover {
    border-color: #004651;
    background: #f4f8f8;
    transform: translateY(-1px);
}

.bt-options input:checked + span {
    border-color: #004651;
    background: #004651;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0,70,81,.18);
}

.bt-extra-field .form-control,
.bt-form-card .form-control {
    border: 1px solid #dce5e8;
    border-radius: 14px;
    min-height: 54px;
    padding: 12px 16px;
}

.bt-form-card textarea.form-control {
    min-height: 120px;
}

.bt-form-card .form-label {
    font-weight: 700;
    color: #1f1f1f;
}

.bt-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.bt-privacy input {
    margin-top: 4px;
}

.bt-form-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #edf2f3;
    padding-top: 24px;
}

.bt-form-nav .btn {
    min-width: 140px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
}

.bt-main-btn {
    background: #004651;
    border: 1px solid #004651;
    color: #fff;
}

.bt-main-btn:hover {
    background: #003740;
    border-color: #003740;
    color: #fff;
}

.bt-final-summary {
    background: #f7faf9;
    border: 1px solid #dce5e8;
    border-radius: 18px;
    padding: 24px;
}

.bt-error {
    border-color: #c0392b !important;
}

.bt-error-message {
    color: #c0392b;
    font-size: 14px;
    margin-top: 18px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 991px) {
    .bt-summary {
        position: static;
        margin-top: 20px;
        padding: 20px;
    }

    .bt-form-card {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .bt-options {
        grid-template-columns: 1fr;
    }

    .bt-form-nav {
        flex-direction: column-reverse;
    }

    .bt-form-nav .btn {
        width: 100%;
    }
}