body {
    margin: 0;
    font-family: 'Inter','Roboto','Segoe UI',sans-serif;
    background: #fcfcff;
    color: #25313c;
}

.checkup-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(71,168,223,0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.checkup-topbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: #fff;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkup-brand {
    font-size: 28px;
    font-weight: 700;
    color: #47a8df;
    text-decoration: none;
}

.checkup-contact,
.secondary-action,
.primary-action {
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
    cursor: pointer;
}

.checkup-contact,
.secondary-action {
    border: 1px solid #47a8df;
    color: #47a8df;
    background: white;
}

.checkup-contact:hover,
.secondary-action:hover {
    background: #eaf6fd;
    color: #2d8fc4;
}

.checkup-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.checkup-title {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: 0;
}

.checkup-title span {
    color: #47a8df;
}

.checkup-text {
    font-size: 18px;
    line-height: 1.7;
    color: #5c6670;
    max-width: 680px;
    margin: 0 0 32px;
}

.checkup-panel {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(32, 76, 112, 0.10);
    border: 1px solid rgba(71,168,223,0.10);
    max-width: 580px;
}

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

.checkup-progress-step {
    border: 1px solid #d8e6ee;
    color: #6a7680;
    background: #f8fbfd;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.checkup-progress-step.is-active,
.checkup-progress-step.is-done {
    border-color: #47a8df;
    background: #eef8fd;
    color: #2278a7;
}

.panel-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.panel-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.5;
}

.file-input {
    display: none;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    background: #47a8df;
    color: white;
    border: none;
    font-size: 16px;
    text-align: center;
}

.primary-action:hover {
    background: #3798ce;
    color: white;
}

.primary-action:disabled,
.secondary-action:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

#uploadButton,
#continueButton {
    width: 100%;
}

.panel-actions {
    margin-top: 16px;
}

.file-name {
    margin-top: 14px;
    font-size: 14px;
    color: #4b5563;
    min-height: 22px;
    word-break: break-word;
}

.status-box {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
    line-height: 1.45;
}

.status-loading {
    background: #eef7fd;
    color: #1f5f85;
    border: 1px solid #cfe8f8;
}

.status-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f5c2c7;
}

.status-success {
    background: #eefaf3;
    color: #0f7b44;
    border: 1px solid #cdebd7;
}

.checkup-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkup-visual img {
    max-width: 100%;
    width: 420px;
    height: auto;
}

.wizard-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 28, 39, 0.48);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.wizard-dialog {
    width: min(920px, 100%);
    max-height: min(760px, calc(100vh - 36px));
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(11, 44, 68, 0.28);
    padding: 26px;
}

.confirm-dialog {
    width: min(620px, 100%);
}

.wizard-title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
}

.wizard-subtitle {
    margin: 0 0 22px;
    color: #65717c;
    line-height: 1.5;
}

.wizard-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.field {
    grid-column: span 6;
}

.field.is-wide {
    grid-column: span 12;
}

.field label,
.toggle-label {
    display: block;
    color: #25313c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d9e2e8;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    color: #25313c;
    background: #fff;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid rgba(71, 168, 223, 0.25);
    border-color: #47a8df;
}

.helper-text {
    color: #6f7c86;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 6px;
}

.toggle-field {
    border: 1px solid #d9e2e8;
    border-radius: 8px;
    padding: 13px;
    min-height: 80px;
}

.toggle-control {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.switch-input {
    inline-size: 52px;
    block-size: 30px;
    appearance: none;
    background: #d8e2e9;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
}

.switch-input::before {
    content: "";
    position: absolute;
    inline-size: 24px;
    block-size: 24px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    transition: 0.2s ease;
}

.switch-input:checked {
    background: #47a8df;
}

.switch-input:checked::before {
    transform: translateX(22px);
}

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.privacy-box {
    border: 1px solid #dbe6ed;
    background: #f8fbfd;
    border-radius: 10px;
    padding: 14px;
    color: #4f5d67;
    line-height: 1.5;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 991px) {
    .checkup-hero {
        grid-template-columns: 1fr;
        padding-top: 34px;
    }

    .checkup-title {
        font-size: 38px;
    }

    .checkup-visual {
        order: -1;
    }

    .checkup-visual img {
        width: 260px;
    }
}

@media (max-width: 680px) {
    .checkup-topbar {
        height: 68px;
        padding: 0 18px;
    }

    .checkup-brand {
        font-size: 24px;
    }

    .checkup-contact {
        padding: 9px 12px;
        font-size: 14px;
    }

    .checkup-hero {
        padding: 24px 16px 36px;
    }

    .checkup-title {
        font-size: 32px;
    }

    .checkup-text {
        font-size: 16px;
    }

    .checkup-panel {
        padding: 20px;
        border-radius: 12px;
    }

    .checkup-progress {
        grid-template-columns: 1fr;
    }

    .wizard-dialog {
        padding: 20px;
    }

    .wizard-form {
        grid-template-columns: 1fr;
    }

    .field,
    .field.is-wide {
        grid-column: span 1;
    }

    .wizard-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
