        body { background: #FAF7F2; }
        /* ── PAGE HERO ── */
        .page-hero {
            background: transparent;
            border-bottom: 1px solid var(--borde);
            padding: 36px 48px 28px;
        }
        .page-hero-inner { max-width: 1400px; margin: 0 auto; }

        .page-urgencia {
            display: inline-flex; align-items: center; gap: 7px;
            font-size: 1rem; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; color: var(--coral);
            background: rgba(247,108,94,.08); border: 1px solid rgba(247,108,94,.18);
            padding: 5px 13px; border-radius: 50px; margin-bottom: 16px;
        }
        .page-urgencia-dot { width:6px; height:6px; border-radius:50%; background:var(--amarillo); animation:pulse-dot 2s infinite; }

        .page-hero h1 { font-size:2rem; font-weight:900; margin-bottom:8px; letter-spacing:-.4px; }
        .page-hero p  { color:var(--texto-2); font-size:1rem; line-height:1.6; margin-bottom:20px; }

        /* Stats rápidas bajo el h1 */
        .hero-stats-row {
            display: flex; gap: 20px; flex-wrap: wrap;
        }
        .hero-stat-pill {
            display: flex; align-items: center; gap: 7px;
            font-size: 1rem; font-weight: 600; color: var(--texto-2);
            background: var(--bg); border: 1px solid var(--borde);
            padding: 6px 13px; border-radius: 50px;
        }
        .hero-stat-pill svg { width:13px; height:13px; flex-shrink:0; }
        .hero-stat-pill strong { color: var(--dark); }

        /* ── PROGRESS BAR ── */
        .progress-wrap {
            padding: 16px 48px 0;
            max-width: 780px;
            margin: 0 auto;
            background: transparent;
        }
        .progress-bar-track {
            height: 4px; background: var(--borde); border-radius: 50px; overflow: hidden; margin-bottom: 10px;
        }
        .progress-bar-fill {
            height: 100%; background: var(--coral); border-radius: 50px;
            transition: width .4s cubic-bezier(.4,0,.2,1);
            width: 33%;
        }
        .progress-steps-row {
            display: flex; justify-content: space-between;
        }
        .progress-step-label {
            font-size: .85rem; font-weight: 600; color: var(--texto-2);
            opacity: .5; transition: opacity .2s, color .2s;
        }
        .progress-step-label.activo { opacity: 1; color: var(--coral); }
        .progress-step-label.completado { opacity: 1; color: var(--texto); }

        /* ── STEP LABELS (hidden, kept for scroll observer) ── */
        .step-label { display: none; }

        /* ── CARDS: una a la vez ── */
        .card.card-oculta, #bloque-final.card-oculta { display: none; }

        /* ── BTN SIGUIENTE ── */
        .btn-siguiente {
            width: 100%; padding: 15px;
            background: var(--texto); color: white; border: none;
            border-radius: 6px; font-size: 1rem; font-weight: 700;
            cursor: pointer; font-family: inherit; margin-top: 4px; margin-bottom: 14px;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            transition: opacity .15s, transform .1s;
        }
        .btn-siguiente:hover { opacity: .88; transform: translateY(-1px); }
        .btn-siguiente svg { width: 16px; height: 16px; }
        .btn-volver {
            background: none; border: none; font-family: inherit;
            font-size: .88rem; font-weight: 600; color: var(--texto-2);
            cursor: pointer; padding: 6px 0; margin-bottom: 8px;
            display: flex; align-items: center; gap: 5px;
            transition: color .15s;
        }
        .btn-volver:hover { color: var(--texto); }
        .btn-volver svg { width: 13px; height: 13px; }

        /* ── LAYOUT PRINCIPAL ── */
        .form-layout {
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
            padding: 24px clamp(20px, 4vw, 48px) 80px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: clamp(20px, 3vw, 32px);
            align-items: start;
        }

        /* ── FORM COLUMN ── */
        .form-col {}

        .card {
            background: white; border-radius: 16px;
            padding: 28px; margin-bottom: 14px;
            box-shadow: var(--sombra); border: 1px solid var(--borde);
            transition: border-color .2s;
        }
        .card.card-activa { border-color: rgba(247,108,94,.30); }

        .card-header {
            display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
        }
        .card-step-num {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; font-weight: 900; flex-shrink: 0;
            background: rgba(88,107,164,.08); color: var(--texto);
        }
        .card-step-num svg { width:15px; height:15px; }
        .card-header-text {}
        .card-title { font-size: .95rem; font-weight: 800; color: var(--dark); }
        .card-subtitle { font-size: 1rem; color: var(--texto-2); margin-top:2px; }
        .card-header-line { flex:1; height:1px; background:var(--borde); }

        .campo { margin-bottom:16px; }
        label { display:block; font-size:1.05rem; font-weight:600; color:var(--dark); margin-bottom:7px; }
        .label-opt { font-weight:400; color:var(--texto-2); font-size:.95rem; margin-left:4px; }
        .label-req { color:var(--coral); font-weight:700; margin-left:3px; font-size:.95rem; }

        input[type=text], input[type=email], input[type=tel], input[type=url],
        input[type=datetime-local], select, textarea {
            width:100%; padding:11px 16px; border:1.5px solid var(--borde); border-radius:10px;
            font-size:.95rem; font-family:inherit; color:var(--dark); background:var(--bg);
            transition:border-color .2s,box-shadow .2s,background .2s;
            -webkit-appearance:none; appearance:none;
        }
        input:focus, select:focus, textarea:focus {
            outline:none; border-color:var(--texto); background:white;
            box-shadow:0 0 0 3px rgba(88,107,164,.10);
        }
        select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
        textarea { resize:vertical; }
        .error { color:var(--coral); font-size:1rem; margin-top:5px; font-weight:500; display:flex; align-items:center; gap:5px; }
        .row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
        .fecha-grid { display:grid; grid-template-columns:1fr 1.5fr 1fr; gap:10px; margin-bottom:10px; }
        .hora-grid { display:flex; align-items:center; gap:8px; }
        .hora-grid select { width:auto; min-width:74px; }
        .hora-sep { font-weight:800; color:var(--texto-2); }

        /* Upload de foto */
        .upload-zone {
            border: 2px dashed var(--borde);
            border-radius: 12px; padding: 28px 20px;
            text-align: center; cursor: pointer;
            transition: border-color .2s, background .2s;
            background: var(--bg); position: relative;
        }
        .upload-zone:hover { border-color: var(--texto); background: rgba(88,107,164,.03); }
        .upload-zone.has-file { border-color: var(--amarillo); background: rgba(245,221,144,.15); border-style: solid; }
        .upload-icon {
            width: 48px; height: 48px; border-radius: 14px;
            background: rgba(88,107,164,.08);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 12px;
        }
        .upload-icon svg { width:22px; height:22px; }
        .upload-title { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
        .upload-sub { font-size: 1rem; color: var(--texto-2); }
        .upload-sub span { color: var(--texto); font-weight: 600; }
        .upload-real {
            position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
        }
        .upload-filename {
            margin-top: 10px; font-size: 1rem; font-weight: 600;
            color: var(--texto); display: none; align-items: center; gap: 6px; justify-content: center;
        }
        .upload-filename svg { width:14px; height:14px; }

        /* Mapa */
        .mapa-hint {
            font-size:1rem; color:var(--texto-2); margin-bottom:12px;
            padding:10px 15px; background:rgba(88,107,164,.05);
            border-radius:9px; border-left:3px solid var(--texto);
            display:flex; align-items:center; gap:8px; line-height:1.45;
        }
        .mapa-hint svg { flex-shrink:0; }

        /* Map frame */
        .mapa-frame {
            border-radius: 12px; overflow: hidden;
            border: 1.5px solid var(--borde);
            box-shadow: 0 2px 12px rgba(22,22,43,.07);
        }
        .mapa-frame-bar {
            display: flex; align-items: center; justify-content: space-between;
            padding: 8px 14px; background: white; border-bottom: 1px solid var(--borde);
        }
        .mapa-frame-bar-left {
            display: flex; align-items: center; gap: 7px;
            font-size: .95rem; font-weight: 600; color: var(--texto-2);
        }
        .mapa-frame-bar-left svg { width: 12px; height: 12px; flex-shrink: 0; }
        .mapa-radio-pill {
            display: flex; align-items: center; gap: 5px;
            font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
            color: var(--texto); background: rgba(88,107,164,.08);
            padding: 3px 9px; border-radius: 50px;
        }
        #map { height: 300px; width: 100%; display: block; }
        .buscador-mapa { display:flex; gap:8px; margin-bottom:10px; }
        .buscador-mapa input { flex:1; padding:9px 13px; border:1.5px solid var(--borde); border-radius:9px; font-size:1.1rem; outline:none; }
        .buscador-mapa input:focus { border-color:var(--texto); }
        .buscador-mapa button { padding:9px 16px; background:var(--texto); color:white; border:none; border-radius:9px; font-size:1.1rem; font-weight:600; cursor:pointer; white-space:nowrap; }
        .buscador-mapa button:hover { opacity:.9; }

        .mapa-coords {
            margin-top: 10px; font-size: 1rem; font-weight: 600; min-height: 20px;
            display: flex; align-items: center; gap: 7px;
            padding: 8px 12px; border-radius: 8px;
            background: rgba(88,107,164,.05); color: var(--texto);
            transition: background .3s, color .3s;
        }
        .mapa-coords.marcado { background: rgba(245,221,144,.25); color: var(--texto); }
        .mapa-coords svg { width: 13px; height: 13px; flex-shrink: 0; }

        .radio-indicator {
            margin-top: 8px; padding: 9px 13px; border-radius: 8px;
            background: rgba(88,107,164,.04); border: 1px solid rgba(88,107,164,.10);
            display: flex; align-items: center; gap: 8px;
            font-size: .95rem; color: var(--texto-2);
        }
        .radio-indicator svg { width: 13px; height: 13px; color: var(--texto); flex-shrink: 0; }
        .radio-indicator strong { color: var(--texto); }

        /* Submit */
        .submit-wrap { margin-top: 4px; }
        .submit-status {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 1rem; color: var(--texto); margin-bottom: 12px;
            padding: 10px 16px; background: var(--purpura-06); border: 1px solid var(--purpura-10);
            border-radius: 10px;
        }
        .submit-status svg { width:14px; height:14px; flex-shrink:0; }
        .submit-status.listo { color: var(--texto); background: rgba(245,221,144,.18); border-color: rgba(245,221,144,.5); }

        .btn-enviar {
            width:100%; padding:17px;
            background:var(--coral); color:white; border:none;
            border-radius:6px; font-size:1rem; font-weight:700;
            cursor:pointer; font-family:inherit;
            transition:background .2s,transform .15s,box-shadow .15s;
            box-shadow:0 4px 20px rgba(247,108,94,.32);
            display:flex; align-items:center; justify-content:center; gap:9px;
        }
        .btn-enviar:hover { background:#f76c5e; transform:translateY(-1px); box-shadow:0 8px 28px rgba(247,108,94,.42); }
        .btn-enviar svg { width:18px; height:18px; }
        .btn-sub-text { font-size:.95rem; font-weight:400; opacity:.78; margin-top:2px; }

        /* ── SIDEBAR ── */
        .sidebar-col { position: sticky; top: 88px; }

        .sidebar-card {
            background: white; border-radius: 16px;
            padding: 22px; margin-bottom: 12px;
            box-shadow: var(--sombra); border: 1px solid var(--borde);
        }
        .sidebar-title {
            font-size: .9rem; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; color: var(--texto-2);
            margin-bottom: 16px; display: flex; align-items: center; gap: 7px;
        }
        .sidebar-title::after { content:''; flex:1; height:1px; background:var(--borde); }

        /* Status del sistema */
        .system-status {
            background: var(--texto);
            border-radius: 14px; padding: 18px; margin-bottom: 12px;
            color: white;
        }
        .system-status-top {
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 14px;
        }
        .system-dot { width:8px; height:8px; border-radius:50%; background:var(--amarillo); animation:pulse-dot 2s infinite; }
        .system-label { font-size:.95rem; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:rgba(255,255,255,.8); }
        .system-metrics { display:flex; flex-direction:column; gap:9px; }
        .system-metric { display:flex; align-items:center; gap:8px; font-size:1.05rem; color:rgba(255,255,255,.85); }
        .system-metric svg { width:14px; height:14px; flex-shrink:0; opacity:.7; }
        .system-metric strong { color:white; }

        /* Pasos del proceso */
        .proceso-steps { display:flex; flex-direction:column; gap:12px; }
        .proceso-step { display:flex; gap:11px; align-items:flex-start; }
        .proceso-num {
            width:22px; height:22px; border-radius:50%; flex-shrink:0;
            background:rgba(88,107,164,.08); color:var(--texto);
            font-size:.9rem; font-weight:800;
            display:flex; align-items:center; justify-content:center;
            margin-top:1px;
        }
        .proceso-text { font-size:1.05rem; color:var(--texto-2); line-height:1.5; }
        .proceso-text strong { color:var(--dark); display:block; margin-bottom:1px; font-size:1.05rem; }


        /* Responsive */
        @media (max-width:920px) {
            .form-layout { grid-template-columns:1fr; }
            .sidebar-col { position:static; }
            .system-status { display:none; }
            .page-hero { padding:24px 20px 20px; }
            .progress-wrap { padding:12px 16px 0; }
            .progress-steps { display:none; }
        }
        @media (max-width:600px) {
            .page-hero { padding:24px 20px 20px; }
            .form-layout { padding:16px 16px 60px; }
            .row { grid-template-columns:1fr; }
            .step-label-sub { display:none; }
            .hero-stats-row { gap:10px; }
        }

/* ══════════════════════════════════════════════════════════════
   F2 — clases extraídas de los style="" inline de perdido.html
   (utilidades .is-hidden/.flex-shrink-0/.svg-icon-* viven en base.css)
   ══════════════════════════════════════════════════════════════ */
.perdido-aviso-coral { background:#fff1f0; border:1.5px solid var(--coral); border-radius:10px; padding:14px 18px; margin-bottom:16px; color:var(--coral); font-weight:600; font-size:1rem; }
.campo-obligatorio-nota { font-size:.85rem; color:var(--texto-2); margin:0 0 12px; }
.reportando-como { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.reportando-avatar { width:40px; height:40px; border-radius:50%; background:var(--purpura); color:white; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.1rem; flex-shrink:0; }
.reportando-info { flex:1; min-width:0; }
.reportando-label { font-size:1rem; color:var(--texto-2); margin-bottom:2px; }
.reportando-nombre { font-size:1.1rem; font-weight:800; color:var(--texto); }
.badge-verificado { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--purpura); background:var(--purpura-10); padding:5px 12px; border-radius:50px; }
.reportando-desc { font-size:.95rem; color:var(--texto-2); margin:0 0 14px; line-height:1.5; }
#ia-sugerencia { align-items:center; gap:8px; background:rgba(88,107,164,.08); border:1px solid rgba(88,107,164,.2); border-radius:8px; padding:8px 12px; font-size:1rem; color:var(--texto); font-weight:500; margin-bottom:8px; width:100%; }
.campo-nota { font-size:1rem; color:var(--texto-2); margin-top:5px; }
#buscador-error { font-size:1rem; color:var(--coral); margin-bottom:8px; }
.caja-info { padding:14px 16px; background:rgba(50,67,118,.05); border-radius:10px; border:1px solid rgba(50,67,118,.15); }
.caja-info.mb16 { margin-bottom:16px; }
.check-label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:.93rem; color:var(--texto); line-height:1.5; }
.check-label-rgpd { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:1.05rem; color:var(--texto); line-height:1.5; }
.check-sublabel { font-size:.82rem; color:var(--texto-2); }
.check-input { margin-top:3px; flex-shrink:0; accent-color:#1F2240; }
.link-purpura { color:var(--purpura); text-decoration:underline; }
.turnstile-wrap { margin-bottom:14px; }
