:root {
    --bg: #080b0d;
    --surface: #11161a;
    --surface-2: #171e23;
    --surface-3: #20282e;
    --text: #f7f7f5;
    --muted: #aeb8be;
    --orange: #e34d00;
    --orange-light: #ff7132;
    --cyan: #38d9e6;
    --green: #28c782;
    --yellow: #f6b83f;
    --red: #ff5b5b;
    --border: rgba(255,255,255,.1);
    --shadow: 0 24px 70px rgba(0,0,0,.38);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 85% 10%, rgba(227,77,0,.16), transparent 28%),
        radial-gradient(circle at 10% 45%, rgba(56,217,230,.08), transparent 24%),
        var(--bg);
    font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

button, input { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }

.page-shell { overflow: hidden; }
.site-header,
main,
.site-footer {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.brand-logo {
    display: block;
    width: 260px;
    max-width: min(52vw, 260px);
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(227,77,0,.08));
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}
.header-link-secondary {
    color: var(--muted);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.02);
}
.header-link-secondary:hover {
    color: var(--text);
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
}
.header-link-primary {
    color: white;
    border: 1px solid rgba(227,77,0,.45);
    background: linear-gradient(135deg, rgba(255,113,50,.18), rgba(227,77,0,.18));
    box-shadow: 0 8px 24px rgba(227,77,0,.16);
}
.header-link-primary:hover {
    transform: translateY(-1px);
    border-color: rgba(255,113,50,.65);
    box-shadow: 0 12px 28px rgba(227,77,0,.22);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    align-items: center;
    gap: 70px;
    min-height: 670px;
    padding: 72px 0 95px;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange));
    opacity: .7;
}
.hero::before { top: 42px; right: 0; }
.hero::after { bottom: 65px; left: 0; transform: rotate(180deg); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }
.hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: clamp(45px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -.055em;
}
.hero-copy > p {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 19px;
}

.audit-form {
    max-width: 720px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(17,22,26,.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.audit-form label {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.input-row { display: flex; gap: 10px; }
.input-row input {
    min-width: 0;
    flex: 1;
    height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    color: var(--text);
    background: #090d10;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.input-row input:focus {
    border-color: var(--orange-light);
    box-shadow: 0 0 0 4px rgba(227,77,0,.12);
}
.input-row button,
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 13px 30px rgba(227,77,0,.28);
    transition: transform .2s, box-shadow .2s;
}
.input-row button:hover,
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(227,77,0,.36); }
.audit-form.is-loading button { pointer-events: none; opacity: .85; }
.button-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .75s linear infinite;
}
.audit-form.is-loading .button-text { display: none; }
.audit-form.is-loading .button-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note { margin: 11px 0 0; color: #7f8b92; font-size: 12px; }

.alert { margin-top: 16px; padding: 14px 17px; border-radius: 12px; }
.alert-error { border: 1px solid rgba(255,91,91,.35); background: rgba(255,91,91,.1); color: #ffb6b6; }

.hero-visual { position: relative; min-height: 450px; }
.radar {
    position: absolute;
    inset: 22px 0 auto auto;
    width: min(430px, 100%);
    aspect-ratio: 1;
    border: 1px solid rgba(56,217,230,.22);
    border-radius: 50%;
    background:
        linear-gradient(rgba(56,217,230,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,217,230,.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(56,217,230,.12), transparent 64%);
    background-size: 40px 40px, 40px 40px, auto;
    box-shadow: inset 0 0 70px rgba(56,217,230,.08), 0 0 80px rgba(227,77,0,.1);
    overflow: hidden;
}
.radar::before,
.radar::after {
    content: "";
    position: absolute;
    background: rgba(56,217,230,.26);
}
.radar::before { left: 50%; top: 0; width: 1px; height: 100%; }
.radar::after { top: 50%; left: 0; width: 100%; height: 1px; }
.radar-ring { position: absolute; inset: 50%; border: 1px solid rgba(56,217,230,.28); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 28%; height: 28%; }
.ring-two { width: 55%; height: 55%; }
.ring-three { width: 82%; height: 82%; }
.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 82%, rgba(227,77,0,.38) 94%, transparent 100%);
    animation: sweep 5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-core {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 138px;
    height: 138px;
    border: 1px solid rgba(227,77,0,.5);
    border-radius: 28px;
    background: rgba(8,11,13,.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(227,77,0,.24);
    padding: 14px;
}
.radar-core img {
    width: 100%;
    height: auto;
    display: block;
}
.signal { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--orange-light); box-shadow: 0 0 20px var(--orange-light); }
.signal-one { top: 23%; left: 35%; }
.signal-two { top: 62%; right: 21%; }
.signal-three { bottom: 21%; left: 24%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.visual-card {
    position: absolute;
    z-index: 3;
    padding: 12px 17px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(17,22,26,.9);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.card-security { top: 30px; left: 0; border-color: rgba(227,77,0,.35); color: var(--orange-light); }
.card-seo { right: -6px; bottom: 90px; color: var(--cyan); }
.card-tech { left: 36px; bottom: 20px; color: white; }

.loading-panel,
.results,
.what-we-check {
    margin-bottom: 90px;
}
.loading-panel {
    position: relative;
    padding: 76px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    background: linear-gradient(145deg, rgba(17,22,26,.96), rgba(8,11,13,.96));
    overflow: hidden;
    box-shadow: var(--shadow);
}
.scanner-line {
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
    animation: scanline 1.6s ease-in-out infinite;
}
@keyframes scanline { to { left: 100%; } }
.loading-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border: 2px solid rgba(255,255,255,.12);
    border-top-color: var(--orange-light);
    border-right-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loading-panel h2 { margin-bottom: 8px; font-size: 34px; }
.loading-panel p { color: var(--muted); }
.progress-track { width: min(520px, 90%); height: 8px; margin: 28px auto 0; border-radius: 99px; background: #060809; overflow: hidden; }
.progress-track span { display: block; width: 5%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--cyan)); transition: width .5s ease; }

.results-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 28px;
}
.results-head h2 { margin: 8px 0 2px; font-size: clamp(34px, 5vw, 56px); letter-spacing: -.04em; }
.result-url { max-width: 720px; color: var(--muted); overflow-wrap: anywhere; }
.button-secondary {
    padding: 13px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    background: var(--surface);
    font-weight: 800;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 18px;
}
.score-card,
.facts-card,
.category-card,
.check-card,
.cta-panel,
.feature-grid article {
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(23,30,35,.96), rgba(12,16,19,.96));
    box-shadow: 0 18px 45px rgba(0,0,0,.23);
}
.score-card {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 250px;
    padding: 30px;
    border-radius: var(--radius);
}
.score-ring {
    --score: 0;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 176px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(var(--orange-light) calc(var(--score) * 1%), rgba(255,255,255,.08) 0);
    box-shadow: 0 0 35px rgba(227,77,0,.16);
}
.score-ring::before {
    content: "";
    grid-area: 1/1;
    width: 138px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0d1215;
    box-shadow: inset 0 0 20px rgba(255,255,255,.04);
}
.score-ring > div { grid-area: 1/1; z-index: 1; text-align: center; }
.score-ring strong { display: block; font-size: 48px; line-height: 1; }
.score-ring span { color: var(--muted); }
.score-label { color: var(--orange-light); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.score-card h3 { margin: 8px 0; font-size: 31px; }
.score-card p { margin-bottom: 0; color: var(--muted); }
.facts-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 1px;
    border-radius: var(--radius);
    overflow: hidden;
}
.facts-card > div { display: flex; flex-direction: column; justify-content: center; min-height: 124px; padding: 20px; background: rgba(8,11,13,.72); }
.facts-card span { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.facts-card strong { margin-top: 5px; font-size: 22px; }

.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 13px; margin-top: 18px; }
.category-card { padding: 18px; border-radius: 17px; }
.category-card span { color: var(--muted); font-size: 12px; font-weight: 800; }
.category-card strong { display: block; margin: 4px 0 10px; font-size: 28px; }
.category-bar { height: 5px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.category-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--cyan)); }

.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; margin: 36px 0 17px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--border); border-radius: 99px; color: var(--muted); background: transparent; font-weight: 800; }
.filter-button span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 6px; padding: 0 6px; border-radius: 99px; background: rgba(255,255,255,.08); color: white; font-size: 11px; }
.filter-button.active { border-color: rgba(227,77,0,.65); color: white; background: rgba(227,77,0,.12); }

.checks-list { display: grid; gap: 12px; }
.check-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    border-radius: 16px;
}
.check-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; font-size: 21px; font-weight: 900; }
.check-card.pass .check-icon { color: var(--green); background: rgba(40,199,130,.11); }
.check-card.warn .check-icon { color: var(--yellow); background: rgba(246,184,63,.12); }
.check-card.fail .check-icon { color: var(--red); background: rgba(255,91,91,.11); }
.check-card h3 { margin: 0 0 3px; font-size: 17px; }
.check-card p { margin: 0; color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.check-category { padding: 6px 9px; border-radius: 99px; color: var(--muted); background: rgba(255,255,255,.06); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 34px;
    padding: 34px;
    border-radius: var(--radius);
    border-color: rgba(227,77,0,.28);
    background:
        radial-gradient(circle at 85% 10%, rgba(227,77,0,.2), transparent 38%),
        linear-gradient(145deg, rgba(23,30,35,.98), rgba(12,16,19,.98));
}
.cta-panel h2 { margin: 9px 0 8px; font-size: clamp(25px, 4vw, 38px); line-height: 1.1; }
.cta-panel p { margin: 0; color: var(--muted); }
.cta-button { white-space: nowrap; }
.disclaimer { margin: 18px 0 0; color: #78858c; font-size: 12px; }

.section-heading { max-width: 760px; margin-bottom: 27px; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(33px, 5vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature-grid article { padding: 25px; border-radius: 18px; }
.feature-grid article > span { color: var(--orange-light); font-size: 12px; font-weight: 900; }
.feature-grid h3 { margin: 15px 0 8px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 40px; border-top: 1px solid var(--border); color: #77848b; font-size: 13px; }


.loading-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}
.loading-brand img {
    width: 210px;
    max-width: 70%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(227,77,0,.12));
}

.alert-warning {
    border: 1px solid rgba(246,184,63,.35);
    background: rgba(246,184,63,.1);
    color: #ffe3a5;
}

.pagespeed-panel {
    margin: 30px 0;
    padding: 30px;
    border: 1px solid rgba(56,217,230,.18);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 92% 6%, rgba(56,217,230,.1), transparent 28%),
        linear-gradient(145deg, rgba(23,30,35,.96), rgba(12,16,19,.98));
    box-shadow: var(--shadow);
}
.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.panel-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -.03em;
}
.cache-badge {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(56,217,230,.25);
    border-radius: 99px;
    color: var(--cyan);
    background: rgba(56,217,230,.08);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.lighthouse-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.lighthouse-card {
    position: relative;
    min-height: 160px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
}
.lighthouse-card::after {
    content: "";
    position: absolute;
    inset: auto -24px -28px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: currentColor;
    opacity: .06;
    filter: blur(3px);
}
.lighthouse-card.pass { color: var(--green); border-color: rgba(40,199,130,.24); }
.lighthouse-card.warn { color: var(--yellow); border-color: rgba(246,184,63,.24); }
.lighthouse-card.fail { color: var(--red); border-color: rgba(255,91,91,.24); }
.lighthouse-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.lighthouse-card strong {
    display: block;
    margin-top: 12px;
    color: currentColor;
    font-size: 46px;
    line-height: 1;
}
.lighthouse-card small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.metric-card {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8,11,13,.48);
}
.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.metric-card strong {
    display: block;
    margin-top: 7px;
    color: var(--text);
    font-size: 20px;
}
.opportunities-wrap {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.opportunities-wrap h3 {
    margin: 0 0 13px;
}
.opportunities-list {
    display: grid;
    gap: 9px;
}
.opportunity-item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(246,184,63,.17);
    border-radius: 13px;
    background: rgba(246,184,63,.045);
}
.opportunity-item i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #111;
    background: var(--yellow);
    font-style: normal;
    font-weight: 900;
}
.opportunity-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
}
.opportunity-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

[hidden] { display: none !important; }

@media (max-width: 980px) {
    .hero { grid-template-columns: 1fr; padding-top: 50px; }
    .hero-visual { display: none; }
    .summary-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .site-header, main, .site-footer { width: min(100% - 24px, 1180px); }
    .hero { min-height: auto; padding: 45px 0 65px; }
    .hero h1 { font-size: 45px; }
    .hero-copy > p { font-size: 16px; }
    .audit-form { padding: 15px; }
    .input-row { flex-direction: column; }
    .input-row button { width: 100%; }
    .results-head { align-items: stretch; flex-direction: column; }
    .score-card { align-items: flex-start; flex-direction: column; }
    .score-ring { width: 148px; }
    .score-ring::before { width: 116px; }
    .facts-card { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .check-card { grid-template-columns: 42px minmax(0, 1fr); }
    .check-category { grid-column: 2; justify-self: start; }
    .cta-panel { align-items: flex-start; flex-direction: column; }
    .cta-button { width: 100%; }
    .feature-grid { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; }
}


@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .header-actions {
        flex-wrap: wrap;
    }
    .brand-logo {
        width: 220px;
        max-width: 72vw;
    }
    .lighthouse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-link {
        width: 100%;
        display: inline-flex;
    }
    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .brand-logo {
        width: 190px;
    }
    .pagespeed-panel {
        padding: 20px;
    }
    .panel-heading {
        flex-direction: column;
    }
    .lighthouse-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}


.turnstile-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.turnstile-widget {
    min-height: 65px;
    width: 100%;
}
.turnstile-widget iframe {
    max-width: 100%;
}
.turnstile-status {
    max-width: 220px;
    color: #8f9ba2;
    font-size: 12px;
    line-height: 1.45;
}
.turnstile-status.is-success { color: #7ee0b1; }
.turnstile-status.is-error { color: #ff9d9d; }
.input-row button:disabled {
    cursor: not-allowed;
    opacity: .48;
    transform: none;
    box-shadow: none;
}
@media (max-width: 680px) {
    .turnstile-row {
        grid-template-columns: 1fr;
    }
    .turnstile-status {
        max-width: none;
    }
}

/* SiteSOS Check v1.0 */
.card-accessibility { right: 16%; bottom: 6%; border-color: rgba(246,184,63,.35); color: #ffd978; }

.report-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(17,22,26,.78);
}
.report-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: var(--text);
    background: rgba(255,255,255,.035);
    font-weight: 800;
    text-decoration: none;
}
.report-action:hover { border-color: rgba(255,113,50,.55); transform: translateY(-1px); }
.report-action-primary { border-color: rgba(227,77,0,.5); background: rgba(227,77,0,.15); }
.report-expiry { margin-left: auto; color: var(--muted); font-size: 12px; }

.check-main { min-width: 0; }
.check-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.check-title-row h3 { margin: 0; }
.priority-badge {
    display: inline-flex;
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.check-card.fail .priority-badge { color: #ffb0b0; border-color: rgba(255,91,91,.3); }
.check-card.warn .priority-badge { color: #ffd781; border-color: rgba(246,184,63,.3); }
.check-card.pass .priority-badge { color: #8fe6ba; border-color: rgba(40,199,130,.3); }
.check-details { margin-top: 12px; }
.check-details summary { color: var(--orange-light); font-size: 12px; font-weight: 800; cursor: pointer; }
.check-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0; }
.check-detail-grid > div { padding: 13px; border: 1px solid var(--border); border-radius: 12px; background: rgba(8,11,13,.4); }
.check-detail-grid strong { display: block; margin-bottom: 5px; font-size: 12px; }
.check-detail-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.check-details > a { color: var(--cyan); font-size: 12px; font-weight: 800; text-decoration: none; }

.content-section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,.07); }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.section-heading h2 { margin: 12px 0 12px; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.04; letter-spacing: -.04em; }
.section-heading > p { color: var(--muted); font-size: 17px; }
.feature-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid-six article { min-height: 220px; }

.steps-section { position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(32,40,46,.82), rgba(13,18,22,.82));
}
.steps-grid strong { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 20px; border-radius: 14px; color: white; background: linear-gradient(135deg,var(--orange-light),var(--orange)); font-size: 21px; }
.steps-grid h3 { margin-bottom: 8px; }
.steps-grid p { margin: 0; color: var(--muted); }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); border-radius: 16px; background: rgba(17,22,26,.72); overflow: hidden; }
.faq-list summary { padding: 20px 22px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--orange-light); font-size: 22px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.site-footer { align-items: center; gap: 22px; padding: 42px 0; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.site-footer > div { display: flex; align-items: center; gap: 14px; }
.site-footer img { width: 130px; height: auto; }
.site-footer p { margin: 0; font-size: 12px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin-left: auto; }
.site-footer a { text-decoration: none; font-size: 13px; font-weight: 700; }
.site-footer a:hover { color: var(--orange-light); }

.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 18px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; width: min(560px, 100%); max-height: calc(100vh - 36px); overflow: auto; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #11181d; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.modal-dialog h2 { margin: 10px 0 7px; font-size: 32px; }
.modal-dialog > p { color: var(--muted); }
.modal-close { position: absolute; top: 13px; right: 13px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; color: white; background: rgba(255,255,255,.04); font-size: 25px; }
.modal-dialog form > label:not(.consent-row) { display: block; margin: 16px 0 7px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.modal-dialog input[type="text"], .modal-dialog input[type="email"] { width: 100%; height: 52px; padding: 0 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: var(--text); background: #0a0f12; outline: none; }
.modal-dialog input:focus { border-color: var(--orange-light); box-shadow: 0 0 0 3px rgba(227,77,0,.13); }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 17px 0; color: var(--muted); font-size: 12px; }
.consent-row input { margin-top: 3px; }
.consent-row a { color: var(--cyan); }
.full-width { width: 100%; margin-top: 14px; border: 0; }
.alert-success { border: 1px solid rgba(40,199,130,.35); background: rgba(40,199,130,.1); color: #a7efd0; }
.modal-open { overflow: hidden; }
.email-report-form.is-loading .button-loader, #email-report-form.is-loading .button-loader { display: inline-block; }

@media (max-width: 980px) {
    .feature-grid-six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: 1fr; }
    .report-expiry { width: 100%; margin-left: 0; }
}
@media (max-width: 680px) {
    .feature-grid-six { grid-template-columns: 1fr; }
    .check-detail-grid { grid-template-columns: 1fr; }
    .report-action { width: 100%; }
    .site-footer > div { align-items: flex-start; flex-direction: column; }
    .site-footer nav { margin-left: 0; }
    .modal-dialog { padding: 24px 18px; }
}

/* SiteSOS Check v1.1 – rezultate progresive */
.score-ring { transition: background .55s ease, box-shadow .55s ease; }
.score-ring strong { transition: color .3s ease; }
.category-bar i { transition: width .65s ease; }

.report-pending {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
    padding: 17px 19px;
    border: 1px solid rgba(56,217,230,.22);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(56,217,230,.08), rgba(227,77,0,.07));
}
.report-pending strong { display: block; margin-bottom: 3px; }
.report-pending p { margin: 0; color: var(--muted); font-size: 13px; }
.progressive-spinner {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.12);
    border-top-color: var(--orange-light);
    border-right-color: var(--cyan);
    border-radius: 50%;
    animation: spin .85s linear infinite;
}

.pagespeed-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}
.status-badge.is-running {
    color: var(--yellow);
    border-color: rgba(246,184,63,.28);
    background: rgba(246,184,63,.09);
}
.status-badge.is-complete {
    color: var(--green);
    border-color: rgba(40,199,130,.28);
    background: rgba(40,199,130,.09);
}
.status-badge.is-error {
    color: #ff9d9d;
    border-color: rgba(255,91,91,.3);
    background: rgba(255,91,91,.09);
}

.lighthouse-skeleton,
.metric-skeleton {
    position: relative;
    overflow: hidden;
}
.lighthouse-skeleton::before,
.metric-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.075), transparent);
    animation: progressive-shimmer 1.55s ease-in-out infinite;
}
.lighthouse-skeleton {
    color: var(--muted);
    border-color: rgba(56,217,230,.14);
}
.lighthouse-skeleton strong,
.metric-skeleton strong { color: rgba(255,255,255,.28); }
@keyframes progressive-shimmer { to { transform: translateX(105%); } }

@media (max-width: 680px) {
    .report-pending { align-items: flex-start; }
    .pagespeed-badges { justify-content: flex-start; }
}

/* SiteSOS Check v1.2 – bannere contextuale pentru servicii */
.sitesos-promo {
    --promo-accent: var(--orange-light);
    --promo-accent-rgb: 255, 113, 50;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 148px;
    margin: 6px 0;
    padding: 24px 26px;
    border: 1px solid rgba(var(--promo-accent-rgb), .34);
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 10%, rgba(var(--promo-accent-rgb), .18), transparent 34%),
        linear-gradient(135deg, rgba(25, 32, 37, .98), rgba(9, 13, 16, .98));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .035);
    overflow: hidden;
    animation: promo-reveal .42s ease both;
}
.sitesos-promo::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--promo-accent), transparent 82%);
    box-shadow: 0 0 22px rgba(var(--promo-accent-rgb), .42);
}
.sitesos-promo::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -55px;
    bottom: -82px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(var(--promo-accent-rgb), .2);
    border-radius: 50%;
    box-shadow:
        0 0 0 24px rgba(var(--promo-accent-rgb), .035),
        0 0 0 54px rgba(var(--promo-accent-rgb), .022);
}
.sitesos-promo.promo-security {
    --promo-accent: #ff6a55;
    --promo-accent-rgb: 255, 106, 85;
}
.sitesos-promo.promo-seo {
    --promo-accent: var(--cyan);
    --promo-accent-rgb: 56, 217, 230;
}
.sitesos-promo.promo-maintenance {
    --promo-accent: var(--green);
    --promo-accent-rgb: 40, 199, 130;
}
.sitesos-promo.promo-design {
    --promo-accent: #b997ff;
    --promo-accent-rgb: 185, 151, 255;
}
.sitesos-promo-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(var(--promo-accent-rgb), .32);
    border-radius: 18px;
    color: var(--promo-accent);
    background: rgba(var(--promo-accent-rgb), .09);
    box-shadow: inset 0 0 22px rgba(var(--promo-accent-rgb), .07);
}
.sitesos-promo-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sitesos-promo-copy { min-width: 0; }
.sitesos-promo-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--promo-accent);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.sitesos-promo h3 {
    margin: 0 0 7px;
    max-width: 740px;
    color: var(--text);
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.13;
    letter-spacing: -.025em;
}
.sitesos-promo p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.sitesos-promo-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(var(--promo-accent-rgb), .45);
    border-radius: 12px;
    color: #fff;
    background: rgba(var(--promo-accent-rgb), .12);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.sitesos-promo-cta:hover,
.sitesos-promo-cta:focus-visible {
    border-color: var(--promo-accent);
    background: rgba(var(--promo-accent-rgb), .2);
    box-shadow: 0 10px 28px rgba(var(--promo-accent-rgb), .13);
    transform: translateY(-2px);
}
.sitesos-promo-cta:focus-visible {
    outline: 2px solid var(--promo-accent);
    outline-offset: 3px;
}
.sitesos-promo-cta span {
    color: var(--promo-accent);
    font-size: 18px;
    line-height: 1;
}
@keyframes promo-reveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 820px) {
    .sitesos-promo {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
    }
    .sitesos-promo-icon {
        width: 54px;
        height: 54px;
        border-radius: 15px;
    }
    .sitesos-promo-cta {
        grid-column: 1 / -1;
        width: 100%;
    }
}
@media (max-width: 520px) {
    .sitesos-promo {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 18px;
    }
    .sitesos-promo-icon {
        width: 50px;
        height: 50px;
    }
    .sitesos-promo h3 { font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
    .sitesos-promo { animation: none; }
    .sitesos-promo-cta { transition: none; }
}
@media print {
    .sitesos-promo { display: none !important; }
}


/* SiteSOS Check v1.3 – SEO, GEO & editorial content */
.methodology-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.methodology-card,
.editorial-panel article,
.limits-grid article,
.audience-grid article {
    position: relative;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(27,34,39,.88), rgba(10,14,17,.86));
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
    overflow: hidden;
}
.methodology-card::before,
.editorial-panel article::before,
.limits-grid article::before,
.audience-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(227,77,0,.0), rgba(227,77,0,.75), rgba(56,217,230,.0));
    opacity: .75;
}
.methodology-card strong,
.methodology-card h3,
.editorial-panel h3,
.limits-grid h3,
.audience-grid h3 { margin: 0 0 10px; }
.methodology-card p,
.editorial-panel p,
.limits-grid p,
.audience-grid p { margin: 0; color: var(--muted); }
.methodology-card-featured {
    grid-row: span 2;
    padding: 28px;
    background: radial-gradient(circle at top right, rgba(227,77,0,.17), transparent 34%), linear-gradient(145deg, rgba(28,35,40,.96), rgba(9,14,18,.9));
}
.methodology-card-featured h3 {
    margin-bottom: 14px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.14;
}
.method-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(227,77,0,.22);
    border-radius: 999px;
    color: var(--orange-light);
    background: rgba(227,77,0,.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.editorial-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 22px;
    align-items: start;
}
.editorial-copy {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(18,23,27,.88), rgba(9,13,16,.85));
    box-shadow: var(--shadow);
}
.editorial-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
}
.editorial-copy p:last-child { margin-bottom: 0; }
.editorial-panel {
    display: grid;
    gap: 16px;
}
.editorial-panel span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.limits-grid,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.limits-grid article { min-height: 205px; }
.audience-grid article { min-height: 190px; }
@media (max-width: 1080px) {
    .methodology-grid { grid-template-columns: 1fr 1fr; }
    .methodology-card-featured { grid-column: 1 / -1; grid-row: auto; }
    .limits-grid,
    .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
    .editorial-shell,
    .methodology-grid,
    .limits-grid,
    .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .editorial-copy,
    .methodology-card,
    .editorial-panel article,
    .limits-grid article,
    .audience-grid article { padding: 20px; }
    .editorial-copy p { font-size: 15px; }
}
