:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #E0F2FE;
    --accent: #38BDF8;
    --accent-light: #F0F9FF;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #0F172A;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 4px -1px rgb(14 165 233 / 0.06);
    --shadow: 0 8px 16px -4px rgb(14 165 233 / 0.12), 0 4px 6px -2px rgb(14 165 233 / 0.05);
    --shadow-lg: 0 24px 32px -8px rgb(14 165 233 / 0.15), 0 10px 16px -4px rgb(14 165 233 / 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #F0F9FF 0%, #F8FAFC 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 48px;
}

/* Hero Header */
.hero-header {
    padding: 24px 16px 20px;
}

.hero-card {
    display: flex;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    max-width: 900px;
    margin: 0 auto;
    min-height: 280px;
}

.hero-image {
    position: relative;
    width: 45%;
    min-height: 280px;
    flex-shrink: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.hero-text {
    color: var(--dark);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--dark);
}

.hero-text p {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
    max-width: 420px;
    line-height: 1.6;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* Main Form */
.form-container {
    position: relative;
    padding: 0 16px;
    margin-top: 0;
    z-index: 3;
}

/* Intro Card */
.intro-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border-top: 5px solid var(--primary);
}

.intro-left {
    flex: 1;
    min-width: 260px;
}

.intro-card h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.intro-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Start Screen */
.start-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 640px) {
    .start-screen {
        grid-template-columns: 1fr;
    }
}

.start-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.start-card:hover {
    border-color: var(--primary);
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.start-card:active {
    transform: translateY(0);
}

.start-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: 14px;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.start-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.start-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Monitor Panel */


/* Form Wrapper */
.form-wrapper {
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress */
.progress-wrapper {
    margin-bottom: 24px;
    background: white;
    padding: 24px 20px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 18px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.step.active,
.step.completed {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.3s;
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary);
    color: white;
}

.step.completed .step-number {
    background: var(--success);
}

.step-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    display: none;
}

@media (min-width: 640px) {
    .step-label {
        display: block;
    }
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 999px;
}

/* Form Steps */
.form-step {
    display: none;
    border: none;
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
    animation: fadeIn 0.35s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-block {
    margin-bottom: 32px;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
    flex-wrap: wrap;
}

.section-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.15rem;
}

.section-header h3 {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 800;
}

.section-hint {
    width: 100%;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: -6px;
    margin-left: 40px;
    font-weight: 500;
}

.field-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.field-group {
    margin-bottom: 22px;
}

.field-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.optional {
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.85em;
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 500;
}

.input-hint.invalid {
    color: var(--danger);
}

.input-hint.valid {
    color: var(--success);
}

input[type="text"],
input[type="tel"],
input[type="date"],
textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--gray-50);
    color: var(--dark);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    background: white;
}

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

select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--gray-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--dark);
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: white;
}

select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

select option {
    color: var(--dark);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 16px;
}

@media (min-width: 640px) {
    .two-columns {
        grid-template-columns: 1fr 1fr;
    }
}

/* Radio & Checkbox */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 640px) {
    .radio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.radio-card,
.radio-pill {
    position: relative;
    cursor: pointer;
}

.radio-card input,
.radio-pill input,
.radio-row input,
.checkbox-row input,
.urgency-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card span {
    display: block;
    text-align: center;
    padding: 15px 12px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.radio-card input:checked + span {
    background: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.radio-inline {
    display: flex;
    gap: 12px;
}

.radio-pill span {
    display: inline-block;
    padding: 11px 26px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s;
}

.radio-pill input:checked + span {
    background: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.radio-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-row span,
.checkbox-row span {
    display: block;
    padding: 13px 14px 13px 46px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    position: relative;
    transition: all 0.2s;
    font-weight: 500;
}

.radio-row span::before,
.checkbox-row span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    background: white;
    transition: all 0.2s;
}

.radio-row span::before {
    border-radius: 50%;
}

.checkbox-row span::before {
    border-radius: 6px;
}

.radio-row input:checked + span,
.checkbox-row input:checked + span {
    background: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    font-weight: 600;
}

.radio-row input:checked + span::before,
.checkbox-row input:checked + span::before {
    background: var(--primary);
    border-color: var(--primary);
}

.radio-row input:checked + span::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.checkbox-row input:checked + span::after {
    content: "✓";
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
}

/* Condition Grid */
.condition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.condition-card {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 18px;
}

.condition-title {
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
    font-size: 0.95rem;
}

.condition-card .checkbox-row {
    margin-bottom: 6px;
}

.condition-card .checkbox-row:last-child {
    margin-bottom: 0;
}

.other-input-group {
    margin-top: 10px;
}

.other-input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.other-input-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--gray-50);
    transition: border-color 0.2s;
}

.other-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-light);
    background: white;
}
    font-size: 0.85rem !important;
}

/* Urgency */
.urgency-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.urgency-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.urgency-card:hover {
    transform: translateX(4px);
}

.urgency-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
    position: relative;
}

.urgency-card.emergency .urgency-dot { background: #FECACA; }
.urgency-card.high .urgency-dot { background: #FED7AA; }
.urgency-card.medium .urgency-dot { background: #FDE68A; }
.urgency-card.low .urgency-dot { background: #BBF7D0; }

.urgency-card input:checked + .urgency-dot::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: currentColor;
}

.urgency-card.emergency input:checked + .urgency-dot { color: var(--danger); }
.urgency-card.high input:checked + .urgency-dot { color: #F97316; }
.urgency-card.medium input:checked + .urgency-dot { color: var(--warning); }
.urgency-card.low input:checked + .urgency-dot { color: var(--success); }

.urgency-card input:checked ~ .urgency-content strong {
    color: inherit;
}

.urgency-card.emergency { color: var(--danger); }
.urgency-card.high { color: #F97316; }
.urgency-card.medium { color: #B45309; }
.urgency-card.low { color: var(--success); }

.urgency-card input:checked + .urgency-dot + .urgency-content,
.urgency-card input:checked {
    border-color: currentColor;
    background: white;
}

.urgency-content {
    display: flex;
    flex-direction: column;
    color: var(--gray-700);
}

.urgency-content strong {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 800;
}

.urgency-content span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.file-dropzone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
    background: var(--gray-50);
    cursor: pointer;
}

.file-dropzone:hover,
.file-dropzone.dragover {
    border-color: var(--primary);
    background: var(--accent-light);
}

.camera-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
}

.dropzone-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

.dropzone-content p {
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.dropzone-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.preview-thumb {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.preview-item {
    position: relative;
    width: 82px;
    height: 82px;
}

.preview-item .remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--danger);
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    padding: 0;
    transition: transform 0.15s;
}

.preview-item .remove-btn:hover {
    transform: scale(1.1);
}

.file-info {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.btn-add-photo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1.5px dashed var(--primary);
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    color: var(--primary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-photo:hover {
    background: var(--primary);
    color: white;
}

.photo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

/* Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.nav-btn {
    flex: 1;
    padding: 15px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.nav-btn.primary {
    background: var(--primary);
    color: white;
}

.nav-btn.primary:hover {
    background: var(--primary-dark);
}

.nav-btn.secondary {
    background: white;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.nav-btn.secondary:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.submit-section {
    text-align: center;
    margin-top: 24px;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

/* Review */
.review-card {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.review-empty {
    color: var(--gray-500);
    text-align: center;
    font-weight: 500;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.92rem;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    color: var(--gray-500);
    font-weight: 600;
}

.review-value {
    color: var(--dark);
    font-weight: 700;
    text-align: right;
    max-width: 60%;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #F0F9FF 0%, #F8FAFC 100%);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 22px;
    margin-bottom: 24px;
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 800;
}

.info-box p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 132, 199, 0.35);
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
    color: var(--success);
}

.modal-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.modal-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    font-weight: 500;
}

.report-number {
    background: var(--accent-light);
    color: var(--primary-dark);
    font-size: 1.6rem;
    font-weight: 900;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 18px 0;
    letter-spacing: 1px;
    font-family: 'Urbanist', monospace;
    border: 2px dashed var(--primary);
}

.modal-hint {
    font-size: 0.85rem !important;
    margin-bottom: 24px;
}

/* Footer */
.site-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 16px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Validation */
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: var(--danger);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .page-wrapper {
        padding: 0 0 32px;
    }

    .hero-card {
        flex-direction: column-reverse;
        border-radius: 20px;
    }

    .hero-image {
        width: 100%;
        height: 180px;
        min-height: 180px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 35%, rgba(255, 255, 255, 0.1) 100%);
    }

    .hero-content {
        padding: 24px 20px;
        text-align: center;
    }

    .hero-brand {
        flex-direction: column;
        gap: 14px;
    }

    .hero-logo img {
        width: 70px;
        height: 70px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .form-container {
        margin-top: 0;
        padding: 0 12px;
    }

    .intro-card,
    .form-step,
    .progress-wrapper {
        padding: 20px;
    }

    .intro-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-hint {
        margin-left: 0;
    }

    .urgency-card {
        padding: 14px;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
}
