/* ==========================================================================
   ReportConsumer.in - Custom Professional Stylesheet
   A Consumer Protection Platform
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #f8f9fc;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1e3a8a; text-decoration: none; transition: color .2s; }
a:hover { color: #f97316; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: 'Source Serif 4', 'Georgia', serif; color: #0f172a; line-height: 1.25; }
h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* --- Top Bar --- */
.topbar {
    background: #0f172a;
    color: #94a3b8;
    font-size: .8rem;
    padding: .45rem 0;
    border-bottom: 2px solid #f97316;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar__left { display: flex; gap: 1.5rem; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: .35rem; }
.topbar__item svg { flex-shrink: 0; }
.topbar__right { display: flex; gap: 1rem; }
.topbar__right a, .topbar__link-btn { color: #cbd5e1; background: none; border: none; cursor: pointer; font-size: .8rem; }
.topbar__right a:hover, .topbar__link-btn:hover { color: #f97316; }

/* --- Header --- */
.header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(15,23,42,.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
}
.header__logo-icon { flex-shrink: 0; }
.header__logo-text {
    font-size: 1.3rem;
    color: #1e3a8a;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.15;
}
.header__logo-text strong { font-weight: 800; }
.header__logo-sub {
    display: block;
    font-size: .65rem;
    color: #64748b;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 500;
}

.header__nav {
    display: flex;
    gap: .15rem;
}
.header__nav a {
    padding: .5rem .85rem;
    color: #334155;
    font-size: .875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all .2s;
}
.header__nav a:hover { background: #f1f5f9; color: #1e3a8a; }
.header__nav a.active {
    color: #1e3a8a;
    background: #eff6ff;
    font-weight: 600;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.header__burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #334155;
    border-radius: 2px;
    transition: .3s;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    padding: 4rem 0 3.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(249,115,22,.15);
    border: 1px solid rgba(249,115,22,.3);
    color: #fdba74;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hero h1 {
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.hero h1 span { color: #f97316; }
.hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero__search {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    max-width: 600px;
}
.hero__search input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1a1a2e;
    background: #fff;
    min-width: 0;
}
.hero__search input::placeholder { color: #94a3b8; }
.hero__search button {
    padding: .85rem 1.75rem;
    background: #f97316;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    transition: background .2s;
    white-space: nowrap;
}
.hero__search button:hover { background: #ea580c; }
.hero__examples {
    margin-top: 1rem;
    font-size: .85rem;
    color: #94a3b8;
}
.hero__examples a {
    color: #93c5fd;
    border-bottom: 1px dashed #93c5fd;
    margin: 0 .15rem;
}
.hero__examples a:hover { color: #f97316; border-color: #f97316; }

/* --- Stats Strip --- */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}
.stats-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stats-strip__item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: 'Inter', sans-serif;
}
.stats-strip__item span {
    font-size: .8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

/* --- Section --- */
.section { padding: 3.5rem 0; }
.section--alt { background: #fff; }
.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.section__header h2 { margin: 0; }
.section__header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #f97316;
    margin-top: .5rem;
    border-radius: 2px;
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}
.card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}
.card:hover {
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
    transform: translateY(-2px);
}
.card__body { padding: 1.25rem; }
.card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f1f5f9;
}
.card__logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.card__meta {
    font-size: .8rem;
    color: #64748b;
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: .5rem;
}
.card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: #0f172a;
    line-height: 1.35;
}
.card__title a { color: inherit; }
.card__title a:hover { color: #1e3a8a; }
.card__desc {
    font-size: .875rem;
    color: #475569;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Company card horizontal */
.company-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: box-shadow .25s;
}
.company-card:hover { box-shadow: 0 4px 16px rgba(15,23,42,.06); }

/* --- Ratings --- */
.stars { display: inline-flex; gap: 2px; }
.stars .star { color: #e2e8f0; font-size: 1rem; }
.stars .star.filled { color: #f59e0b; }
.rating-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.rating-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .35rem;
    font-size: .85rem;
}
.rating-bar__label { width: 2rem; text-align: right; color: #64748b; font-weight: 500; }
.rating-bar__track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar__fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width .3s;
}
.rating-bar__count { width: 2rem; text-align: left; color: #94a3b8; font-size: .8rem; }

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.badge--success { background: #dcfce7; color: #166534; }
.badge--warning { background: #fef3c7; color: #92400e; }
.badge--danger { background: #fee2e2; color: #991b1b; }
.badge--info { background: #dbeafe; color: #1e40af; }
.badge--primary { background: #eff6ff; color: #1e3a8a; }
.badge--secondary { background: #f1f5f9; color: #475569; }
.badge--orange { background: #fff7ed; color: #c2410c; }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .65rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 1.35rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    line-height: 1.4;
}
.btn--primary { background: #1e3a8a; color: #fff; }
.btn--primary:hover { background: #1e40af; color: #fff; }
.btn--orange { background: #f97316; color: #fff; }
.btn--orange:hover { background: #ea580c; color: #fff; }
.btn--outline { background: transparent; border: 1.5px solid #cbd5e1; color: #334155; }
.btn--outline:hover { border-color: #1e3a8a; color: #1e3a8a; }
.btn--sm { padding: .4rem .85rem; font-size: .8rem; }
.btn--ghost { background: transparent; color: #1e3a8a; padding: .4rem .5rem; }
.btn--ghost:hover { background: #eff6ff; }
.btn--white { background: #fff; color: #1e3a8a; }
.btn--white:hover { background: #f1f5f9; color: #1e3a8a; }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    font-size: .875rem;
    color: #334155;
}
.form-control {
    width: 100%;
    padding: .7rem .85rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #1a1a2e;
    transition: border-color .2s, box-shadow .2s;
    font-size: .9rem;
}
.form-control:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,.1);
}
.form-control--textarea { min-height: 120px; resize: vertical; }
select.form-control { appearance: auto; }
.form-hint { font-size: .8rem; color: #64748b; margin-top: .25rem; }
.form-error { color: #dc2626; font-size: .8rem; margin-top: .25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 2.5rem 0 2rem;
    color: #fff;
}
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p { color: #94a3b8; font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    gap: .5rem;
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}
.breadcrumb a { color: #93c5fd; }
.breadcrumb span { color: #64748b; }

/* --- Reviews --- */
.review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: box-shadow .2s;
}
.review-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,.05); }
.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: .75rem;
    gap: 1rem;
}
.review-card__user {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.review-card__username { font-weight: 600; font-size: .9rem; color: #0f172a; }
.review-card__date { font-size: .8rem; color: #94a3b8; }
.review-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; color: #0f172a; }
.review-card__content { font-size: .9rem; color: #475569; line-height: 1.7; margin-bottom: 1rem; }
.review-card__pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.review-card__pros h5, .review-card__cons h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; font-family: 'Inter', sans-serif; }
.review-card__pros h5 { color: #16a34a; }
.review-card__cons h5 { color: #dc2626; }
.review-card__pros li, .review-card__cons li { font-size: .85rem; color: #475569; padding: .15rem 0; padding-left: 1rem; position: relative; }
.review-card__pros li::before { content: '+'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.review-card__cons li::before { content: '−'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.review-card__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: .75rem;
    border-top: 1px solid #f1f5f9;
    font-size: .85rem;
}
.review-card__vote {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
    color: #64748b;
    background: none;
    border: 1px solid #e2e8f0;
    padding: .3rem .65rem;
    border-radius: 6px;
    font-size: .8rem;
    transition: all .2s;
}
.review-card__vote:hover { border-color: #1e3a8a; color: #1e3a8a; }

/* --- Complaint --- */
.complaint-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #f59e0b;
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow .2s;
}
.complaint-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,.05); }
.complaint-card[data-status="resolved"] { border-left-color: #16a34a; }
.complaint-card[data-status="open"] { border-left-color: #f59e0b; }
.complaint-card[data-status="under_review"] { border-left-color: #3b82f6; }
.complaint-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .5rem; gap: .5rem; flex-wrap: wrap; }

/* --- Scam Alert Card --- */
.scam-card {
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}
.scam-card::before {
    content: 'SCAM ALERT';
    position: absolute;
    top: 12px;
    right: -28px;
    background: #dc2626;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: .15rem 2rem;
    transform: rotate(45deg);
    letter-spacing: .1em;
}

/* --- Content Layout --- */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    padding: 2.5rem 0;
}
.content-layout--wide { grid-template-columns: 1fr; }

/* --- Sidebar --- */
.sidebar__widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.sidebar__widget h4 {
    font-size: .95rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f1f5f9;
}

/* --- Category Grid --- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all .2s;
}
.cat-card:hover { border-color: #1e3a8a; box-shadow: 0 4px 12px rgba(15,23,42,.06); transform: translateY(-2px); }
.cat-card__icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 12px;
}
.cat-card__name { font-weight: 600; font-size: .9rem; color: #0f172a; margin-bottom: .2rem; }
.cat-card__count { font-size: .75rem; color: #64748b; }

/* --- About Page --- */
.about-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 3.5rem 0;
    color: #fff;
    text-align: center;
}
.about-content { max-width: 800px; margin: 0 auto; }
.about-founder {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}
.about-founder__img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.about-founder h3 { margin-bottom: .25rem; }
.about-founder__role { color: #f97316; font-weight: 600; font-size: .9rem; }

/* --- Alerts --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: .9rem;
    font-weight: 500;
}
.alert--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* --- Auth Pages --- */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 1rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(15,23,42,.06);
}
.auth-card h2 { text-align: center; margin-bottom: .5rem; }
.auth-card__sub { text-align: center; color: #64748b; font-size: .9rem; margin-bottom: 2rem; }

/* --- Trust Score Circle --- */
.trust-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.trust-circle--high { background: linear-gradient(135deg, #16a34a, #22c55e); }
.trust-circle--mid { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.trust-circle--low { background: linear-gradient(135deg, #dc2626, #ef4444); }

/* --- Pagination --- */
.pagination-wrapper { display: flex; justify-content: center; padding: 2rem 0; }
.pagination-wrapper nav > div:first-child { display: none; }
.pagination-wrapper .relative { display: inline-flex; }
.pagination-wrapper a, .pagination-wrapper span {
    padding: .5rem .85rem;
    border: 1px solid #e2e8f0;
    font-size: .85rem;
    color: #334155;
    margin: 0 2px;
    border-radius: 6px;
    text-decoration: none;
}
.pagination-wrapper span[aria-current="page"] span {
    background: #1e3a8a;
    color: #fff;
    border-color: #1e3a8a;
}
.pagination-wrapper a:hover { background: #f1f5f9; }

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}
.empty-state svg { margin-bottom: 1rem; }
.empty-state h3 { color: #334155; margin-bottom: .5rem; }

/* --- Contributor Card --- */
.contributor-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: box-shadow .2s;
}
.contributor-card:hover { box-shadow: 0 4px 12px rgba(15,23,42,.05); }
.contributor-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.contributor-card__rank {
    font-size: .7rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.contributor-card__stats { display: flex; gap: 1rem; font-size: .8rem; color: #64748b; margin-top: .25rem; }

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    gap: .75rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}
.filter-bar select, .filter-bar .form-control {
    padding: .5rem .75rem;
    font-size: .85rem;
    border-radius: 6px;
    min-width: 140px;
}

/* --- YouTube Embed --- */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 1rem 0;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* --- Dashboard --- */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.dash-stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}
.dash-stat__value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: 'Inter', sans-serif;
}
.dash-stat__label { font-size: .8rem; color: #64748b; text-transform: uppercase; letter-spacing: .05em; }

/* --- Report Card (Public) --- */
.report-card-public {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    text-align: center;
}
.report-card-public h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.report-card-public .score { font-size: 3.5rem; font-weight: 800; color: #f97316; }

/* --- Gallery --- */
.gallery { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1rem 0; }
.gallery__img {
    width: 100px; height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: transform .2s;
}
.gallery__img:hover { transform: scale(1.05); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .content-layout { grid-template-columns: 1fr; }
    .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .about-founder { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(15,23,42,.1);
        border-top: 1px solid #e2e8f0;
        z-index: 99;
    }
    .header__nav.open { display: flex; }
    .header__burger { display: flex; }
    .hero h1 { font-size: 1.85rem; }
    .hero { padding: 2.5rem 0 2rem; }
    .hero__search { flex-direction: column; }
    .hero__search button { padding: .85rem; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    .review-card__pros-cons { grid-template-columns: 1fr; }
    .topbar__left { display: none; }
    .card-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .stats-strip__item strong { font-size: 1.35rem; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .auth-card { padding: 1.5rem; }
}

/* --- Footer --- */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3.5rem 0 0;
    margin-top: 3rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer__brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer__contact p { font-size: .85rem; margin-bottom: .25rem; }
.footer h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: #94a3b8; font-size: .875rem; transition: color .2s; }
.footer ul a:hover { color: #f97316; }
.footer__bottom {
    border-top: 1px solid #1e293b;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: .8rem;
}
.footer__disclaimer { color: #64748b; margin-top: .35rem; font-size: .75rem; }

/* --- Star Input --- */
.star-input__star { color: #e2e8f0; cursor: pointer; transition: color .15s; user-select: none; }
.star-input__star.active, .star-input__star.hover { color: #f59e0b; }

@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
}
