.wbc-sp,
.wbc-sp * {
    box-sizing: border-box;
}

.wbc-sp {
    --wbc-ink: #111820;
    --wbc-ink-soft: #26313a;
    --wbc-paper: #ffffff;
    --wbc-mist: #f3f5f6;
    --wbc-line: #dfe3e6;
    --wbc-muted: #68737b;
    --wbc-accent-soft: #fff2df;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    color: var(--wbc-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    isolation: isolate;
}

.wbc-sp button,
.wbc-sp input,
.wbc-sp select,
.wbc-sp textarea {
    font: inherit;
}

.wbc-sp__hero {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: clamp(34px, 6vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 82% 22%, rgba(251, 156, 28, .27), transparent 25%),
        linear-gradient(135deg, #0a0f13 0%, #151d24 62%, #202a31 100%);
    border-radius: 20px 20px 0 0;
}

.wbc-sp__hero::after {
    content: "";
    position: absolute;
    right: -5%;
    bottom: -72%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 92px rgba(255, 255, 255, .02);
    pointer-events: none;
}

.wbc-sp__eyebrow,
.wbc-sp__kicker {
    color: var(--wbc-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wbc-sp__hero h2 {
    max-width: 760px;
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.wbc-sp__hero > p {
    max-width: 720px;
    margin: 0;
    color: #c9d0d5;
    font-size: clamp(15px, 1.7vw, 19px);
}

.wbc-sp__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 30px;
    color: #f4f6f7;
    font-size: 13px;
    font-weight: 650;
}

.wbc-sp__trust-row span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--wbc-accent);
}

.wbc-sp__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 clamp(16px, 4vw, 54px);
    background: var(--wbc-ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.wbc-sp__steps button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 70px;
    padding: 10px;
    color: #939da4;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    cursor: default;
}

.wbc-sp__steps button span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid #56616a;
    border-radius: 50%;
    font-size: 11px;
}

.wbc-sp__steps button b {
    font-size: 12px;
    letter-spacing: .02em;
}

.wbc-sp__steps button.is-active,
.wbc-sp__steps button.is-complete {
    color: #fff;
}

.wbc-sp__steps button.is-active {
    border-bottom-color: var(--wbc-accent);
}

.wbc-sp__steps button.is-active span,
.wbc-sp__steps button.is-complete span {
    color: #10151a;
    background: var(--wbc-accent);
    border-color: var(--wbc-accent);
}

.wbc-sp__form {
    background: var(--wbc-paper);
    border: 1px solid var(--wbc-line);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 24px 60px rgba(18, 27, 34, .1);
}

.wbc-sp__panel {
    padding: clamp(26px, 5vw, 64px);
    animation: wbc-sp-in .35s ease both;
}

@keyframes wbc-sp-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.wbc-sp__panel-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.wbc-sp__panel-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
}

.wbc-sp__panel-heading h3 {
    margin: 5px 0 7px;
    color: var(--wbc-ink);
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -.035em;
    line-height: 1.12;
}

.wbc-sp__panel-heading p {
    margin: 0;
    color: var(--wbc-muted);
    font-size: 16px;
}

.wbc-sp__choice-grid {
    display: grid;
    gap: 18px;
}

.wbc-sp__choice-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wbc-sp__choice {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 3px 15px;
    min-height: 146px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--wbc-line);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wbc-sp__choice:hover {
    transform: translateY(-2px);
    border-color: #b8c0c5;
    box-shadow: 0 12px 30px rgba(25, 34, 42, .08);
}

.wbc-sp__choice.is-selected {
    border-color: var(--wbc-accent);
    box-shadow: 0 0 0 2px var(--wbc-accent), 0 14px 35px rgba(251, 156, 28, .14);
}

.wbc-sp__choice input {
    position: absolute;
    opacity: 0;
}

.wbc-sp__choice-icon {
    display: grid;
    grid-row: span 2;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--wbc-accent);
    background: var(--wbc-accent-soft);
    border-radius: 12px;
    font-size: 27px;
}

.wbc-sp__choice strong {
    align-self: end;
    color: var(--wbc-ink);
    font-size: 18px;
}

.wbc-sp__choice small {
    color: var(--wbc-muted);
    font-size: 13px;
}

.wbc-sp__section-label {
    margin: 38px 0 14px;
    color: var(--wbc-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wbc-sp__fields {
    display: grid;
    gap: 18px;
    margin-bottom: 20px;
}

.wbc-sp__fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wbc-sp__fields--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wbc-sp__fields--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.wbc-sp label:not(.wbc-sp__choice):not(.wbc-sp__toggle):not(.wbc-sp__consent) {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #343d44;
    font-size: 13px;
    font-weight: 700;
}

.wbc-sp input[type="text"],
.wbc-sp input[type="email"],
.wbc-sp input[type="tel"],
.wbc-sp input[type="number"],
.wbc-sp select,
.wbc-sp textarea {
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    color: var(--wbc-ink);
    background: #fff;
    border: 1px solid #cfd5d9;
    border-radius: 8px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.wbc-sp textarea {
    min-height: 110px;
    resize: vertical;
}

.wbc-sp input:focus,
.wbc-sp select:focus,
.wbc-sp textarea:focus {
    border-color: var(--wbc-accent);
    box-shadow: 0 0 0 3px rgba(251, 156, 28, .18);
}

.wbc-sp .is-invalid {
    border-color: #c73535 !important;
    box-shadow: 0 0 0 3px rgba(199, 53, 53, .12) !important;
}

.wbc-sp__required,
.wbc-sp__consent b { color: #b52e2e; }

.wbc-sp__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--wbc-line);
}

.wbc-sp__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 51px;
    padding: 11px 22px;
    color: #111820;
    background: var(--wbc-accent);
    border: 1px solid var(--wbc-accent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
}

.wbc-sp__button:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(251, 156, 28, .28);
}

.wbc-sp__button:disabled {
    opacity: .55;
    cursor: wait;
    transform: none;
}

.wbc-sp__button--ghost {
    color: var(--wbc-ink);
    background: #fff;
    border-color: #cbd1d5;
}

.wbc-sp__button--ghost:hover {
    box-shadow: 0 8px 20px rgba(17, 24, 32, .08);
}

.wbc-sp__button--small {
    min-height: 42px;
    padding: 8px 15px;
    font-size: 12px;
}

.wbc-sp__preset-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.wbc-sp__preset-row button,
.wbc-sp__viewer-controls button {
    padding: 9px 14px;
    color: #46515a;
    background: #fff;
    border: 1px solid #cfd5d9;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.wbc-sp__preset-row button.is-selected,
.wbc-sp__preset-row button:hover,
.wbc-sp__viewer-controls button.is-active,
.wbc-sp__viewer-controls button:hover {
    color: #111820;
    background: var(--wbc-accent-soft);
    border-color: var(--wbc-accent);
}

.wbc-sp__layout-builder {
    display: grid;
    grid-template-columns: minmax(160px, .42fr) 1fr;
    align-items: center;
    gap: clamp(22px, 4vw, 52px);
    padding: clamp(22px, 4vw, 40px);
    background: var(--wbc-mist);
    border-radius: 14px;
}

.wbc-sp__layout-number {
    color: var(--wbc-ink);
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 820;
    letter-spacing: -.055em;
    text-align: center;
}

.wbc-sp__layout-builder .wbc-sp__fields {
    margin: 0;
}

.wbc-sp__toggle,
.wbc-sp__consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    cursor: pointer;
}

.wbc-sp__toggle input,
.wbc-sp__consent input {
    width: 19px;
    height: 19px;
    accent-color: var(--wbc-accent);
}

.wbc-sp__toggle span {
    position: relative;
    width: 42px;
    height: 24px;
    flex: 0 0 auto;
    background: #cdd3d7;
    border-radius: 999px;
}

.wbc-sp__toggle span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    transition: left .18s ease;
}

.wbc-sp__toggle input {
    position: absolute;
    opacity: 0;
}

.wbc-sp__toggle input:checked + span {
    background: var(--wbc-accent);
}

.wbc-sp__toggle input:checked + span::after {
    left: 21px;
}

.wbc-sp__custom-note {
    margin-top: 18px;
    padding: 20px;
    background: var(--wbc-accent-soft);
    border-left: 4px solid var(--wbc-accent);
    border-radius: 0 10px 10px 0;
}

.wbc-sp__custom-note p {
    margin: 8px 0 0;
    color: var(--wbc-muted);
    font-size: 12px;
}

.wbc-sp__viewer-controls {
    display: flex;
    gap: 6px;
    padding: 5px;
    background: var(--wbc-mist);
    border-radius: 999px;
}

.wbc-sp__viewer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    overflow: hidden;
    min-height: 600px;
    background: #080b0e;
    border-radius: 15px;
    box-shadow: 0 22px 60px rgba(4, 8, 10, .22);
}

.wbc-sp__viewer {
    position: relative;
    min-width: 0;
    min-height: 600px;
    touch-action: none;
}

.wbc-sp__viewer canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.wbc-sp__viewer canvas:active { cursor: grabbing; }

.wbc-sp__viewer-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #dce2e5;
    background: rgba(8, 12, 15, .72);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 11px;
}

.wbc-sp__viewer-badge span {
    width: 7px;
    height: 7px;
    background: #63d29b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 210, 155, .14);
}

.wbc-sp__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #c6cdd1;
    background: #0c1115;
    transition: opacity .35s ease;
}

.wbc-sp__loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.wbc-sp__loading i,
.wbc-sp__button--submit.is-loading i {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .25);
    border-top-color: var(--wbc-accent);
    border-radius: 50%;
    animation: wbc-sp-spin .8s linear infinite;
}

@keyframes wbc-sp-spin { to { transform: rotate(360deg); } }

.wbc-sp__button--submit i { display: none; }
.wbc-sp__button--submit.is-loading i { display: inline-block; }

.wbc-sp__room-key {
    padding: 28px 22px;
    color: #c3cbd0;
    background: #11171c;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.wbc-sp__room-key h4 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 15px;
}

.wbc-sp__room-key p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 12px;
}

.wbc-sp__room-key i {
    width: 11px;
    height: 11px;
    border-radius: 3px;
}

.wbc-sp__room-key .is-bed { background: #fb9c1c; }
.wbc-sp__room-key .is-sub { background: #cf4e53; }
.wbc-sp__room-key .is-height { background: #65b7dd; }
.wbc-sp__room-key .is-seat { background: #76d49f; border-radius: 50%; }

.wbc-sp__room-key small {
    display: block;
    margin-top: 28px;
    color: #818b92;
    line-height: 1.6;
}

.wbc-sp__walk-pad {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 42px);
    grid-template-rows: repeat(2, 42px);
    gap: 4px;
}

.wbc-sp__walk-pad button {
    color: #fff;
    background: rgba(13, 18, 22, .72);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 7px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.wbc-sp__walk-pad [data-move="forward"] { grid-column: 2; }
.wbc-sp__walk-pad [data-move="left"] { grid-column: 1; grid-row: 2; }
.wbc-sp__walk-pad [data-move="back"] { grid-column: 2; grid-row: 2; }
.wbc-sp__walk-pad [data-move="right"] { grid-column: 3; grid-row: 2; }

.wbc-sp__advanced-placement {
    margin-top: 22px;
    padding: 0 20px 20px;
    background: var(--wbc-mist);
    border: 1px solid var(--wbc-line);
    border-radius: 10px;
}

.wbc-sp__advanced-placement summary {
    padding: 18px 0;
    color: var(--wbc-ink);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.wbc-sp__placement-row {
    display: grid;
    grid-template-columns: 1.5fr .8fr repeat(3, .65fr) auto;
    gap: 9px;
    align-items: end;
    padding: 12px 0;
    border-top: 1px solid var(--wbc-line);
}

.wbc-sp__placement-row label { font-size: 10px !important; }
.wbc-sp__placement-row input,
.wbc-sp__placement-row select { min-height: 40px; padding: 7px 9px; font-size: 12px; }

.wbc-sp__icon-button {
    width: 40px;
    height: 40px;
    color: #9d3030;
    background: #fff;
    border: 1px solid #dabcbc;
    border-radius: 7px;
    cursor: pointer;
}

.wbc-sp__cable-toolbar {
    display: grid;
    grid-template-columns: .7fr 1.1fr 1.1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
    padding: 18px;
    background: var(--wbc-mist);
    border-radius: 11px;
}

.wbc-sp__cable-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--wbc-line);
    border-radius: 11px;
}

.wbc-sp__cable-table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
    font-size: 12px;
}

.wbc-sp__cable-table th {
    padding: 13px 12px;
    color: #fff;
    background: var(--wbc-ink);
    font-size: 11px;
    letter-spacing: .035em;
    text-align: left;
    text-transform: uppercase;
}

.wbc-sp__cable-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--wbc-line);
    vertical-align: middle;
}

.wbc-sp__cable-table tr:last-child td { border-bottom: 0; }
.wbc-sp__cable-table tr:nth-child(even) td { background: #fafbfb; }
.wbc-sp__cable-table input,
.wbc-sp__cable-table select { min-height: 39px; padding: 7px 8px; font-size: 12px; }
.wbc-sp__cable-table td:first-child { min-width: 170px; }
.wbc-sp__cable-table td:nth-child(2),
.wbc-sp__cable-table td:nth-child(3) { min-width: 145px; }
.wbc-sp__cable-table td:nth-child(4) { width: 105px; }
.wbc-sp__cable-table td:nth-child(5) { width: 72px; }
.wbc-sp__cable-table td:nth-child(6) { min-width: 190px; }

.wbc-sp__channel-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.wbc-sp__channel-name i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--wbc-accent);
    border-radius: 50%;
}

.wbc-sp__channel-name small {
    display: block;
    margin-top: 2px;
    color: var(--wbc-muted);
    font-weight: 500;
}

.wbc-sp__cable-summary {
    margin-top: 18px;
    padding: 16px 20px;
    color: var(--wbc-ink);
    background: var(--wbc-accent-soft);
    border-left: 4px solid var(--wbc-accent);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
}

.wbc-sp__consent {
    align-items: flex-start;
    padding: 18px;
    background: var(--wbc-mist);
    border-radius: 9px;
    font-size: 13px;
}

.wbc-sp__review-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: 24px;
    background: var(--wbc-line);
    border: 1px solid var(--wbc-line);
    border-radius: 11px;
}

.wbc-sp__review-card div {
    padding: 16px;
    background: #fff;
}

.wbc-sp__review-card small {
    display: block;
    margin-bottom: 4px;
    color: var(--wbc-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wbc-sp__review-card strong { font-size: 15px; }

.wbc-sp__form-message {
    display: none;
    margin-top: 20px;
    padding: 15px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.wbc-sp__form-message.is-error {
    display: block;
    color: #8e2424;
    background: #fff0f0;
    border: 1px solid #e8b9b9;
}

.wbc-sp__form-message.is-success {
    display: block;
    color: #155f3a;
    background: #edf9f2;
    border: 1px solid #a9dbc0;
}

.wbc-sp__hp {
    position: absolute !important;
    left: -99999px !important;
}

@media (max-width: 980px) {
    .wbc-sp__fields--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wbc-sp__viewer-shell { grid-template-columns: 1fr; }
    .wbc-sp__room-key { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); }
    .wbc-sp__room-key h4,
    .wbc-sp__room-key small { grid-column: 1 / -1; }
    .wbc-sp__viewer,
    .wbc-sp__viewer-shell { min-height: 520px; }
    .wbc-sp__cable-toolbar { grid-template-columns: repeat(2, 1fr); }
    .wbc-sp__placement-row { grid-template-columns: repeat(4, 1fr); }
    .wbc-sp__placement-row label:first-child { grid-column: span 2; }
}

@media (max-width: 720px) {
    .wbc-sp__hero { min-height: 230px; border-radius: 12px 12px 0 0; }
    .wbc-sp__trust-row { display: none; }
    .wbc-sp__steps { padding: 0 8px; }
    .wbc-sp__steps button { min-height: 58px; }
    .wbc-sp__steps button b { display: none; }
    .wbc-sp__choice-grid--two,
    .wbc-sp__fields--two,
    .wbc-sp__fields--three,
    .wbc-sp__fields--four { grid-template-columns: 1fr; }
    .wbc-sp__choice { min-height: 120px; padding: 20px; }
    .wbc-sp__layout-builder { grid-template-columns: 1fr; }
    .wbc-sp__layout-number { text-align: left; }
    .wbc-sp__panel-heading--split { display: block; }
    .wbc-sp__viewer-controls { width: max-content; margin-top: 18px; }
    .wbc-sp__viewer,
    .wbc-sp__viewer-shell { min-height: 430px; }
    .wbc-sp__room-key { grid-template-columns: repeat(2, 1fr); }
    .wbc-sp__placement-row { grid-template-columns: repeat(2, 1fr); }
    .wbc-sp__placement-row label:first-child { grid-column: 1 / -1; }
    .wbc-sp__cable-toolbar { grid-template-columns: 1fr; }
    .wbc-sp__review-card { grid-template-columns: 1fr; }
    .wbc-sp__actions { align-items: stretch; }
    .wbc-sp__actions .wbc-sp__button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .wbc-sp *, .wbc-sp *::before, .wbc-sp *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

