/* ============================================================
   DETECNO DIAGNOSTICO — CSS Global
   Colores: Navy #002B5C | Cyan #0090D1 | Teal #00B8D4
   Fuentes: Space Grotesk (headings) | Inter (body)
   ============================================================ */

:root {
    --navy: #002B5C;
    --cyan: #0090D1;
    --teal: #00B8D4;
    --navy-light: rgba(0, 43, 92, 0.08);
    --navy-muted: rgba(0, 43, 92, 0.5);
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --radius: 1rem;
    --radius-sm: 0.5rem;
    --shadow: 0 4px 24px rgba(0, 43, 92, 0.10);
    --shadow-lg: 0 12px 40px rgba(0, 43, 92, 0.15);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--gray-700);
    background: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--navy); }

/* ============================================================
   BRAND
   ============================================================ */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-dot {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
}
.brand-name, .brand-name-sm {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}
.brand-name-sm { font-size: 1.1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: var(--shadow);
}
.btn-cta:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }
.btn-cta:active { transform: translateY(0); }
.btn-cta:disabled, .btn-cta[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   WELCOME SCREEN
   ============================================================ */
.welcome-screen {
    min-height: 100vh;
    background: linear-gradient(160deg, #F9FAFB 0%, #EFF6FF 60%, #E0F7FA 100%);
}
.welcome-nav {
    border-bottom: 1px solid var(--gray-200);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Badge pulse animado */
.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 144, 209, 0.08);
    border: 1px solid rgba(0, 144, 209, 0.25);
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-section { padding: 4rem 1.5rem 3rem; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--navy);
}
.text-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Value props */
.value-props {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    text-align: left;
}
.value-icon { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.cta-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* Areas grid */
.areas-section {
    padding: 3rem 1.5rem 5rem;
}
.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--navy);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
.area-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: default;
}
.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.area-cyan { border-top: 3px solid var(--cyan); }
.area-cyan .area-icon { color: var(--cyan); }
.area-teal { border-top: 3px solid var(--teal); }
.area-teal .area-icon { color: var(--teal); }
.area-navy { border-top: 3px solid var(--navy); }
.area-navy .area-icon { color: var(--navy); }
.area-icon { width: 32px; height: 32px; margin-bottom: 0.6rem; }
.area-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.area-desc { font-size: 0.78rem; color: var(--gray-400); }

/* ============================================================
   CONTACT GATE
   ============================================================ */
.contact-gate-screen {
    min-height: 100vh;
    background: var(--gray-50);
}
.contact-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 540px;
    margin: 0 auto;
}
.contact-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--navy-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.contact-icon { width: 32px; height: 32px; color: var(--navy); }
.contact-title { font-size: 1.5rem; color: var(--navy); }
.contact-subtitle { font-size: 0.9rem; color: var(--gray-600); }

/* Form controls */
.form-label-custom {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.field-icon { width: 14px; height: 14px; color: var(--gray-400); }
.required-star { color: #EF4444; }
.form-control-custom {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.form-control-custom:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 144, 209, 0.15);
}
.field-error { font-size: 0.78rem; color: #EF4444; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--navy-muted);
    background: var(--navy-light);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* ============================================================
   SECTION INTRO
   ============================================================ */
.section-intro-screen {
    min-height: 100vh;
    background: var(--gray-50);
}
.section-intro-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 480px;
    text-align: center;
    margin: 2rem auto;
}
.section-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.section-big-icon { width: 40px; height: 40px; }
.section-badge {
    display: inline-flex;
    background: var(--navy-light);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.section-intro-title { font-size: 1.75rem; margin-bottom: 0.5rem; }
.section-intro-subtitle { font-size: 0.95rem; color: var(--gray-600); }
.section-question-count {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}
.skip-warning {
    font-size: 0.78rem;
    color: #F97316;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ============================================================
   PROGRESS BAR (compartida por section intro y question)
   ============================================================ */
.top-progress-bar, .question-top-bar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}
.progress-track {
    height: 4px;
    background: var(--gray-200);
    width: 100%;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--cyan));
    transition: width 0.4s ease;
}
.progress-info, .progress-question-info {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================================
   QUESTION CARD
   ============================================================ */
.question-screen {
    min-height: 100vh;
    background: var(--gray-50);
}
.question-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 640px;
    width: 100%;
    margin: 2rem auto;
}
.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.4;
}

/* Help text */
.help-text-toggle { margin-bottom: 1rem; }
.btn-help-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--cyan);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.btn-help-toggle:hover { color: var(--navy); }
.help-text-box {
    background: rgba(0, 184, 212, 0.08);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-top: 0.5rem;
}

/* Options */
.options-list { display: flex; flex-direction: column; gap: 0.75rem; }
.option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.1s;
    user-select: none;
}
.option-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 144, 209, 0.04);
    transform: translateX(3px);
}
.option-card.selected {
    border-color: var(--navy);
    background: rgba(0, 43, 92, 0.05);
}
.option-letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.option-letter.selected {
    background: var(--navy);
    color: #fff;
}
.option-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.4; }

/* Navigation buttons */
.btn-nav-prev, .btn-nav-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-nav-prev {
    background: #fff;
    border-color: var(--gray-200);
    color: var(--gray-600);
}
.btn-nav-prev:hover { border-color: var(--navy); color: var(--navy); }
.btn-nav-prev:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-nav-next {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.btn-nav-next:hover { background: var(--cyan); border-color: var(--cyan); }
.btn-nav-next:disabled {
    background: var(--gray-200);
    border-color: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
}

/* ============================================================
   RESULTS SCREEN
   ============================================================ */
.results-screen { min-height: 100vh; background: var(--gray-50); }
.results-nav {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hero result card */
.result-hero-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* Score ring */
.score-ring-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}
.score-ring {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}
.ring-bg {
    fill: none;
    stroke: var(--gray-100);
    stroke-width: 10;
}
.ring-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    transition: stroke-dashoffset 1s ease;
}
.score-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.score-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.score-label { font-size: 0.8rem; color: var(--gray-400); }

.level-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid;
}
.result-company-info { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.info-chip {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.82rem;
}
.result-title { font-size: 2rem; }
.result-description { color: var(--gray-600); line-height: 1.7; }

/* Tabs */
.result-tabs { border-bottom: 2px solid var(--gray-200); }
.result-tabs .nav-link {
    color: var(--gray-600);
    font-weight: 600;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.result-tabs .nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
    background: transparent;
}

/* Section scores card */
.scores-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.scores-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Section scores */
.section-scores-list { display: flex; flex-direction: column; gap: 1.25rem; }
.section-score-row {}
.section-score-name { font-size: 0.95rem; font-weight: 500; color: #0f172a; }
.section-icon-sm { flex-shrink: 0; }
.section-icon-bubble {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.section-score-pct { font-weight: 700; font-size: 0.95rem; }
.score-bar-track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 9999px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.8s ease;
}

/* Playbook / Solution cards */
.urgency-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 0;
    border-bottom: 2px solid;
    margin-bottom: 1rem;
}
.urgency-high { color: #EF4444; border-color: #EF4444; }
.urgency-medium { color: #F97316; border-color: #F97316; }
.urgency-low { color: var(--gray-400); border-color: var(--gray-200); }

.solution-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.solution-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}
.solution-card-header:hover { background: var(--gray-50); }
.solution-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--navy-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.solution-name { color: var(--navy); }
.solution-tagline { font-size: 0.82rem; color: var(--gray-400); }
.urgency-badge-high {
    display: inline-block;
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FECACA;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.urgency-badge-medium {
    display: inline-block;
    background: #FFF7ED;
    color: #F97316;
    border: 1px solid #FED7AA;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.urgency-badge-low {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.chevron-icon { transition: transform 0.2s; flex-shrink: 0; }
.solution-card-header:not(.collapsed) .chevron-icon { transform: rotate(180deg); }

.solution-card-body {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-700);
}
.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.solution-benefits li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ideal-for-box {
    background: var(--navy-light);
    color: var(--navy);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

/* Catálogo accordion */
.catalog-accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}
.catalog-accordion-item .accordion-button {
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border-radius: var(--radius-sm);
}
.catalog-accordion-item .accordion-button:not(.collapsed) {
    color: var(--cyan);
    background: var(--navy-light);
    box-shadow: none;
}

/* CTA section */
.contact-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}
.contact-cta-card h3 { color: #fff; font-size: 1.5rem; }
.contact-cta-card p { opacity: 0.9; margin-bottom: 1.5rem; }
.contact-cta-card .btn-cta {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.contact-cta-card .btn-cta:hover { opacity: 0.95; color: var(--navy); }

/* ============================================================
   ADMIN LAYOUT (base)
   ============================================================ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--navy);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-sidebar-nav { padding: 1rem 0; flex: 1; }
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.admin-content {
    flex: 1;
    background: var(--gray-50);
    overflow-y: auto;
}
.admin-header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-page { padding: 2rem; }
.admin-page h1 { font-size: 1.75rem; margin-bottom: 1.5rem; }

/* Stats cards */
.stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.stat-number { font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--gray-400); }

/* Tables */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
}
.admin-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    vertical-align: middle;
}
.admin-table tr:hover td { background: var(--gray-50); }

/* Maturity level badges */
.badge-critical { background: #FEF2F2; color: #EF4444; }
.badge-basic { background: #FFF7ED; color: #F97316; }
.badge-developing { background: #FEFCE8; color: #EAB308; }
.badge-advanced { background: #EFF6FF; color: #0090D1; }
.badge-leader { background: #F0FDF4; color: #22C55E; }

/* ============================================================
   LOGIN ADMIN
   ============================================================ */
.admin-login-screen {
    min-height: 100vh;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.admin-login-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow);
}
.admin-login-logo {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.admin-login-logo i { color: #fff; width: 32px; height: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .hero-title { font-size: 2rem; }
    .result-hero-card .row { flex-direction: column; }
    .contact-card { padding: 1.5rem; }
    .question-card { margin: 1rem; padding: 1.5rem; }
    .section-intro-card { margin: 1rem; }
}
