/* =============================================
   CO Detector Watch — Shared Stylesheet
   guardairpro.com
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1b2a4a;
  --navy-light:  #253a62;
  --red:         #c0392b;
  --red-light:   #fdf0ef;
  --green:       #1e8a4c;
  --green-light: #edf7f1;
  --orange:      #d97706;
  --orange-light:#fffbeb;
  --gold:        #f59e0b;
  --blue:        #2563eb;
  --bg:          #f5f7fa;
  --card:        #ffffff;
  --border:      #dde3ed;
  --text:        #1a2332;
  --text-mid:    #3d4f6b;
  --text-muted:  #6c7a8d;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.13);
  --radius:      8px;
  --radius-lg:   14px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm{ max-width: 780px;  margin: 0 auto; padding: 0 20px; }
.section     { padding: 64px 0; }
.section-sm  { padding: 40px 0; }
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-muted); font-size: .9rem; }
.fw-bold     { font-weight: 700; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: #166c3a; border-color: #166c3a; text-decoration: none; color: #fff; }

.btn-danger {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-danger:hover { background: #a52a1f; text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; text-decoration: none; }

.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 18px; font-size: .85rem; }
.btn-full{ width: 100%; justify-content: center; }

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.badge-scam    { background: var(--red-light);    color: var(--red);   border: 1px solid rgba(192,57,43,.2); }
.badge-legit   { background: var(--green-light);  color: var(--green); border: 1px solid rgba(30,138,76,.2); }
.badge-warning { background: var(--orange-light); color: var(--orange);border: 1px solid rgba(217,119,6,.2); }
.badge-pending { background: #f0f0f0; color: var(--text-muted); border: 1px solid #ddd; }
.badge-editor  { background: var(--gold); color: #5c3d00; border: none; font-size: .75rem; }

/* --- Cards --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body { padding: 24px; }
.card:hover { box-shadow: var(--shadow-md); }

/* --- Alert / Notice Boxes --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .93rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.alert-danger  { background: var(--red-light);    color: #7b1d1d; border-left: 4px solid var(--red); }
.alert-success { background: var(--green-light);  color: #1a4a2e; border-left: 4px solid var(--green); }
.alert-warning { background: var(--orange-light); color: #6b3a00; border-left: 4px solid var(--orange); }
.alert-info    { background: #eff6ff;             color: #1e3a5f; border-left: 4px solid var(--blue); }

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-name { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.nav-logo-sub  { font-size: .65rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.nav-cta {
  background: var(--red);
  color: #fff;
  margin-left: 8px;
}
.nav-links a.nav-cta:hover { background: #a52a1f; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: all .2s;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-brand-name  { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-brand-desc  { font-size: .87rem; line-height: 1.6; max-width: 300px; }
.footer-col h4      { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li   { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .87rem; text-decoration: none; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom      { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p    { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-disclaimer  { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.5; margin-top: 16px; text-align: center; border-top: 1px solid rgba(255,255,255,.07); padding-top: 16px; }

/* =============================================
   HOMEPAGE
   ============================================= */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #253a62 50%, #1a2e50 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,.2);
  border: 1px solid rgba(192,57,43,.4);
  color: #ff9b92;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: #ff9b92; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stat-strip {
  display: flex;
  gap: 0;
  margin-top: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num  { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label{ font-size: .73rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-alert-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}
.hero-alert-card.danger-card {
  background: rgba(192,57,43,.15);
  border-color: rgba(192,57,43,.35);
}
.hero-alert-card .card-title { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.hero-alert-card p { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }
.card-icon { font-size: 1.4rem; margin-bottom: 8px; }

/* Stats Section */
.stats-section {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num.red   { color: var(--red); }
.stat-num.green { color: var(--green); }
.stat-desc  { font-size: .8rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }

/* How It Works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.how-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.how-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.how-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Recent Reviews Strip */
.recent-reviews { background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.recent-reviews-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  font-weight: 700;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: #7dffb3;
}
.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: #7dffb3;
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.3); } }

.mini-review {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mini-review:last-child { border-bottom: none; }
.mini-review-left h5  { font-size: .9rem; margin-bottom: 2px; }
.mini-review-left p   { font-size: .82rem; color: var(--text-muted); margin: 0; }
.mini-review-meta     { text-align: right; white-space: nowrap; }
.mini-review-meta .stars { color: var(--gold); font-size: .85rem; }
.mini-review-meta .time  { font-size: .75rem; color: var(--text-muted); display: block; margin-top: 2px; }

/* =============================================
   COMPARISON PAGE
   ============================================= */

.comparison-banner {
  background: var(--red-light);
  border-bottom: 1px solid rgba(192,57,43,.2);
  padding: 10px 0;
  text-align: center;
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
}
.comparison-banner strong { font-weight: 800; }

.article-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.article-meta span { font-size: .83rem; color: var(--text-muted); }
.article-meta .sep { color: var(--border); }

.editorial-label {
  display: inline-block;
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* Ranking Cards */
.ranking-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.ranking-card:hover { box-shadow: var(--shadow-md); }
.ranking-card.rank-1 { border-color: var(--green); }
.ranking-card.rank-5 { border-color: var(--red); }

.rank-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #f9fafb;
  border-bottom: 1px solid var(--border);
}
.ranking-card.rank-1 .rank-header { background: var(--green-light); border-color: rgba(30,138,76,.2); }
.ranking-card.rank-5 .rank-header { background: var(--red-light);   border-color: rgba(192,57,43,.2); }

.rank-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ranking-card.rank-1 .rank-number { background: var(--green); font-size: .8rem; }
.ranking-card.rank-5 .rank-number { background: var(--red); }

.rank-title-block { flex: 1; }
.rank-product-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.rank-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 5px; }

.rank-score {
  text-align: right;
  flex-shrink: 0;
}
.rank-score-num    { font-size: 2rem; font-weight: 800; line-height: 1; }
.rank-score-num.green { color: var(--green); }
.rank-score-num.red   { color: var(--red); }
.rank-score-label  { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.rank-body { padding: 24px; }
.rank-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-list { }
.feature-list h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 12px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 9px;
  font-size: .9rem;
  color: var(--text-mid);
}
.feature-item .icon-check { color: var(--green); font-weight: 800; font-size: .95rem; flex-shrink: 0; }
.feature-item .icon-cross { color: var(--red);   font-weight: 800; font-size: .95rem; flex-shrink: 0; }

.verdict-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 4px solid var(--navy);
  margin-top: 16px;
}
.verdict-box.green { border-color: var(--green); background: var(--green-light); }
.verdict-box.red   { border-color: var(--red);   background: var(--red-light); }
.verdict-box h4    { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 6px; }
.verdict-box p     { font-size: .9rem; color: var(--text-mid); margin: 0; }

.rank-footer {
  padding: 16px 24px;
  background: #fafbfc;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ranking-card.rank-1 .rank-footer { background: var(--green-light); }
.ranking-card.rank-5 .rank-footer { background: var(--red-light); }

/* Comparison Table */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--card); }
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-size: .83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  text-align: center;
  color: var(--text-mid);
}
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg); }
.comparison-table tr.row-winner td { background: var(--green-light); }
.comparison-table tr.row-scam   td { background: var(--red-light); }
.comparison-table .check { color: var(--green); font-size: 1.1rem; font-weight: 800; }
.comparison-table .cross { color: var(--red);   font-size: 1.1rem; font-weight: 800; }
.comparison-table .partial { color: var(--orange); font-size: 1rem; }

/* Scam Warning Box */
.scam-warning-box {
  background: linear-gradient(135deg, #2d0a08, #4a1010);
  border: 2px solid rgba(192,57,43,.6);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: #fff;
  margin: 32px 0;
}
.scam-warning-box h3 { color: #ff9b92; margin-bottom: 12px; }
.scam-warning-box p  { color: rgba(255,255,255,.8); font-size: .92rem; }
.scam-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.scam-data-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.scam-data-num   { font-size: 1.6rem; font-weight: 800; color: #ff9b92; line-height: 1; }
.scam-data-label { font-size: .73rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* =============================================
   REVIEWS PAGE
   ============================================= */
.reviews-filter-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews-filter-bar span { font-size: .88rem; font-weight: 600; color: var(--text-muted); margin-right: 4px; }
.filter-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all .15s;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-btn.scam-filter.active   { background: var(--red);   border-color: var(--red); }
.filter-btn.legit-filter.active  { background: var(--green); border-color: var(--green); }

.reviews-count { font-size: .85rem; color: var(--text-muted); margin-left: auto; }

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card.scam-review  { border-left: 4px solid var(--red); }
.review-card.legit-review { border-left: 4px solid var(--green); }

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.reviewer-info h4    { font-size: .97rem; margin-bottom: 2px; }
.reviewer-info .meta { font-size: .8rem; color: var(--text-muted); }
.review-right        { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.stars-display { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.review-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f2f5;
  color: var(--text-mid);
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.review-body { font-size: .92rem; color: var(--text-mid); line-height: 1.65; }
.review-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.review-status-items { display: flex; gap: 8px; flex-wrap: wrap; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
}
.pill-received    { background: var(--green-light); color: var(--green); }
.pill-not-received{ background: var(--red-light);   color: var(--red); }
.pill-worked      { background: var(--green-light); color: var(--green); }
.pill-not-worked  { background: var(--red-light);   color: var(--red); }
.review-date { font-size: .78rem; color: var(--text-muted); }

/* =============================================
   SUBMIT PAGE
   ============================================= */
.submit-hero {
  background: linear-gradient(135deg, var(--navy), #2a3f6f);
  padding: 56px 0 48px;
  text-align: center;
}
.submit-hero h1 { color: #fff; margin-bottom: 12px; }
.submit-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.submit-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
}

/* Forms */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-label .optional { font-weight: 400; color: var(--text-muted); font-size: .8rem; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-control::placeholder { color: #a0aab4; }
textarea.form-control { resize: vertical; min-height: 120px; }

.star-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-rating-input input { display: none; }
.star-rating-input label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color .1s;
  padding: 0 2px;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--gold); }

.radio-group, .checkbox-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-option, .checkbox-option {
  flex: 1;
  min-width: 100px;
}
.radio-option input, .checkbox-option input { display: none; }
.radio-option label, .checkbox-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  color: var(--text-mid);
}
.radio-option input:checked + label, .checkbox-option input:checked + label {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, var(--navy), #2a3f6f);
  padding: 64px 0;
  text-align: center;
}
.about-hero h1 { color: #fff; margin-bottom: 14px; }
.about-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.mission-section { padding: 64px 0; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mission-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.mission-text h2 { margin-bottom: 16px; }
.mission-text p  { margin-bottom: 14px; font-size: .97rem; }

.values-list { margin-top: 28px; }
.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.value-text h4 { font-size: .95rem; margin-bottom: 4px; }
.value-text p  { font-size: .87rem; color: var(--text-muted); margin: 0; }

.verification-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  counter-reset: steps;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: .95rem; margin-bottom: 8px; }
.step-card p  { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: .97rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* =============================================
   UTILITY / MISC
   ============================================= */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.mt-32{ margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16{ margin-bottom: 16px; }
.mb-24{ margin-bottom: 24px; }
.mb-32{ margin-bottom: 32px; }

.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Progress Bar */
.progress-bar-wrap { background: #e5e7eb; border-radius: 50px; height: 8px; overflow: hidden; margin-top: 6px; }
.progress-bar { height: 100%; border-radius: 50px; transition: width .4s ease; }
.progress-bar.red   { background: var(--red); }
.progress-bar.green { background: var(--green); }

/* Trust Indicators */
.trust-strip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-item .icon { font-size: 1.1rem; }

/* Read Progress Bar */
.read-progress {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  height: 3px;
  background: rgba(0,0,0,.08);
  z-index: 99;
}
.read-progress-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width .1s linear;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .how-grid          { grid-template-columns: 1fr; }
  .rank-body-grid    { grid-template-columns: 1fr; }
  .mission-grid      { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .scam-data-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section          { padding: 40px 0; }
  .hero             { padding: 48px 0 40px; }
  .nav-links        { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 12px; gap: 4px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: 10px 14px; border-radius: 6px; }
  .nav-hamburger    { display: block; }
  .footer-grid      { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps-grid       { grid-template-columns: 1fr; }
  .submit-form-card { padding: 24px 20px; }
  .hero-stat-strip  { flex-wrap: wrap; }
  .hero-stat        { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .rank-header      { flex-wrap: wrap; }
  .scam-data-grid   { grid-template-columns: 1fr; }
  .trust-strip      { gap: 16px; }
  .radio-group      { flex-direction: column; }
}
