/* =============================================
   Start Wizard Layout
   ============================================= */

.start-wizard {
    display: flex;
    min-height: 100vh;
    background: var(--rev-surface-0, #1a1a1a);
}

/* =============================================
   Left panel — step navigation
   ============================================= */

.start-panel-left {
    width: 280px;
    min-width: 280px;
    background: var(--rev-surface-1, #232323);
    border-right: 1px solid var(--rev-surface-2, #2e2e2e);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
}

.start-logo img {
    display: block;
}

.start-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.start-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--rev-radius-md, 10px);
    transition: var(--rev-transition, 150ms ease);
    opacity: 0.45;
}

.start-step.current {
    background: rgba(185, 0, 106, 0.12);
    opacity: 1;
}

.start-step.completed {
    opacity: 0.75;
}

.start-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--rev-surface-3, #3d3d3d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    transition: var(--rev-transition, 150ms ease);
}

.start-step.current .start-step-number {
    border-color: var(--rev-brand, #b9006a);
    background: var(--rev-brand, #b9006a);
    color: #fff;
}

.start-step.completed .start-step-number {
    border-color: #2ea84f;
    background: #2ea84f;
    color: #fff;
}

.start-step-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.start-step-num-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rev-accent, #e60e89);
    font-weight: 600;
}

.start-step.current .start-step-num-label {
    color: var(--rev-accent, #e60e89);
}

.start-step-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.start-panel-tagline p {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin: 0;
    text-align: center;
}

/* =============================================
   Right panel — form content
   ============================================= */

.start-panel-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px;
    overflow-y: auto;
}

.start-content {
    width: 100%;
    max-width: 560px;
}

/* =============================================
   Step header
   ============================================= */

.start-step-header {
    margin-bottom: 28px;
}

.start-step-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.start-step-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* =============================================
   Form controls
   ============================================= */

.start-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.start-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.start-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.start-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.start-optional {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

/* =============================================
   Postcode lookup
   ============================================= */

.start-postcode-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.start-postcode-row .rev-input-wrap {
    flex: 1;
}

.start-find-btn {
    white-space: nowrap;
    height: 42px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
}

/* =============================================
   Business hours grid
   ============================================= */

.start-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--rev-surface-1, #232323);
    border: 1px solid var(--rev-surface-2, #2e2e2e);
    border-radius: var(--rev-radius-md, 10px);
    overflow: hidden;
}

.start-hours-header {
    display: grid;
    grid-template-columns: 48px 70px 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    background: var(--rev-surface-2, #2e2e2e);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}

.start-hours-row {
    display: grid;
    grid-template-columns: 48px 70px 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    border-top: 1px solid var(--rev-surface-2, #2e2e2e);
    transition: var(--rev-transition, 150ms ease);
}

.start-hours-row:hover {
    background: rgba(255,255,255,0.02);
}

.start-hours-day {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.start-hours-closed-label {
    grid-column: 3 / -1;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

.start-hours-closed {
    opacity: 0.5;
}

.start-time-input {
    background: var(--rev-surface-2, #2e2e2e);
    border: 1px solid var(--rev-surface-3, #3d3d3d);
    border-radius: var(--rev-radius-sm, 6px);
    color: #fff;
    font-size: 13px;
    padding: 7px 10px;
    width: 100%;
    transition: var(--rev-transition, 150ms ease);
    -webkit-appearance: none;
    color-scheme: dark;
}

.start-time-input:focus {
    outline: none;
    border-color: var(--rev-brand, #b9006a);
}

/* =============================================
   VAT toggle options
   ============================================= */

.start-vat-toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.start-vat-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--rev-surface-2, #2e2e2e);
    border-radius: var(--rev-radius-md, 10px);
    cursor: pointer;
    transition: var(--rev-transition, 150ms ease);
    background: var(--rev-surface-1, #232323);
}

.start-vat-option:hover {
    border-color: var(--rev-surface-3, #3d3d3d);
}

.start-vat-option.selected {
    border-color: var(--rev-brand, #b9006a);
    background: rgba(185, 0, 106, 0.08);
}

.start-vat-option-icon {
    font-size: 20px;
    color: var(--rev-brand, #b9006a);
    width: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.start-vat-option strong {
    font-size: 14px;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.start-vat-option p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.mt-20 {
    margin-top: 20px;
}

/* =============================================
   Review card
   ============================================= */

.start-review {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.start-review-section {
    background: var(--rev-surface-1, #232323);
    border: 1px solid var(--rev-surface-2, #2e2e2e);
    border-radius: var(--rev-radius-md, 10px);
    padding: 16px;
    margin-bottom: 8px;
}

.start-review-section h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rev-accent, #e60e89);
    margin: 0 0 10px;
    font-weight: 700;
}

.start-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--rev-surface-2, #2e2e2e);
    font-size: 13px;
    gap: 12px;
}

.start-review-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.start-review-row span:first-child {
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}

.start-review-row span:last-child {
    color: #fff;
    text-align: right;
    word-break: break-all;
}

/* =============================================
   Error message
   ============================================= */

.start-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    border-radius: var(--rev-radius-md, 10px);
    color: #ff8090;
    font-size: 13px;
    padding: 12px 16px;
    margin-top: 16px;
}

/* =============================================
   Navigation buttons
   ============================================= */

.start-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
}

.start-nav-single {
    justify-content: flex-end;
}

.start-btn-back {
    display: flex;
    align-items: center;
    gap: 6px;
}

.start-btn-next,
.start-btn-launch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.start-btn-launch {
    background: linear-gradient(135deg, var(--rev-brand, #b9006a), var(--rev-accent, #e60e89)) !important;
    border-color: transparent !important;
    font-size: 15px;
    padding: 12px 28px !important;
}

.start-signin-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.start-signin-link a {
    color: var(--rev-accent, #e60e89);
    text-decoration: none;
}

.start-signin-link a:hover {
    text-decoration: underline;
}

/* =============================================
   Responsive — tablet and below
   ============================================= */

@media (max-width: 768px) {
    .start-wizard {
        flex-direction: column;
    }

    .start-panel-left {
        width: 100%;
        min-width: unset;
        padding: 20px 16px 16px;
        border-right: none;
        border-bottom: 1px solid var(--rev-surface-2, #2e2e2e);
        gap: 16px;
    }

    .start-logo {
        text-align: center;
    }

    .start-steps {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        flex: unset;
    }

    .start-step {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 8px 10px;
        min-width: 70px;
    }

    .start-step-text {
        align-items: center;
    }

    .start-step-num-label {
        display: none;
    }

    .start-step-name {
        font-size: 10px;
    }

    .start-panel-tagline {
        display: none;
    }

    .start-panel-right {
        padding: 24px 16px;
    }

    .start-form-row {
        grid-template-columns: 1fr;
    }

    .start-hours-header,
    .start-hours-row {
        grid-template-columns: 40px 60px 1fr 1fr;
        gap: 8px;
        padding: 8px 12px;
    }
}

/* =============================================
   Email verification pre-step
   ============================================= */

.start-verify-sent {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(185, 0, 106, 0.08);
    border: 1px solid rgba(185, 0, 106, 0.2);
    border-radius: var(--rev-radius-md, 10px);
    padding: 14px 16px;
    margin-bottom: 4px;
}

.start-verify-sent i {
    font-size: 22px;
    color: var(--rev-accent, #e60e89);
    flex-shrink: 0;
    margin-top: 1px;
}

.start-verify-sent p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}

.start-verify-sent strong {
    color: #fff;
}

.start-code-input {
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em !important;
    text-align: center !important;
}

.start-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #2ea84f;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.start-verified-badge i {
    font-size: 12px;
}

input[disabled].input {
    opacity: 0.6;
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer;
}
