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

:root {
  --brand:      #4f46e5;
  --brand-dk:   #3730a3;
  --brand-lt:   #eef2ff;
  --honest:     #f59e0b;
  --honest-dk:  #d97706;
  --honest-lt:  #fffbeb;
  --honest-bd:  #fde68a;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --surface:    #f9fafb;
  --white:      #ffffff;
  --radius:     14px;
  --shadow:     0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ── Utilities ─────────────────────────── */
.container       { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow-wide     { max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.section         { padding: 96px 0; }
.section-alt     { background: var(--surface); }
.section-honest  { background: var(--honest-lt); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.label-honest { background: var(--honest-bd); color: var(--honest-dk); }
.label-verdict { background: var(--brand-lt); color: var(--brand-dk); }

.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-sub   { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 52px; }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s;
}

/* ── Nav ─────────────────────────────────── */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.logo-q { color: var(--honest); }

.nav-bar nav { display: flex; align-items: center; gap: 28px; }
.nav-bar nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-bar nav a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ── Hero ────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, var(--white) 30%, #fffbeb 100%);
}

.hero-content { max-width: 740px; }

.hero-tag {
  display: inline-block;
  background: #fef3c7;
  color: var(--honest-dk);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  border: 1px solid var(--honest-bd);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 6px;
  background: var(--honest);
  border-radius: 3px;
  z-index: -1;
  opacity: .45;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 44px;
}

.score-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.score-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 24px; }
.score-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.score-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.score-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.875rem;
  font-style: italic;
}

/* ── What is Remento ─────────────────────── */
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.explainer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.explainer-num {
  width: 36px; height: 36px;
  background: var(--brand-lt);
  color: var(--brand);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.explainer-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.explainer-card p  { color: var(--muted); font-size: 0.9rem; }

.explainer-price {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ── Complaint Cards ─────────────────────── */
.complaint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.complaint-card {
  background: var(--white);
  border: 1.5px solid var(--honest-bd);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(245,158,11,.08);
}

.complaint-card--wide {
  grid-column: span 2;
}

.complaint-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--honest-dk);
  background: var(--honest-bd);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.complaint-card blockquote {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 10px;
  border-left: 3px solid var(--honest);
  padding-left: 14px;
}

.complaint-card cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.complaint-note {
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--honest-bd);
  line-height: 1.5;
}

/* ── Mini testimonials ───────────────────── */
.mini-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }

.mini-card blockquote {
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
}

.mini-card cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

/* ── Verdict ─────────────────────────────── */
.section-verdict { background: var(--brand-lt); }

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.verdict-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.verdict-yes { border-top: 4px solid var(--good); }
.verdict-no  { border-top: 4px solid var(--honest); }

.verdict-col h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }

.verdict-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.verdict-col ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.verdict-yes ul li::before { content: '✓'; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.verdict-no  ul li::before { content: '✗'; position: absolute; left: 0; color: var(--honest); font-weight: 700; }

.verdict-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.verdict-footnote a { color: var(--brand); text-decoration: none; }
.verdict-footnote a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .logo { color: var(--white); }
.footer-copy  { color: #9ca3af; font-size: 0.8rem; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 820px) {
  .complaint-card--wide { grid-column: span 1; }
  .verdict-grid { grid-template-columns: 1fr; }
  .mini-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-bar nav { display: none; }
  .nav-bar nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px 24px;
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .score-bar { flex-wrap: wrap; justify-content: center; padding: 16px; gap: 16px; }
  .score-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
