@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --g1: #E8521A;
    --g2: #C0282E;
    --grad: linear-gradient(135deg, #E8521A 0%, #C0282E 100%);
    --grad-h: linear-gradient(135deg, #D44515 0%, #A82028 100%);
    --gold: #C28B1A;
    --white: #FFFFFF;
    --off: #FDFAF6;
    --canvas: #F7F3ED;
    --line: #EDE8E0;
    --ink: #1C1008;
    --ink2: #3D2C1E;
    --ink3: #5A4A3A;
    --sh1: 0 2px 12px rgba(28,16,8,.07);
    --sh2: 0 8px 40px rgba(28,16,8,.12);
    --sh3: 0 20px 70px rgba(28,16,8,.16);
    --sh-red: 0 8px 32px rgba(232,82,26,.35);
    --green: #16a34a;
    --amber: #d97706;
    --red: #dc2626;
    --blue: #2563eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.7; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 3px; }

/* ── NAV ───────────────────────────────── */
header { position: sticky; top: 0; z-index: 999; background: rgba(253,250,246,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); box-shadow: var(--sh1); }
nav { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 2.5rem; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em; color: var(--ink); text-decoration: none; }
.logo .lg { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo .ld { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--g1); }
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .8rem 1.8rem; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; border: none; transition: all .25s; text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { background: var(--grad-h); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,82,26,.45); }
.btn-outline { background: transparent; color: var(--g2); box-shadow: inset 0 0 0 2px var(--g2); }
.btn-outline:hover { background: var(--grad); color: #fff; }
.btn-white { background: #fff; color: var(--g2); box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--grad); color: #fff; }

/* ── HERO ──────────────────────────────── */
#hero { min-height: 88vh; background: var(--off); display: flex; align-items: center; position: relative; overflow: hidden; }
.hblob1 { position: absolute; top: -15%; right: -8%; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(232,82,26,.08) 0%, transparent 70%); pointer-events: none; }
.hblob2 { position: absolute; bottom: -20%; left: -6%; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(194,139,26,.07) 0%, transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--g1); background: linear-gradient(135deg,rgba(232,82,26,.08),rgba(192,40,46,.08)); border: 1px solid rgba(232,82,26,.2); padding: .3rem .9rem; border-radius: 2px; margin-bottom: 1.4rem; }
.tag-line { width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.06; letter-spacing: -.03em; color: var(--ink); margin-bottom: 1.2rem; }
.gt { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--ink3); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.85; }

/* URL FORM */
.audit-form-wrap { max-width: 640px; margin: 0 auto 1.5rem; }
.audit-form { display: flex; background: #fff; border: 2px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--sh2); transition: border-color .3s, box-shadow .3s; }
.audit-form:focus-within { border-color: var(--g1); box-shadow: 0 8px 40px rgba(232,82,26,.18); }
.audit-form .url-input { flex: 1; padding: 1rem 1.2rem; font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 500; border: none; outline: none; background: transparent; color: var(--ink); }
.audit-form .url-input::placeholder { color: #bbb; }
.audit-form .submit-btn { flex-shrink: 0; padding: .85rem 2rem; background: var(--grad); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; border: none; cursor: pointer; transition: background .25s; white-space: nowrap; }
.audit-form .submit-btn:hover { background: var(--grad-h); }
.audit-form .submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-note { font-size: .72rem; color: var(--ink3); }
.form-note span { color: var(--green); font-weight: 600; }

/* STATS */
.stats-bar { background: var(--grad); padding: 1rem 2rem; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.stat-item { text-align: center; color: #fff; }
.stat-item .sn { font-size: 1.6rem; font-weight: 900; letter-spacing: -.03em; display: block; }
.stat-item .sl { font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

/* HOW IT WORKS */
#how { background: var(--canvas); padding: 80px 2rem; }
.sec-head { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.sec-head h4 { font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--g1); margin-bottom: .6rem; }
.sec-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -.025em; color: var(--ink); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 2rem 1.5rem; text-align: center; transition: all .3s; }
.step:hover { box-shadow: var(--sh3); transform: translateY(-4px); }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; color: #fff; margin: 0 auto 1.2rem; box-shadow: var(--sh-red); }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.step p { font-size: .82rem; color: var(--ink3); line-height: 1.75; margin: 0; }

/* FEATURES */
#features { background: var(--white); padding: 80px 2rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 960px; margin: 0 auto; }
.feat-card { background: var(--off); border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem 1.5rem; transition: all .3s; position: relative; overflow: hidden; }
.feat-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--grad); transform:scaleX(0); transition:transform .3s; transform-origin:left; }
.feat-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); border-color: transparent; }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { font-size: 1.8rem; margin-bottom: .9rem; display: block; }
.feat-card h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.feat-card p { font-size: .8rem; color: var(--ink3); line-height: 1.7; margin: 0; }

/* ── LOADING ───────────────────────────── */
#loading-section { display: none; padding: 80px 2rem; text-align: center; background: var(--off); }
.loader-wrap { max-width: 480px; margin: 0 auto; }
.spinner { width: 72px; height: 72px; border: 5px solid var(--line); border-top-color: var(--g1); border-radius: 50%; animation: spin .9s linear infinite; margin: 0 auto 2rem; }
@keyframes spin { to { transform: rotate(360deg); } }
#loading-section h2 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
#loading-section p { font-size: .9rem; color: var(--ink3); margin-bottom: 1.5rem; }
.progress-bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--grad); border-radius: 3px; width: 0%; transition: width .5s ease; }
.check-msg { font-size: .8rem; color: var(--g1); font-weight: 600; margin-top: 1rem; min-height: 1.4em; }

/* ── RESULTS ───────────────────────────── */
#results-section { display: none; }

/* Score Hero */
.score-hero { background: var(--off); padding: 60px 2rem 40px; border-bottom: 1px solid var(--line); }
.score-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: center; }
.score-gauge-wrap { text-align: center; }
.score-circle { position: relative; width: 200px; height: 200px; margin: 0 auto 1rem; }
.score-circle svg { transform: rotate(-90deg); }
.score-circle .bg-ring { fill: none; stroke: var(--line); stroke-width: 12; }
.score-circle .score-ring { fill: none; stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.score-num { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.score-num span { font-size: 3rem; font-weight: 900; display: block; line-height: 1; }
.score-num small { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink3); }
.score-label { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.score-info h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.score-info .site-url { font-size: .8rem; color: var(--ink3); margin-bottom: 1.5rem; }
.site-url a { color: var(--g1); text-decoration: none; font-weight: 600; }
.score-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.scat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1rem; }
.scat .scat-name { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink3); margin-bottom: .5rem; }
.scat .scat-bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: .4rem; }
.scat .scat-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.scat .scat-score { font-size: .9rem; font-weight: 800; }

/* Sections */
.results-body { max-width: 1100px; margin: 0 auto; padding: 40px 2rem 80px; }
.results-tabs { display: flex; gap: .5rem; border-bottom: 2px solid var(--line); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn { padding: .7rem 1.2rem; font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: transparent; border: none; color: var(--ink3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; }
.tab-btn.active { color: var(--g1); border-bottom-color: var(--g1); }
.tab-btn:hover { color: var(--g1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Check Cards */
.check-grid { display: flex; flex-direction: column; gap: .75rem; }
.check-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.2rem; display: grid; grid-template-columns: 24px 1fr auto; gap: .75rem; align-items: start; transition: box-shadow .2s; }
.check-card:hover { box-shadow: var(--sh1); }
.check-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; margin-top: 2px; }
.check-icon.ok { background: rgba(22,163,74,.12); color: var(--green); }
.check-icon.fail { background: rgba(220,38,38,.1); color: var(--red); }
.check-icon.warn { background: rgba(217,119,6,.1); color: var(--amber); }
.check-label { font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.check-value { font-size: .78rem; color: var(--ink3); }
.check-detail { font-size: .73rem; color: var(--ink3); margin-top: .3rem; line-height: 1.6; }
.check-score-badge { font-size: .7rem; font-weight: 800; padding: .25rem .6rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.badge-good { background: rgba(22,163,74,.12); color: var(--green); }
.badge-warn { background: rgba(217,119,6,.1); color: var(--amber); }
.badge-bad  { background: rgba(220,38,38,.1); color: var(--red); }

/* Headings Detail */
.headings-detail { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.headings-detail h4 { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--g1); margin-bottom: 1rem; }
.heading-tag { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-right: .4rem; flex-shrink: 0; }
.ht-h1 { background: rgba(232,82,26,.12); color: var(--g1); }
.ht-h2 { background: rgba(192,40,46,.1); color: var(--g2); }
.ht-h3 { background: rgba(194,139,26,.12); color: var(--gold); }
.heading-item { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--ink); }
.heading-item:last-child { border-bottom: none; }
.no-items { font-size: .82rem; color: var(--ink3); font-style: italic; }

/* Issues */
.issues-list { display: flex; flex-direction: column; gap: .75rem; }
.issue-card { border-radius: 10px; padding: 1.2rem 1.4rem; border-left: 4px solid; }
.issue-critical { background: rgba(220,38,38,.05); border-color: #dc2626; }
.issue-high     { background: rgba(234,88,12,.05);  border-color: #ea580c; }
.issue-medium   { background: rgba(217,119,6,.05);  border-color: #d97706; }
.issue-low      { background: rgba(37,99,235,.05);  border-color: #2563eb; }
.issue-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.severity-badge { font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 20px; }
.sev-critical { background: #dc2626; color: #fff; }
.sev-high     { background: #ea580c; color: #fff; }
.sev-medium   { background: #d97706; color: #fff; }
.sev-low      { background: #2563eb; color: #fff; }
.issue-cat { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink3); }
.issue-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.issue-desc { font-size: .8rem; color: var(--ink3); line-height: 1.65; margin-bottom: .5rem; }
.issue-fix { font-size: .78rem; color: var(--ink); font-weight: 600; }
.issue-fix span { color: var(--green); }

/* Recommendations */
.recs-list { display: flex; flex-direction: column; gap: .75rem; }
.rec-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.2rem 1.4rem; display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.rec-priority { width: 42px; flex-shrink: 0; text-align: center; }
.rp-badge { font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .5rem; border-radius: 20px; display: inline-block; }
.rp-high   { background: rgba(220,38,38,.1); color: #dc2626; }
.rp-medium { background: rgba(217,119,6,.1); color: #d97706; }
.rp-low    { background: rgba(37,99,235,.1); color: #2563eb; }
.rec-cat { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--g1); margin-bottom: .3rem; }
.rec-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.rec-desc { font-size: .8rem; color: var(--ink3); line-height: 1.65; margin-bottom: .3rem; }
.rec-impact { font-size: .75rem; color: var(--green); font-weight: 600; }

/* Directories */
.dir-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.dir-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1rem; text-align: center; }
.dir-name { font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.dir-status { font-size: .7rem; font-weight: 600; color: var(--amber); background: rgba(217,119,6,.1); padding: .2rem .6rem; border-radius: 20px; display: inline-block; margin-bottom: .6rem; }
.dir-link { font-size: .7rem; color: var(--g1); text-decoration: none; font-weight: 600; }
.dir-link:hover { text-decoration: underline; }

/* Download CTA */
.download-cta { background: var(--grad); border-radius: 14px; padding: 2.5rem; text-align: center; margin-top: 2.5rem; }
.download-cta h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.download-cta p { font-size: .88rem; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.download-cta .btn { background: #fff; color: var(--g2); font-size: .8rem; padding: .9rem 2.2rem; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.download-cta .btn:hover { background: var(--ink); color: #fff; }

/* ── MODAL ──────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(28,16,8,.6); z-index: 9999; backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 16px; padding: 2.5rem; max-width: 480px; width: 90%; box-shadow: var(--sh3); position: relative; animation: modalIn .3s ease; }
@keyframes modalIn { from { opacity:0; transform:translateY(20px) scale(.97); } to { opacity:1; transform:none; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: var(--canvas); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--ink3); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close:hover { background: var(--line); }
.modal-badge { display: inline-block; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--g1); background: rgba(232,82,26,.08); border: 1px solid rgba(232,82,26,.2); padding: .28rem .7rem; border-radius: 2px; margin-bottom: 1rem; }
.modal h3 { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; }
.modal p { font-size: .85rem; color: var(--ink3); margin-bottom: 1.5rem; line-height: 1.7; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; letter-spacing: .03em; }
.form-group input { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--line); border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--ink); background: var(--off); outline: none; transition: border-color .2s; }
.form-group input:focus { border-color: var(--g1); background: #fff; }
.form-group input::placeholder { color: #bbb; }
.modal .btn { width: 100%; justify-content: center; padding: 1rem; font-size: .8rem; margin-top: .5rem; }
.modal-error { font-size: .78rem; color: var(--red); margin-top: .5rem; display: none; }
.modal-success { text-align: center; display: none; }
.modal-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-success h3 { color: var(--green); margin-bottom: .5rem; }

/* ── PRINT ──────────────────────────────── */
@media print {
    header, #hero, #how, #features, .results-tabs, .download-cta, .modal-overlay, .results-body > *:not(#print-report) { display: none !important; }
    #print-report { display: block !important; }
    body { background: #fff; }
    .print-page { padding: 30px 40px; font-family: 'Montserrat', sans-serif; }
    .print-header { border-bottom: 3px solid #E8521A; padding-bottom: 20px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: flex-start; }
    .print-logo { font-size: 1.3rem; font-weight: 900; color: #1C1008; }
    .print-logo em { color: #E8521A; font-style: normal; }
    .print-date { font-size: .75rem; color: #5A4A3A; text-align: right; }
    .print-score-row { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; }
    .print-score-big { width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; flex-shrink: 0; }
    .print-score-big span { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
    .print-score-big small { font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; }
    .print-site-info h2 { font-size: 1.4rem; font-weight: 800; color: #1C1008; }
    .print-site-info p { font-size: .82rem; color: #5A4A3A; margin: .3rem 0 0; }
    .print-section { margin-bottom: 25px; page-break-inside: avoid; }
    .print-section h3 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #E8521A; border-bottom: 1px solid #EDE8E0; padding-bottom: 6px; margin-bottom: 12px; }
    .print-check-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid #F7F3ED; font-size: .8rem; }
    .print-check-row .label { color: #1C1008; font-weight: 600; }
    .print-check-row .val { color: #5A4A3A; }
    .print-check-row .status-ok  { color: #16a34a; font-weight: 700; }
    .print-check-row .status-bad { color: #dc2626; font-weight: 700; }
    .print-issue { padding: 8px 10px; margin-bottom: 6px; border-left: 3px solid; border-radius: 0 6px 6px 0; }
    .pi-critical { border-color: #dc2626; background: #fef2f2; }
    .pi-high     { border-color: #ea580c; background: #fff7ed; }
    .pi-medium   { border-color: #d97706; background: #fffbeb; }
    .print-issue .pi-sev { font-size: .6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 3px; }
    .print-issue .pi-title { font-size: .8rem; font-weight: 700; color: #1C1008; margin-bottom: 2px; }
    .print-issue .pi-fix { font-size: .73rem; color: #5A4A3A; }
    .print-footer { border-top: 2px solid #EDE8E0; padding-top: 15px; margin-top: 30px; font-size: .72rem; color: #5A4A3A; text-align: center; }
}
#print-report { display: none; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
    nav { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .hero-inner { padding: 3rem 1.2rem; }
    .audit-form { flex-direction: column; }
    .audit-form .submit-btn { border-radius: 0 0 8px 8px; padding: .9rem; }
    .steps, .features-grid { grid-template-columns: 1fr; }
    .stats-inner { gap: 1.5rem; }
    .stat-sep { display: none; }
    .score-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .score-cats { grid-template-columns: repeat(2,1fr); }
    .dir-grid { grid-template-columns: repeat(2,1fr); }
    .results-body { padding: 2rem 1rem 4rem; }
    .check-card { grid-template-columns: 24px 1fr; }
    .check-score-badge { display: none; }
    .rec-card { grid-template-columns: 1fr; }
}
