:root {
    --blue-google: #4285F4;
    --blue-dark: #1a237e;
    --red: #EF4444;
    --yellow: #F59E0B;
    --green: #10B981;
    --bg-dark: #0c1222;
    --bg-card: #151d30;
    --bg-card2: #1a2540;
    --bg-card-hover: #1e2d4a;
    --text-primary: #f1f5f9;
    --text-secondary: #8896b0;
    --border: #1e2d4a;
    --blue-light: rgba(66, 133, 244, 0.1);
}

/* ═══ TABS ═══ */
.gbp-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    padding: .4rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
}
.tab-btn {
    flex: 1;
    padding: .6rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 600;
    border-radius: .5rem;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.tab-btn:hover { background: var(--bg-card2); color: var(--text-primary); }
.tab-btn.active {
    background: var(--blue-google);
    color: #fff;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp .3s ease forwards; }

/* ═══ BUTTON SAVE ═══ */
.btn-save {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--green);
    color: #fff; border: none; border-radius: .5rem;
    padding: .5rem 1rem; font-size: .8rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: transform .2s, box-shadow .2s;
    margin-right: .5rem;
}
.btn-save:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,185,129,.4); }

/* ═══ HISTORY LIST ═══ */
.history-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.history-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
}
.history-item:hover { border-color: var(--blue-google); transform: translateX(4px); }
.hi-main { display: flex; align-items: center; gap: 1rem; }
.hi-check { width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.hi-check.active { background: var(--blue-google); border-color: var(--blue-google); }
.hi-check.active::after { content: '✓'; color: #fff; font-size: 12px; font-weight: bold; }

.hi-info h4 { font-size: .95rem; margin-bottom: .15rem; }
.hi-info p { font-size: .75rem; color: var(--text-secondary); }
.hi-score {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 800; border: 3px solid var(--border);
}
.hi-actions { display: flex; gap: .5rem; }
.btn-hi {
    padding: .4rem .7rem; border-radius: .4rem; border: none; font-size: .7rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-hi-view { background: var(--bg-card2); color: var(--text-primary); }
.btn-hi-delete { background: rgba(239, 68, 68, 0.1); color: var(--red); }
.btn-hi-delete:hover { background: var(--red); color: #fff; }

/* ═══ COMPARE TABLE ═══ */
.compare-container { overflow-x: auto; margin-top: 1rem; background: var(--bg-card); border-radius: 1rem; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.compare-table th, .compare-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg-card2); color: var(--text-secondary); font-weight: 600; font-size: .75rem; text-transform: uppercase; }
.compare-table .sticky-col { position: sticky; left: 0; background: var(--bg-card); border-right: 2px solid var(--border); z-index: 2; width: 220px; min-width: 220px; }
.compare-table th.sticky-col { background: var(--bg-card2); }
.comp-val { text-align: center; }
.comp-status { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; font-size: .75rem; }
.comp-status.good { background: rgba(16,185,129,.12); color: var(--green); }
.comp-status.avg { background: rgba(245,158,11,.12); color: var(--yellow); }
.comp-status.weak { background: rgba(239,68,68,.12); color: var(--red); }
.comp-header-name { font-size: 1rem; font-weight: 800; color: var(--text-primary); text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.05em; }
.comp-header-score { font-size: 1.25rem; font-weight: 900; }
.compare-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.empty-msg { text-align: center; padding: 3rem; color: var(--text-secondary); font-style: italic; }

/* ═══ SETTINGS FORM ═══ */
.settings-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.editor-wrap label { font-size: .85rem; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: .75rem; }
.editor-toolbar {
    display: flex; gap: .5rem; background: var(--bg-card2); padding: .5rem;
    border-radius: .5rem .5rem 0 0; border: 1px solid var(--border); border-bottom: none;
}
.editor-toolbar button {
    padding: .3rem .7rem; background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); border-radius: .3rem; cursor: pointer; font-size: .8rem;
    transition: all .2s;
}
.editor-toolbar button:hover { background: var(--blue-google); border-color: var(--blue-google); }
.rich-editor {
    min-height: 120px; padding: 1rem; background: var(--bg-dark);
    border: 1px solid var(--border); border-radius: 0 0 .5rem .5rem;
    color: var(--text-primary); font-size: .9rem; line-height: 1.5;
}
.rich-editor:focus { outline: none; border-color: var(--blue-google); }

/* Report Footer Dynamic */
.rpt-footer-custom { margin-top: 1rem; font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }
.rpt-footer-custom ul { list-style-position: inside; }
.rpt-footer-qr { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 1rem; display: block; background: #fff; padding: 5px; border-radius: 4px; }

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

body, .gbp-audit-wrap {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
}
.gbp-audit-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

/* ═══ HEADER ═══ */
.gbp-header { text-align: center; margin-bottom: 2rem; }
.gbp-header h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-google), #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .25rem;
    letter-spacing: -.025em;
}
.gbp-header p { color: var(--text-secondary); font-size: .9rem; }
.gbp-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-google), #7c3aed);
    color: #fff;
    padding: .2rem .7rem;
    border-radius: 9999px;
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .6rem;
}

/* ═══ CLIENT INFO ═══ */
.client-info-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.client-info-section h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.client-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.client-info-grid label {
    font-size: .75rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: .3rem;
}
.client-info-grid input {
    width: 100%;
    padding: .55rem .75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: .5rem;
    color: var(--text-primary);
    font-size: .85rem;
    font-family: inherit;
    transition: border-color .2s;
}
.client-info-grid input:focus {
    outline: none;
    border-color: var(--blue-google);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, .15);
}

/* ═══ FORM GRID ═══ */
.audit-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.audit-field-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: .875rem;
    padding: 1.15rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.audit-field-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border);
    transition: background .3s;
}
.audit-field-card.status-good::before { background: var(--green); }
.audit-field-card.status-average::before { background: var(--yellow); }
.audit-field-card.status-weak::before { background: var(--red); }
.audit-field-card:hover {
    border-color: rgba(66, 133, 244, .3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.field-title { font-size: .85rem; font-weight: 600; margin-bottom: .75rem; }
.field-meta { font-size: .68rem; color: var(--text-secondary); margin-top: .5rem; }

/* ═══ TOGGLE SWITCH ═══ */
.toggle-container { display: flex; align-items: center; gap: .7rem; }
.toggle-label { font-size: .78rem; font-weight: 500; color: var(--text-secondary); min-width: 2.2rem; }
.toggle-label.active { color: var(--text-primary); }
.toggle-switch { position: relative; width: 50px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; cursor: pointer; inset: 0;
    background: #374968; border-radius: 26px; transition: all .3s;
}
.toggle-slider::before {
    content: ''; position: absolute;
    height: 20px; width: 20px; left: 3px; bottom: 3px;
    background: #fff; border-radius: 50%; transition: all .3s;
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

/* ═══ NUMBER INPUT ═══ */
.number-input-wrap { display: flex; align-items: center; gap: .5rem; }
.number-input-wrap button {
    width: 32px; height: 32px; border-radius: .5rem;
    border: 1px solid var(--border); background: var(--bg-dark);
    color: var(--text-primary); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.number-input-wrap button:hover { background: var(--blue-google); border-color: var(--blue-google); }
.number-input-wrap input[type="number"] {
    width: 65px; text-align: center; padding: .45rem;
    background: var(--bg-dark); border: 1px solid var(--border);
    border-radius: .5rem; color: var(--text-primary);
    font-size: .95rem; font-weight: 600; font-family: inherit;
    -moz-appearance: textfield;
}
.number-input-wrap input::-webkit-outer-spin-button,
.number-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
.number-input-wrap input:focus { outline: none; border-color: var(--blue-google); }

/* ═══ GENERATE BUTTON ═══ */
.btn-generate {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; max-width: 380px; margin: 0 auto 2rem;
    padding: .9rem 2rem;
    background: linear-gradient(135deg, var(--blue-google), #7c3aed);
    color: #fff; border: none; border-radius: .75rem;
    font-size: 1.05rem; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: all .3s;
    box-shadow: 0 4px 15px rgba(66, 133, 244, .4);
}
.btn-generate:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(66, 133, 244, .5); }

/* ═══════════════════════════════
   REPORT SECTION
   ═══════════════════════════════ */
.report-section { display: none; }
.report-section.active { display: block; }

/* Control Bar */
.ctrl-bar {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: .75rem; padding: .75rem 1.15rem; margin-bottom: 1.75rem;
}
.ctrl-left { display: flex; align-items: center; gap: .7rem; }
.ctrl-label { font-size: .8rem; font-weight: 600; color: var(--text-secondary); transition: color .3s; }
.ctrl-label.on { color: var(--blue-google); }
.btn-print {
    display: inline-flex; align-items: center; gap: .4rem;
    background: linear-gradient(135deg, var(--blue-google), #7c3aed);
    color: #fff; border: none; border-radius: .5rem;
    padding: .5rem 1rem; font-size: .8rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: transform .2s, box-shadow .2s;
}
.btn-print:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(66,133,244,.4); }
.btn-back {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .5rem 1rem; background: var(--bg-card2);
    border: 1px solid var(--border); border-radius: .5rem;
    color: var(--text-secondary); font-size: .8rem; font-weight: 500;
    cursor: pointer; font-family: inherit; transition: all .2s;
}
.btn-back:hover { color: var(--text-primary); border-color: var(--blue-google); }

/* Report Header */
.rpt-header { text-align: center; margin-bottom: 1.5rem; }
.rpt-header .gbp-logo { height: 36px; margin-bottom: .6rem; filter: drop-shadow(0 2px 8px rgba(66,133,244,.3)); }
.rpt-header .rpt-title { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .2rem; }
.rpt-header .rpt-subtitle { color: var(--text-secondary); font-size: .85rem; }

/* Company Card */
.company-card {
    display: flex; align-items: center; gap: 1.25rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.5rem;
}
.company-avatar {
    width: 70px; height: 70px; border-radius: .75rem;
    background: linear-gradient(135deg, #1e3a5f, #2d4a7c);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; flex-shrink: 0; border: 2px solid var(--border);
}
.company-info h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: .2rem; }
.company-info p { color: var(--text-secondary); font-size: .8rem; display: flex; align-items: center; gap: .3rem; }

/* Performance Grid */
.perf-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 1.5rem;
}
.perf-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 1rem; padding: 1.15rem; min-height: 200px;
}
.perf-box h3, .perf-title { font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .75rem; }
.map-placeholder {
    width: 100%; height: 250px; border-radius: .5rem;
    background: var(--bg-card2); display: flex;
    align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: .78rem;
    border: 1px dashed var(--border); flex-direction: column; gap: .4rem;
}
.map-container {
    width: 100%; height: 250px; border-radius: .5rem;
    overflow: hidden; background: var(--bg-card2);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }
#gaugeChart { max-width: 280px; margin: 0 auto; }

/* Score Cards */
.score-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: .75rem; margin-bottom: 1.5rem;
}
.sc {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: .875rem; padding: .9rem; text-align: center;
    position: relative; overflow: hidden;
}
.sc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sc.sc-g::before { background: var(--green); }
.sc.sc-y::before { background: var(--yellow); }
.sc.sc-r::before { background: var(--red); }
.sc .sc-num { font-size: 1.85rem; font-weight: 800; line-height: 1; }
.sc .sc-lbl { font-size: .68rem; font-weight: 600; color: var(--text-secondary); margin-top: .3rem; text-transform: uppercase; letter-spacing: .05em; }

/* Corrections */
.corrections {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 1rem; overflow: hidden; margin-bottom: 1.5rem;
}
.corrections h3 {
    padding: 1rem 1.15rem; font-size: .9rem; font-weight: 700;
    border-bottom: 1px solid var(--border);
}
.corr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.corr-item {
    display: flex; align-items: center; gap: .6rem;
    padding: .7rem 1.15rem;
    border-bottom: 1px solid rgba(30,45,74,.5);
    transition: background .2s;
}
.corr-item:hover { background: var(--bg-card-hover); }
.ci-icon {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700; flex-shrink: 0;
}
.ci-icon.pass { background: rgba(16,185,129,.12); color: var(--green); }
.ci-icon.fail { background: rgba(239,68,68,.12); color: var(--red); }
.ci-icon.warn { background: rgba(245,158,11,.12); color: var(--yellow); }
.ci-title { font-size: .78rem; font-weight: 500; }
.ci-detail { font-size: .65rem; color: var(--text-secondary); }

/* Hidden util */
.hidden-section { display: none !important; }

/* Footer */
.rpt-footer {
    text-align: center; padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.rpt-footer .ft-name { font-size: .95rem; font-weight: 700; margin-bottom: .1rem; }
.rpt-footer .ft-role { font-size: .78rem; color: var(--text-secondary); margin-bottom: .4rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in, .anim { animation: fadeInUp .4s ease forwards; }

/* ═══ PRINT ═══ */
@media print {
    .ctrl-bar, .no-print { display: none !important; }
    body, .gbp-audit-wrap {
        background: #fff !important;
        color: #1a1a1a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .wrap, .gbp-audit-wrap { padding: 0; max-width: 100%; }
    .rpt-header { margin-bottom: .75rem; }
    .rpt-header .rpt-title { font-size: 1.3rem; color: #111 !important; }
    .rpt-header .rpt-subtitle { font-size: .75rem; color: #555 !important; }
    .company-card { padding: .75rem; margin-bottom: .75rem; }
    .company-avatar { width: 50px; height: 50px; font-size: 1.25rem; }
    .company-info h2 { font-size: 1rem; color: #111 !important; }
    .company-info p { font-size: .7rem; color: #555 !important; }
    .perf-grid { margin-bottom: .75rem; gap: .5rem; }
    .perf-box { padding: .75rem; min-height: auto; }
    .perf-title { font-size: .72rem; margin-bottom: .4rem; }
    .map-container { height: 200px; }
    #gaugeChart { max-width: 200px; }
    .score-cards { margin-bottom: .75rem; gap: .5rem; }
    .sc { padding: .5rem; }
    .sc .sc-num { font-size: 1.4rem; }
    .sc .sc-lbl { font-size: .6rem; color: #555 !important; }
    .corrections { margin-bottom: .75rem; }
    .corrections h3 { padding: .6rem .85rem; font-size: .8rem; }
    .corr-item { padding: .4rem .85rem; }
    .ci-icon { width: 20px; height: 20px; font-size: .6rem; }
    .ci-title { font-size: .68rem; }
    .ci-detail { font-size: .58rem; color: #555 !important; }
    .rpt-footer { padding-top: .75rem; }
    .rpt-footer .ft-name { font-size: .85rem; }
    .rpt-footer .ft-role { font-size: .68rem; color: #555 !important; }
    .company-card, .perf-box, .sc, .corrections, .perf-grid {
        border-color: #ddd !important;
        background: #f9f9f9 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .sc::before, .ci-icon { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .corrections, .score-cards, .company-card, .perf-grid, .rpt-footer {
        break-inside: auto !important;
        page-break-inside: auto !important;
    }
    .map-placeholder { background: #eee !important; color: #888 !important; border-color: #ccc !important; }
    
    /* Compact Print for Client Mode */
    .client-mode-active .rpt-header { margin-bottom: 15px !important; }
    .client-mode-active .rpt-header .rpt-title { font-size: .85rem; }
    .client-mode-active .company-card { padding: .2rem; margin-bottom: 15px !important; margin-top: 0 !important; }
    .client-mode-active .company-avatar { width: 28px; height: 28px; font-size: .8rem; }
    .client-mode-active .company-info h2 { font-size: .75rem; }
    .client-mode-active .perf-grid { margin-bottom: 15px !important; margin-top: 0 !important; gap: 15px !important; display: flex !important; }
    .client-mode-active .perf-box { padding: .1rem; min-height: auto !important; flex: 1; }
    .client-mode-active .map-container { height: 200px; }
    .client-mode-active #gaugeChart { max-width: 110px; height: 80px !important; margin: 0 auto !important; }
    .client-mode-active #gaugeChart .apexcharts-canvas { margin: 0 auto; }
    .client-mode-active .score-cards { margin-bottom: 15px !important; margin-top: 0 !important; gap: 15px !important; display: flex !important; }
    .client-mode-active .sc { padding: 12px 5px 8px 5px !important; flex: 1; text-align: center; }
    .client-mode-active .sc .sc-num { font-size: 1.4rem; font-weight: 800; }
    .client-mode-active .sc .sc-lbl { font-size: .65rem !important; line-height: 1.2 !important; margin-top: 4px; font-weight: 600; }
    .client-mode-active .corrections { margin-bottom: 15px !important; margin-top: 0 !important; }
    .client-mode-active .corrections h3 { padding: .2rem .4rem; font-size: .7rem; }
    .client-mode-active .corr-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0; }
    .client-mode-active .corr-item { padding: .2rem .4rem; border-bottom: 1px solid #eee !important; }
    .client-mode-active .ci-title { font-size: .65rem; }
    .client-mode-active .rpt-footer-qr { width: 40px; height: 40px; margin-bottom: 15px !important; }
    .client-mode-active .rpt-footer { padding-top: 15px !important; }
    .client-mode-active #reportObsSection { display: none !important; margin: 0 !important; padding: 0 !important; }
    
    /* Observations Print (Prospect Mode) */
    #reportObsSection { display: block; }
    #reportObsText { color: #1a1a1a !important; }
    #reportObsSection h3 { color: var(--blue-google) !important; }
    
    /* Comparison Print */
    .compare-table { width: 100% !important; border-collapse: collapse !important; margin-top: 1rem !important; }
    .compare-table th, .compare-table td { 
        border: 1px solid #ddd !important; 
        padding: 8px !important; 
        color: #000 !important; 
        background: #fff !important; 
        font-size: 0.75rem !important;
    }
    .comp-header-name { color: #000 !important; font-weight: 800 !important; }
    .comp-header-score { font-weight: 900 !important; }
    .comp-status { border: 1px solid #ccc !important; background: #f0f0f0 !important; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 640px) {
    .audit-form-grid { grid-template-columns: 1fr; }
    .perf-grid { grid-template-columns: 1fr; }
    .corr-grid { grid-template-columns: 1fr; }
    .score-cards { grid-template-columns: 1fr; }
    .gbp-header h1 { font-size: 1.5rem; }
    .ctrl-bar { flex-direction: column; align-items: stretch; }
    .ctrl-left { justify-content: center; flex-wrap: wrap; }
    .btn-print { width: 100%; justify-content: center; }
}
