.hero-step-layout {
    grid-template-columns: 0.92fr 1.08fr;
}

.hero-note-card {
    margin-top: 34px;
    max-width: 520px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 8px 28px rgba(0,0,0,.04);
}

.hero-note-card strong,
.hero-note-card span {
    display: block;
}

.hero-note-card strong {
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 17px;
}

.hero-note-card span {
    color: var(--muted);
    line-height: 1.4;
}

.step-booking-card {
    max-width: 560px;
}

.step-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}

.step-dot {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 9px 5px;
    cursor: pointer;
    color: var(--muted);
}

.step-dot span {
    width: 26px;
    height: 26px;
    margin: 0 auto 5px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1eee8;
    font-weight: 900;
    color: var(--text);
}

.step-dot em {
    display: block;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
}

.step-dot.is-active {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--soft);
}

.step-dot.is-active span {
    background: var(--brand);
    color: #fff;
}

.booking-step {
    display: none;
}

.booking-step.is-active {
    display: block;
}

.booking-step h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.step-label {
    margin: 0 0 7px;
    color: var(--brand);
    font-weight: 900;
    font-size: 13px;
}

.step-help {
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 18px;
}

.step-calendar {
    margin-top: 0;
    margin-bottom: 18px;
    max-width: 100%;
    box-shadow: none;
}

.service-choice-grid,
.car-size-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.service-choice,
.choice-card {
    display: block;
    cursor: pointer;
}

.service-choice input,
.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-choice span,
.choice-card span {
    display: block;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: .15s ease;
}

.service-choice strong,
.service-choice em,
.service-choice small {
    display: block;
}

.service-choice strong {
    margin-bottom: 5px;
    font-size: 17px;
}

.service-choice em {
    margin-bottom: 7px;
    color: var(--brand);
    font-style: normal;
    font-weight: 900;
}

.service-choice small {
    color: var(--muted);
    line-height: 1.35;
}

.service-choice input:checked + span,
.choice-card input:checked + span {
    border-color: var(--brand);
    background: var(--soft);
    box-shadow: 0 0 0 3px rgba(0, 107, 104, .10);
}

.choice-card span {
    font-size: 18px;
    font-weight: 900;
}

.step-actions {
    margin-top: 20px;
}

.step-actions.two {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 12px;
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.booking-summary {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--soft);
    color: var(--brand);
    font-weight: 800;
    line-height: 1.45;
}

.hidden-service-select {
    display: none !important;
}

.quick-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.service-duration {
    margin: -8px 0 12px;
    color: var(--brand) !important;
    font-weight: 800;
    min-height: auto !important;
}

.time-help {
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.booking-form select:disabled {
    background: #f1eee8;
    color: #8a8a8a;
    cursor: not-allowed;
}

.client-calendar-block {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
}

.client-calendar-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.client-calendar-top strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
    letter-spacing: -.02em;
}

.mini-label {
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.client-calendar-nav {
    display: flex;
    gap: 7px;
}

.client-calendar-nav button {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.client-calendar-weekdays,
.client-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.client-calendar-weekdays {
    margin-bottom: 6px;
}

.client-calendar-weekdays span {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.client-day {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    position: relative;
}

.client-day:hover {
    border-color: var(--brand);
}

.client-day.is-empty {
    visibility: hidden;
    pointer-events: none;
}

.client-day.is-closed,
.client-day.is-past {
    background: rgba(241, 238, 232, .85);
    color: #aaa;
    cursor: not-allowed;
}

.client-day.is-today {
    outline: 2px solid rgba(0, 107, 104, .24);
}

.client-day.is-selected {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.client-day small {
    position: absolute;
    right: 6px;
    bottom: 3px;
    font-size: 9px;
    color: var(--muted);
}

.client-day.is-selected small {
    color: rgba(255,255,255,.8);
}

.client-calendar-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .hero-step-layout {
        grid-template-columns: 1fr;
    }

    .step-booking-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .step-progress {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 5px;
    }

    .step-dot {
        padding: 7px 3px;
    }

    .step-dot em {
        display: none;
    }

    .step-actions.two {
        grid-template-columns: 1fr;
    }

    .client-calendar-block {
        padding: 12px;
    }

    .client-calendar-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .client-day {
        min-height: 38px;
        border-radius: 9px;
    }

    .client-day small {
        display: none;
    }
}
