/* ==========================================================================
   AiAppraisal Design System
   Mobile-first responsive layout
   Primary: #1B3A5C (navy)  Secondary: #2E75B6 (blue)  Accent: #E8913A (orange)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
                 Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #333;
    background: #f5f7fa;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: #2E75B6;
    text-decoration: none;
}

a:hover {
    color: #1B3A5C;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: #1B3A5C;
    color: #fff;
}

.btn-primary:hover {
    background: #15304d;
    color: #fff;
}

.btn-accent {
    background: #E8913A;
    color: #fff;
}

.btn-accent:hover {
    background: #d07e2e;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #1B3A5C;
    border: 2px solid #1B3A5C;
}

.btn-outline:hover {
    background: #1B3A5C;
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B3A5C;
    text-decoration: none;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1B3A5C;
    border-radius: 2px;
    transition: 0.2s;
}

.navbar-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 12px;
}

.navbar-menu.active {
    display: flex;
}

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1B3A5C;
}

/* --- Flash Messages --- */
.flash-container {
    margin-top: 16px;
}

.flash {
    padding: 12px 40px 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
}

.flash-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.flash-error {
    background: #fce4ec;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.flash-warning {
    background: #fff3e0;
    color: #e65100;
    border-left: 4px solid #e65100;
}

.flash-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

.flash-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

.flash-close:hover {
    opacity: 1;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #1B3A5C 0%, #2E75B6 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: #1B3A5C;
}

/* --- Features --- */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    color: #1B3A5C;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* --- Auth Pages --- */
.auth-section {
    padding: 40px 0;
}

.auth-card {
    background: #fff;
    max-width: 460px;
    margin: 0 auto;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.auth-card h2 {
    color: #1B3A5C;
    margin-bottom: 24px;
    text-align: center;
}

.auth-help {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.auth-divider {
    margin: 0 8px;
    color: #ccc;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E75B6;
    box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.optional {
    font-weight: 400;
    color: #999;
    font-size: 0.85rem;
}

/* --- Page Sections --- */
.page-section {
    padding: 40px 0;
}

.page-section h1 {
    color: #1B3A5C;
    margin-bottom: 24px;
}

.placeholder-card {
    background: #fff;
    padding: 48px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.placeholder-card h2 {
    color: #2E75B6;
    margin-bottom: 8px;
}

.placeholder-card p {
    color: #888;
}

/* --- Dashboard --- */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.dashboard-header h1 {
    margin-bottom: 0;
}

.dashboard-empty {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 64px 24px;
}

.dashboard-empty svg {
    margin-bottom: 20px;
}

.dashboard-empty h2 {
    color: #1B3A5C;
    margin-bottom: 8px;
}

.dashboard-empty p {
    color: #888;
    margin-bottom: 24px;
}

.appraisal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.appraisal-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.appraisal-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    color: inherit;
}

.appraisal-card-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #eef1f5;
}

.appraisal-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appraisal-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f5;
}

.appraisal-card-body {
    padding: 16px;
}

.appraisal-card-address {
    font-weight: 600;
    color: #1B3A5C;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.appraisal-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.appraisal-card-order {
    font-size: 0.8rem;
    color: #888;
    font-family: monospace;
}

.appraisal-card-date {
    font-size: 0.8rem;
    color: #888;
}

.appraisal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.appraisal-card-value {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1B3A5C;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.status-grey {
    background: #e9ecef;
    color: #555;
}

.status-orange {
    background: #fff3e0;
    color: #e65100;
}

.status-blue {
    background: #e3f2fd;
    color: #1565c0;
}

.status-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-red {
    background: #fce4ec;
    color: #c62828;
}

/* --- Checkout --- */
.checkout-card {
    background: #fff;
    max-width: 520px;
    margin: 0 auto;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.checkout-card h2 {
    color: #1B3A5C;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.checkout-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1B3A5C;
    margin-bottom: 24px;
}

.checkout-features {
    list-style: none;
    text-align: left;
    max-width: 340px;
    margin: 0 auto 28px;
}

.checkout-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
}

.checkout-features li svg {
    flex-shrink: 0;
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #888;
}

/* --- Wizard Form --- */
.wizard-card {
    background: #fff;
    max-width: 680px;
    margin: 0 auto;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.wizard-card h2 {
    color: #1B3A5C;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.wizard-step.active {
    opacity: 1;
}

.wizard-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.wizard-step.active .wizard-step-num {
    background: #2E75B6;
}

.wizard-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.wizard-step-line {
    width: 48px;
    height: 2px;
    background: #ddd;
    margin: 0 12px;
    flex-shrink: 0;
}

.wizard-page {
    display: none;
}

.wizard-page.active {
    display: block;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* --- Intake Form extras --- */
.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    color: #444;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.radio-label:hover {
    border-color: #2E75B6;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: #2E75B6;
}

.radio-label input[type="radio"]:checked + span,
.radio-label:has(input:checked) {
    color: #1B3A5C;
    border-color: #2E75B6;
    background: #f0f7ff;
}

.checkbox-section {
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    padding: 8px 0;
}

.checkbox-label.nested {
    padding-left: 12px;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2E75B6;
    cursor: pointer;
    flex-shrink: 0;
}

.conditional-field {
    display: none;
    margin-left: 12px;
    padding-left: 14px;
    border-left: 3px solid #e3f2fd;
    margin-bottom: 16px;
}

.input-with-unit {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.input-with-unit input {
    flex: 1;
    min-width: 0;
}

.unit-toggle {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: stretch;
}

.unit-option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    margin: 0;
}

.unit-option:first-child {
    border-right: 1px solid #ddd;
}

.unit-option input[type="radio"] {
    display: none;
}

.unit-option:has(input:checked) {
    background: #2E75B6;
    color: #fff;
}

.conversion-hint {
    display: none;
    font-size: 0.78rem;
    color: #2E75B6;
    margin-top: 4px;
}

.field-error {
    display: block;
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 4px;
    min-height: 1em;
}

.field-error:empty {
    min-height: 0;
}

.input-error {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1) !important;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

/* --- Photo Upload Page --- */
.photos-address {
    color: #666;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.photos-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.photos-checklist {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
}

.photos-checklist h3 {
    color: #1B3A5C;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.checklist-section {
    margin-bottom: 16px;
}

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

.checklist-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 8px;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: #444;
}

.checklist-box {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    flex-shrink: 0;
}

.photos-main {
    flex: 1;
}

/* Drop zone */
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.drop-zone:hover,
.drop-zone-active {
    border-color: #2E75B6;
    background: #f0f7ff;
}

.drop-zone svg {
    margin-bottom: 12px;
}

.drop-zone-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 4px;
}

.drop-zone-link {
    color: #2E75B6;
    font-weight: 600;
    text-decoration: underline;
}

.drop-zone-hint {
    font-size: 0.8rem;
    color: #999;
}

/* Upload status rows */
.upload-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-top: 8px;
    border-radius: 8px;
    background: #f5f7fa;
    font-size: 0.85rem;
}

.upload-row-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #444;
}

.upload-row-bar {
    width: 100px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.upload-row-fill {
    height: 100%;
    background: #2E75B6;
    border-radius: 3px;
    width: 0;
    transition: width 0.15s;
}

.upload-row-status {
    font-size: 0.78rem;
    color: #888;
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.upload-row-done {
    background: #e8f5e9;
}

.upload-row-done .upload-row-fill {
    background: #2e7d32;
    width: 100%;
}

.upload-row-done .upload-row-status {
    color: #2e7d32;
}

.upload-row-error {
    background: #fce4ec;
}

.upload-row-error .upload-row-status {
    color: #c62828;
}

/* Counter */
.photos-counter {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

/* Thumbnail grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.photo-thumb {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #eef1f5;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-thumb-blank {
    width: 100%;
    height: 100%;
    background: #eef1f5;
}

.photo-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(198, 40, 40, 0.85);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
}

.photo-thumb:hover .photo-delete {
    opacity: 1;
}

/* Actions */
.photos-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    gap: 12px;
}

.photos-min-hint {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
}

.btn-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

/* --- Video Upload Page --- */
.video-instructions {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 700px;
}

.video-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-checklist {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 24px;
}

.video-checklist h3 {
    color: #1B3A5C;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.video-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f5f7fa;
    transition: background 0.2s;
}

.video-checklist-item.video-checklist-done {
    background: #e8f5e9;
}

.video-checklist-icon {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-checklist-info {
    flex: 1;
    min-width: 0;
}

.video-checklist-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.video-checklist-status {
    font-size: 0.78rem;
    color: #888;
}

.video-checklist-done .video-checklist-status {
    color: #2e7d32;
    font-weight: 600;
}

.video-checklist-filename {
    display: block;
    font-size: 0.75rem;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-checklist-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.video-delete-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    transition: color 0.2s, border-color 0.2s;
}

.video-delete-btn:hover {
    color: #c62828;
    border-color: #c62828;
}

.video-add-supplemental {
    margin-top: 8px;
    width: 100%;
}

.video-tip {
    margin-top: 16px;
    padding: 12px;
    background: #fff8e1;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #795548;
    line-height: 1.5;
}

.video-upload-zone {
    flex: 1;
}

.video-format-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

/* --- Media Choice Page --- */
.media-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.media-choice-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.media-choice-card:hover {
    border-color: #2E75B6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.media-choice-recommended {
    border-color: #E8913A;
}

.media-choice-recommended:hover {
    border-color: #E8913A;
    box-shadow: 0 4px 16px rgba(232, 145, 58, 0.15);
}

.media-choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8913A;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 20px;
}

.media-choice-icon {
    margin-bottom: 16px;
}

.media-choice-title {
    font-size: 1.2rem;
    color: #1B3A5C;
    margin-bottom: 8px;
}

.media-choice-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.media-choice-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 0;
}

.media-choice-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.88rem;
    color: #444;
}

.media-choice-benefits li svg {
    flex-shrink: 0;
}

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

/* --- Footer --- */
.footer {
    background: #1B3A5C;
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

/* ==========================================================================
   Responsive — Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }

    .navbar-menu {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 0;
        box-shadow: none;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .appraisal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-card {
        padding: 40px 36px;
    }

    .photos-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .photos-checklist {
        width: 260px;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
    }

    .video-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .video-checklist {
        width: 380px;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
    }

    .photos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Responsive — Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .appraisal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
