.book-call-shell {
    background:
        linear-gradient(180deg, rgba(244, 248, 251, 0.94), rgba(255, 255, 255, 0.98)),
        radial-gradient(900px 420px at 12% 0%, rgba(98, 181, 225, 0.18), transparent 58%);
    min-height: 72vh;
    padding: clamp(56px, 8vw, 96px) 20px;
}

.book-call-wrap {
    width: min(1060px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.book-call-kicker {
    margin: 0 0 14px;
    color: #0090a7;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.book-call-title {
    margin: 0 0 18px;
    color: #0d3068;
    font-family: "Lora", Georgia, serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

.book-call-lede {
    margin: 0;
    max-width: 620px;
    color: #405261;
    font-size: 18px;
    line-height: 1.68;
}

.book-call-steps {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.book-call-steps li {
    display: flex;
    gap: 12px;
    color: #405261;
    font-size: 15px;
    line-height: 1.55;
}

.book-call-steps span {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d3068;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.book-call-panel {
    background: #fff;
    border: 1px solid rgba(13, 48, 104, 0.10);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(13, 48, 104, 0.12);
    padding: clamp(24px, 4vw, 36px);
}

.book-call-form {
    display: grid;
    gap: 18px;
}

.book-call-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.book-call-field {
    display: grid;
    gap: 7px;
    position: relative;
}

.book-call-field--wide {
    grid-column: 1 / -1;
}

.book-call-field label {
    color: #14324c;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.book-call-field input,
.book-call-field select,
.book-call-field textarea {
    width: 100%;
    border: 1px solid rgba(13, 48, 104, 0.18);
    border-radius: 8px;
    background: #fff;
    color: #102b3c;
    font: 15px/1.45 "Inter", system-ui, sans-serif;
    padding: 12px 13px;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.book-call-field textarea {
    min-height: 118px;
    resize: vertical;
}

.book-call-field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #0d3068 50%),
        linear-gradient(135deg, #0d3068 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.book-call-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.book-call-select {
    position: relative;
    width: 100%;
    font-family: "Inter", system-ui, sans-serif;
}

.book-call-select-button {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(13, 48, 104, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbfd);
    color: #102b3c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font: 15px/1.45 "Inter", system-ui, sans-serif;
    padding: 12px 13px;
    text-align: left;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.book-call-select-button:hover {
    border-color: rgba(0, 144, 167, 0.44);
    background: #fff;
}

.book-call-select-button:focus {
    outline: none;
    border-color: #0090a7;
    box-shadow: 0 0 0 4px rgba(0, 144, 167, 0.12);
}

.book-call-select[data-open="true"] .book-call-select-button {
    border-color: #0090a7;
    box-shadow: 0 0 0 4px rgba(0, 144, 167, 0.12);
}

.book-call-select-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.book-call-select-icon {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(13, 48, 104, 0.08);
}

.book-call-select-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 47%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #0d3068;
    border-bottom: 2px solid #0d3068;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.16s ease;
}

.book-call-select[data-open="true"] .book-call-select-icon::before {
    transform: translate(-50%, -32%) rotate(225deg);
}

.book-call-select-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(320px, 48vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(13, 48, 104, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(13, 48, 104, 0.18);
    padding: 6px;
}

.book-call-select-menu[hidden] {
    display: none;
}

.book-call-select-option {
    position: relative;
    border-radius: 6px;
    color: #24384a;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.35;
    padding: 10px 12px 10px 32px;
    transition: background 0.14s ease, color 0.14s ease;
}

.book-call-select-option::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(13, 48, 104, 0.20);
    transform: translateY(-50%);
}

.book-call-select-option:hover,
.book-call-select-option:focus {
    outline: none;
    background: rgba(0, 144, 167, 0.08);
    color: #0d3068;
}

.book-call-select-option[aria-selected="true"] {
    background: linear-gradient(135deg, rgba(13, 48, 104, 0.10), rgba(0, 144, 167, 0.10));
    color: #0d3068;
    font-weight: 700;
}

.book-call-select-option[aria-selected="true"]::before {
    border-color: #0090a7;
    background: #0090a7;
    box-shadow: inset 0 0 0 2px #fff;
}

.book-call-field input:focus,
.book-call-field select:focus,
.book-call-field textarea:focus {
    outline: none;
    border-color: #0090a7;
    box-shadow: 0 0 0 4px rgba(0, 144, 167, 0.12);
}

.book-call-error,
.book-call-errors {
    color: #a12b3f;
    font-size: 13px;
    line-height: 1.5;
}

.book-call-errors {
    border: 1px solid rgba(161, 43, 63, 0.18);
    background: rgba(161, 43, 63, 0.06);
    border-radius: 8px;
    padding: 12px 14px;
}

.book-call-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.book-call-note {
    margin: 0;
    color: #5d6b75;
    font-size: 13px;
    line-height: 1.6;
}

.book-call-note a {
    color: #0d3068;
    font-weight: 700;
}

.book-call-submit {
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #0d3068, #0090a7);
    color: #fff;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    padding: 14px 18px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    box-shadow: 0 16px 34px rgba(13, 48, 104, 0.20);
}

.book-call-submit:hover,
.book-call-submit:focus {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(13, 48, 104, 0.24);
}

@media (max-width: 860px) {
    .book-call-wrap,
    .book-call-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .book-call-shell {
        padding: 36px 14px 56px;
    }

    .book-call-panel {
        padding: 20px;
    }

    .book-call-title {
        font-size: 34px;
    }
}
