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

:root {
    --bg:      #08080f;
    --surface: #0e0e1c;
    --card:    #121225;
    --border:  rgba(255,255,255,0.07);
    --text:    #e2e8f0;
    --muted:   #64748b;
    --accent:  #6366f1;
    --purple:  #a855f7;
    --green:   #22c55e;
    --yellow:  #eab308;
    --red:     #ef4444;
    --orange:  #f97316;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* ── Header ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(8,8,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.beta-tag {
    font-size: .6rem;
    font-weight: 700;
    background: rgba(99,102,241,.14);
    border: 1px solid rgba(99,102,241,.35);
    color: #a5b4fc;
    padding: .18rem .55rem;
    border-radius: 100px;
    letter-spacing: .09em;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 1;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
nav a:hover { color: var(--text); }

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff !important;
    padding: .5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 7rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.18), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.35);
    color: #a5b4fc;
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1.3rem;
}

.grad {
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 2.8rem;
    line-height: 1.65;
}

/* ── URL Form ── */
.url-form { max-width: 580px; margin: 0 auto; }

.input-row {
    display: flex;
    gap: .4rem;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: .5rem;
    transition: border-color .25s;
}
.input-row:focus-within { border-color: rgba(99,102,241,.55); box-shadow: 0 0 0 4px rgba(99,102,241,.08); }

#url-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 1rem;
    padding: .5rem .8rem;
    min-width: 0;
}
#url-input::placeholder { color: var(--muted); }

#analyse-btn {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .75rem 1.6rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s, transform .1s;
    flex-shrink: 0;
}
#analyse-btn:hover { opacity: .88; transform: translateY(-1px); }
#analyse-btn:active { transform: translateY(0); }
#analyse-btn:disabled { opacity: .45; cursor: default; transform: none; }

.hint {
    font-size: .8rem;
    color: var(--muted);
    margin-top: .85rem;
    text-align: center;
}

/* ── Results ── */
.results-section { padding: 2.5rem 2rem; }
.results-section.hidden { display: none; }
.results-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }

/* Score card */
.score-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
}

.score-ring-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}
.score-ring-wrap svg { width: 100%; height: 100%; }
#score-arc { transition: stroke-dashoffset 1s cubic-bezier(.22,1,.36,1), stroke .4s; }

.ring-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ring-score { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.ring-max   { font-size: .7rem; color: var(--muted); margin-top: .15rem; }

.score-grade-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .3rem; }
.score-grade   { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.grade-guide-link {
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dashed rgba(100,116,139,.4);
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    align-self: flex-end;
    padding-bottom: .1rem;
}
.grade-guide-link:hover { color: var(--text); border-color: var(--text); }
.score-host    { font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.score-summary { font-size: 1rem; color: var(--text); line-height: 1.55; }

/* Categories grid */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: .85rem;
}

.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    transition: border-color .2s;
}
.cat-card:hover { border-color: rgba(99,102,241,.3); }

.cat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .7rem;
}
.cat-name { display: flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .9rem; }
.cat-status { font-size: 1rem; }

.bar-track {
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: .55rem;
}
.bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width .9s cubic-bezier(.22,1,.36,1);
}

.cat-detail { font-size: .78rem; color: var(--muted); line-height: 1.45; }
.recs-none  { color: var(--muted); font-size: .95rem; }

.cat-value {
    margin-top: .55rem;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 7px;
    padding: .45rem .65rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: .73rem;
    color: #a5b4fc;
    word-break: break-word;
    white-space: pre-wrap;
    line-height: 1.5;
}

/* Recommendations */
.recs-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
}
.recs-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 1.5rem; }

.rec-item {
    border-top: 1px solid var(--border);
    padding: 1.4rem 0;
}
.rec-item:first-of-type { border-top: none; padding-top: 0; }

.rec-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }

.priority {
    font-size: .68rem;
    font-weight: 800;
    padding: .2rem .65rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .07em;
    flex-shrink: 0;
}
.priority.high   { background: rgba(239,68,68,.14); color: #f87171; }
.priority.medium { background: rgba(234,179,8,.14);  color: #fbbf24; }
.priority.low    { background: rgba(34,197,94,.14);  color: #4ade80; }

.rec-title { font-weight: 700; font-size: .95rem; }

.rec-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: .85rem;
}

.code-block {
    position: relative;
    background: #06060d;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    padding-right: 5.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: .78rem;
    color: #a5b4fc;
    white-space: pre;
    overflow-x: auto;
    line-height: 1.55;
}

.example-tag {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.28);
    color: #818cf8;
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .65rem;
    border-radius: 6px;
    letter-spacing: .05em;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

/* ── What we check ── */
.checks-section { padding: 5rem 2rem; }
.checks-wrap { max-width: 860px; margin: 0 auto; }

.checks-wrap h2 {
    font-size: 1.9rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: .6rem;
    letter-spacing: -0.03em;
}
.checks-sub {
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 2.5rem;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: .85rem;
}

.check-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color .2s, transform .2s;
}
.check-item:hover { border-color: rgba(99,102,241,.3); transform: translateY(-2px); }

.ci-icon { font-size: 1.6rem; margin-bottom: .65rem; }
.check-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.check-item p  { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── Why section ── */
.why-section {
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}
.why-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.why-wrap h2 {
    font-size: 1.9rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}
.why-text p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.why-text p:last-child { margin-bottom: 0; }
.why-text strong { color: var(--text); }

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.stat-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem 1rem;
    text-align: center;
}
.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: .35rem;
}
.stat-label {
    font-size: .73rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.3;
}

/* ── Footer ── */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    font-size: .82rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.footer-tagline {
    font-weight: 600;
    color: var(--text);
    font-size: .85rem;
}
footer a {
    color: var(--muted);
    text-decoration: none;
}
footer a:hover { color: var(--text); }

/* ── Loading overlay ── */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(8,8,15,.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-overlay.hidden { display: none; }

.loading-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 3.5rem;
    text-align: center;
    min-width: 260px;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(99,102,241,.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .75s linear infinite;
    margin: 0 auto 1.1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

#loading-text { font-size: .9rem; color: var(--muted); }

/* ── Error banner ── */
.error-banner {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 12px;
    color: #f87171;
    font-size: .9rem;
    padding: 1rem 1.4rem;
    text-align: center;
    max-width: 860px;
    margin: 1.5rem auto;
    display: none;
}

/* ── Print header (screen: hidden) ── */
.print-header { display: none; }

/* ── Report actions ── */
.report-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem 1.3rem;
}

.report-actions-label {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600;
}

.report-btns { display: flex; gap: .6rem; }

.report-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: .82rem;
    font-weight: 700;
    padding: .45rem 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.report-btn:hover {
    border-color: rgba(99,102,241,.5);
    background: rgba(99,102,241,.08);
}

/* ── Disclaimer ── */
.disclaimer {
    max-width: 580px;
    margin: 1.5rem auto 0;
    text-align: left;
}

.disclaimer details {
    background: rgba(234,179,8,.06);
    border: 1px solid rgba(234,179,8,.25);
    border-radius: 12px;
    overflow: hidden;
}

.disclaimer summary {
    padding: .75rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    color: #fbbf24;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.disclaimer summary::-webkit-details-marker { display: none; }
.disclaimer summary::marker { display: none; }
.disclaimer details[open] summary { border-bottom: 1px solid rgba(234,179,8,.2); }

.disclaimer-body {
    padding: 1.1rem 1.3rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.disclaimer-body p { margin: 0; }
.disclaimer-body strong { color: var(--text); }

.disclaimer-body ul {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.disclaimer-body code {
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    padding: .1rem .4rem;
    font-family: 'Courier New', monospace;
    font-size: .78rem;
    color: #a5b4fc;
}

.disclaimer-note {
    font-size: .76rem;
    color: rgba(100,116,139,.7);
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: .6rem;
    margin-top: .2rem;
}

/* ── Rating section ── */
.rating-section { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.rating-wrap { max-width: 860px; margin: 0 auto; }
.rating-wrap h2 {
    font-size: 1.9rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: .6rem;
    letter-spacing: -0.03em;
}

.rating-table-wrap {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.rating-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.rating-table thead tr {
    border-bottom: 2px solid var(--border);
}

.rating-table th {
    text-align: left;
    padding: .85rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
}

.rating-table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}

.rating-table tbody tr:last-child td { border-bottom: none; }

.rating-table tbody tr:hover td { background: rgba(255,255,255,.02); }

.rating-table td:last-child { color: var(--muted); font-size: .85rem; }

.grade-badge {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.grade-a-plus { color: #22c55e; }
.grade-a      { color: #22c55e; }
.grade-b      { color: #84cc16; }
.grade-c      { color: #eab308; }
.grade-d      { color: #f97316; }
.grade-f      { color: #ef4444; }

/* Score breakdown grid */
.score-breakdown { margin-top: .5rem; }

.score-breakdown h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .7rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem 1rem;
}

.bi-icon { font-size: 1.2rem; flex-shrink: 0; }

.bi-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
}

.bi-pts {
    font-size: .75rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: .1rem;
}

/* ── Feedback section ── */
.feedback-section {
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}
.feedback-wrap {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.feedback-wrap h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: .6rem;
    letter-spacing: -0.03em;
}

.feedback-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.star-row {
    display: flex;
    gap: .35rem;
}

.star-btn {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: rgba(255,255,255,.15);
    cursor: pointer;
    padding: .1rem .15rem;
    line-height: 1;
    transition: color .12s, transform .12s;
}
.star-btn:hover,
.star-btn.lit { color: #eab308; }
.star-btn:hover { transform: scale(1.18); }
.star-btn:disabled { cursor: default; opacity: .6; }

#feedback-msg {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    padding: .75rem 1rem;
    resize: vertical;
    transition: border-color .2s;
    outline: none;
}
#feedback-msg:focus { border-color: rgba(99,102,241,.5); }
#feedback-msg::placeholder { color: var(--muted); }
#feedback-msg:disabled { opacity: .5; }

#feedback-submit {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .7rem 2rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
    width: 100%;
}
#feedback-submit:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
#feedback-submit:disabled { opacity: .45; cursor: default; transform: none; }

.feedback-status {
    font-size: .87rem;
    font-weight: 600;
    margin: 0;
}
.feedback-status.hidden { display: none; }
.feedback-status.fb-ok    { color: var(--green); }
.feedback-status.fb-error { color: #f87171; }

/* ── Print styles ── */
@media print {
    /* Force colour rendering */
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

    /* Hide everything except the report */
    header, .hero, .why-section, .checks-section, .rating-section, .feedback-section, footer,
    .loading-overlay, .disclaimer, .report-actions, .example-tag { display: none !important; }

    /* Show print header */
    .print-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 1rem;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #6366f1;
    }
    .ph-logo { font-size: 1.1rem; font-weight: 900; color: #000; }
    .ph-meta { text-align: right; }
    .ph-site { font-size: .95rem; font-weight: 700; color: #000; }
    .ph-date { font-size: .8rem; color: #555; margin-top: .2rem; }

    /* Page setup */
    body { background: #fff !important; color: #111 !important; font-size: 11pt; }

    .results-section {
        display: block !important;
        padding: 0 !important;
    }

    .results-wrap { gap: 1rem; }

    /* Score card */
    .score-card {
        background: #f8f8ff !important;
        border: 1.5px solid #e0e0f0 !important;
        border-radius: 12px;
        break-inside: avoid;
    }
    .ring-score, .score-grade { color: inherit !important; }
    .score-host, .score-summary { color: #333 !important; }

    /* Category cards */
    .categories { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
    .cat-card {
        background: #f8f8ff !important;
        border: 1px solid #e0e0f0 !important;
        break-inside: avoid;
    }
    .cat-detail { color: #555 !important; }

    /* Recommendations */
    .recs-card {
        background: #f8f8ff !important;
        border: 1.5px solid #e0e0f0 !important;
        break-inside: avoid;
    }
    .recs-card h3 { color: #111 !important; }
    .rec-title { color: #111 !important; }
    .rec-desc  { color: #444 !important; }
    .rec-item  { border-top-color: #e0e0f0 !important; break-inside: avoid; }

    /* Value excerpts */
    .cat-value {
        background: #f4f4f8 !important;
        border-color: #d0d0e8 !important;
        color: #3730a3 !important;
        font-size: 7.5pt;
    }

    /* Code blocks */
    .code-block {
        background: #f4f4f8 !important;
        border-color: #d0d0e8 !important;
        color: #3730a3 !important;
        font-size: 8pt;
        white-space: pre-wrap;
        word-break: break-word;
    }

    /* Priority badges */
    .priority.high   { background: #fee2e2 !important; color: #b91c1c !important; }
    .priority.medium { background: #fef9c3 !important; color: #854d0e !important; }
    .priority.low    { background: #dcfce7 !important; color: #166534 !important; }

    /* Bar fills */
    .bar-track { background: #e5e7eb !important; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
    header { padding: 1rem 1.2rem; }
    .hero { padding: 4rem 1.2rem 3rem; }
    .input-row { flex-direction: column; }
    #analyse-btn { width: 100%; justify-content: center; }
    .score-card { flex-direction: column; text-align: center; gap: 1.2rem; }
    .results-section { padding: 1.5rem 1.2rem; }
    .recs-card { padding: 1.5rem 1.2rem; }
    .why-section { padding: 3rem 1.2rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .checks-section { padding: 3rem 1.2rem; }
    .rating-section { padding: 3rem 1.2rem; }
    .feedback-section { padding: 3rem 1.2rem; }
    .feedback-card { padding: 1.5rem 1.2rem; }
    .rating-table th:nth-child(4),
    .rating-table td:nth-child(4) { display: none; }
}
