/* ═══════════════════════════════════════════════════════════════════
   Omellody – main.css v2.0
   A clean, modern product-comparison site inspired by top10.com
   Mobile-first • BEM naming • No frameworks
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  --primary:        #1B2559;
  --primary-light:  #2D3A8C;
  --primary-lighter: #3D4EBF;
  --accent:         #FF6B35;
  --accent-hover:   #E55A28;
  --accent-light:   #FFF0E8;
  --success:        #22C55E;
  --success-bg:     #F0FDF4;
  --info:           #3B82F6;
  --info-bg:        #EFF6FF;
  --warning:        #F59E0B;
  --warning-bg:     #FFFBEB;
  --danger:         #EF4444;
  --bg:             #F8FAFC;
  --white:          #FFFFFF;
  --text:           #1E293B;
  --text-secondary: #64748B;
  --text-light:     #94A3B8;
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;
  --shadow-sm:      0 1px 2px rgba(0,0,0,.05);
  --shadow:         0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:      0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:      0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl:      0 20px 25px rgba(0,0,0,.08), 0 8px 10px rgba(0,0,0,.04);
  --radius-sm:      6px;
  --radius:         8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --radius-full:    9999px;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:          1200px;
  --header-h:       64px;
  --transition:     .2s ease;
}

/* ─── RESET / BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
strong { font-weight: 600; }

/* ─── UTILITIES ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
}
.section-title--center { text-align: center; }
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn--lg {
  padding: .875rem 2rem;
  font-size: 1.0625rem;
}

/* ─── DISCLOSURE BANNER ────────────────────────────────────────── */
.disclosure-banner {
  background: var(--border-light);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  font-size: .75rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.disclosure-banner p { margin: 0; text-align: center; }
.disclosure-banner a { color: var(--primary-light); text-decoration: underline; }
.disclosure-banner a:hover { color: var(--accent); }

/* ─── HEADER ───────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  text-decoration: none;
}
.header__logo:hover { color: var(--primary-light); }

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.header__link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.header__link:hover { color: var(--accent); }

/* Dropdown */
.header__dropdown { position: relative; }
.header__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: .5rem 0;
  transition: color var(--transition);
}
.header__dropdown-btn:hover { color: var(--accent); }
.header__dropdown-btn svg { transition: transform var(--transition); }
.header__dropdown--open .header__dropdown-btn svg { transform: rotate(180deg); }

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(8px);
}
.header__dropdown--open .header__dropdown-menu,
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__dropdown-menu li {}
.header__dropdown-menu a {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header__dropdown-menu a:hover {
  background: var(--bg);
  color: var(--accent);
}

/* Mobile toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}
.header__menu-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle--open span:nth-child(2) { opacity: 0; }
.header__menu-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__menu-toggle { display: flex; }
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .header__nav--open { transform: translateX(0); }
  .header__link {
    display: block;
    padding: .75rem 0;
    font-size: 1.125rem;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  .header__dropdown { width: 100%; }
  .header__dropdown-btn {
    width: 100%;
    padding: .75rem 0;
    font-size: 1.125rem;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
  }
  .header__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
    padding: 0;
    min-width: auto;
  }
  .header__dropdown--open .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: .5rem 0;
  }
  .header__dropdown-menu a { padding: .5rem 1rem; }
}

/* ─── HERO (Homepage) ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 0 4rem;
  color: var(--white);
  text-align: center;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__cta .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.hero__cta .btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

/* ─── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-bar__number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.stats-bar__label {
  font-size: .8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ─── CATEGORIES SECTION ───────────────────────────────────────── */
.categories-section {
  padding: 4rem 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--text);
}
.category-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.category-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .375rem;
}
.category-card__desc {
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}
.category-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border-light);
}
.category-card__count {
  color: var(--text-secondary);
  font-weight: 500;
}
.category-card__top {
  color: var(--primary-light);
  font-weight: 600;
}

/* ─── TRUST SECTION ────────────────────────────────────────────── */
.trust-section {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.trust-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.trust-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.trust-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.trust-card__desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── METHOD SECTION ───────────────────────────────────────────── */
.method-section {
  padding: 4rem 0;
}
.method-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.method-section__content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.method-section__content p { color: var(--text-secondary); }
.method-steps {
  list-style: none;
  counter-reset: step;
  margin: 1.5rem 0;
}
.method-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  font-size: .9375rem;
  line-height: 1.5;
}
.method-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
}
.method-section__visual {}
.method-visual-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  text-align: center;
}
.method-visual-card__score {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: .95;
}
.method-visual-card__text {
  font-size: 1rem;
  opacity: .85;
  line-height: 1.6;
}
.method-visual-card__text p { margin: 0; }
.method-visual-card__text strong { color: var(--white); }
@media (max-width: 768px) {
  .method-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── COMPARISON HERO ──────────────────────────────────────────── */
.comparison-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3rem 0 2.5rem;
  color: var(--white);
}
.comparison-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.comparison-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.comparison-hero__meta {
  display: flex;
  gap: 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .8125rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { margin: 0 .375rem; }

/* ─── COMPARISON LAYOUT ────────────────────────────────────────── */
.comparison-layout {
  padding: 2.5rem 0 4rem;
}
.comparison-layout__main {
  max-width: 900px;
}

/* ─── KEY INSIGHTS ─────────────────────────────────────────────── */
.key-insights {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.key-insights__content {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.key-insights__content ul {
  list-style: none;
  padding: 0;
}
.key-insights__content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .625rem;
}
.key-insights__content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ─── QUICK NAV ────────────────────────────────────────────────── */
.quick-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.quick-nav__title {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-secondary);
  margin-bottom: .75rem;
}
.quick-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.quick-nav__item {
  display: inline-block;
  padding: .375rem .875rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-decoration: none;
}
.quick-nav__item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ─── PRODUCT CARDS ────────────────────────────────────────────── */
.product-list { margin-bottom: 3rem; }
.product-list .section-title { margin-bottom: 1.5rem; }

.product-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.product-card__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  background: var(--bg);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.product-card:first-child .product-card__rank {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}
.product-card:nth-child(2) .product-card__rank { color: var(--primary); }
.product-card:nth-child(3) .product-card__rank { color: var(--primary-light); }

.product-card__body {
  flex: 1;
  padding: 1.5rem;
  min-width: 0;
}
.product-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.product-card__logo-area {
  flex-shrink: 0;
}
.product-card__logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.product-card__info {
  flex: 1;
  min-width: 0;
}
.product-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .25rem;
  line-height: 1.3;
}
.product-card__badge {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  background: var(--accent-light);
  padding: .125rem .5rem;
  border-radius: var(--radius-full);
  margin-bottom: .375rem;
}
.product-card__tagline {
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}
.product-card__score {
  flex-shrink: 0;
}
.product-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.product-card__pros h4,
.product-card__cons h4 {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .5rem;
}
.product-card__pros h4 { color: var(--success); }
.product-card__cons h4 { color: var(--danger); }
.product-card__pros ul,
.product-card__cons ul {
  list-style: none;
  padding: 0;
}
.product-card__pros li,
.product-card__cons li {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: .375rem;
  padding-left: 1rem;
  position: relative;
}
.product-card__pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.product-card__cons li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.product-card__cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 640px) {
  .product-card { flex-direction: column; }
  .product-card__rank {
    min-width: auto;
    padding: .75rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    gap: .5rem;
    font-size: 1rem;
  }
  .product-card__header { flex-wrap: wrap; }
  .product-card__logo-area { display: none; }
  .product-card__details { grid-template-columns: 1fr; gap: 1rem; }
  .product-card__cta .btn { width: 100%; }
}

/* ─── SCORE BADGE ──────────────────────────────────────────────── */
.score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
}
.score-badge__number {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}
.score-badge__label {
  font-size: .5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  opacity: .9;
  margin-top: 2px;
}
.score-badge--excellent { background: var(--success); }
.score-badge--great     { background: var(--info); }
.score-badge--good      { background: var(--warning); }
.score-badge--average   { background: var(--text-secondary); }

/* Small inline score badge (for tables) */
.score-badge--sm {
  display: inline-flex;
  flex-direction: row;
  width: auto;
  height: auto;
  padding: .25rem .625rem;
  font-size: .8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  gap: 0;
}
.score-badge--sm .score-badge__label { display: none; }

/* ─── COMPARISON TABLE ─────────────────────────────────────────── */
.comparison-table-section { margin-bottom: 3rem; }
.comparison-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.comparison-table thead {
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.comparison-table th {
  padding: .875rem 1rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-secondary);
  white-space: nowrap;
}
.comparison-table td {
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg); }
.comparison-table__name { font-weight: 600; color: var(--text); }
.comparison-table__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg);
  border-radius: var(--radius-full);
  margin-right: .5rem;
}

/* ─── GUIDE SECTION ────────────────────────────────────────────── */
.guide-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.guide-section__content {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.guide-section__content p { margin-bottom: 1rem; }

/* ─── FAQ ACCORDION ────────────────────────────────────────────── */
.faq { margin-bottom: 3rem; }
.faq__list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__item:last-child { border-bottom: none; }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}
.faq__question:hover { background: var(--bg); }
.faq__icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform .3s ease;
}
.faq__item--open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq__item--open .faq__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq__answer p {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─── PAGE HERO (Static pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3.5rem 0;
  color: var(--white);
  text-align: center;
}
.page-hero--sm { padding: 2.5rem 0; }
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.page-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 0;
}

/* ─── STATIC PAGE CONTENT ──────────────────────────────────────── */
.static-page {
  padding: 3rem 0 4rem;
}
.static-page__content {
  max-width: 760px;
  margin: 0 auto;
}
.static-page__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border-light);
}
.static-page__content p {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.static-page__content ol,
.static-page__content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.static-page__content ol { counter-reset: ol; }
.static-page__content ol li {
  counter-increment: ol;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: .75rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.static-page__content ol li::before {
  content: counter(ol);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}
.static-page__content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .5rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.static-page__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ─── SCORE RANGES (How We Score page) ─────────────────────────── */
.score-ranges { margin: 1.5rem 0; }
.score-range {
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: .5rem;
  font-size: .9375rem;
  line-height: 1.5;
}
.score-range--excellent { background: var(--success-bg); border-left: 4px solid var(--success); }
.score-range--great     { background: var(--info-bg);    border-left: 4px solid var(--info); }
.score-range--good      { background: var(--warning-bg); border-left: 4px solid var(--warning); }
.score-range--average   { background: var(--bg);         border-left: 4px solid var(--text-secondary); }
.score-range__badge {
  display: inline-block;
  font-weight: 700;
  font-size: .875rem;
  margin-right: .375rem;
}

/* ─── CONTACT GRID ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: .5rem;
}
.contact-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.contact-card .btn { width: 100%; font-size: .8125rem; }
.contact-note {
  text-align: center;
  font-size: .875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__tagline {
  font-size: .875rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}
.footer__col {}
.footer__heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: .375rem; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__disclosure {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}
.footer__disclosure p {
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer__bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

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

/* ─── PRINT ────────────────────────────────────────────────────── */
@media print {
  .header, .footer, .disclosure-banner, .quick-nav { display: none; }
  body { background: #fff; }
  .product-card { break-inside: avoid; }
}

/* Logo images */
.product-card__logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
}

/* Category landing page styles */
.category-intro {
  margin-bottom: 32px;
}
.category-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary, #64748b);
  max-width: 720px;
}
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border, #e2e8f0);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.mini-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.mini-card__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.mini-card__logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mini-card__info {
  flex: 1;
  min-width: 0;
}
.mini-card__name {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 4px;
}
.mini-card__rank {
  font-size: 0.8rem;
  color: var(--text-secondary, #64748b);
}
.mini-card__score {
  flex-shrink: 0;
}
.category-cta {
  text-align: center;
  margin: 40px 0;
}


/* ─── Review Pages ─────────────────────────────────────────── */
.rv-breadcrumb{padding:12px 0;font-size:13px;color:#64748b;background:#f8fafc}
.rv-breadcrumb a{color:#64748b;text-decoration:none}
.rv-breadcrumb a:hover{color:var(--primary,#1B2559)}
.rv-breadcrumb span{margin:0 6px}

.rv-hero{text-align:center;padding:48px 20px 40px;background:linear-gradient(135deg,#f8faff 0%,#eef2ff 100%)}
.rv-hero__badge{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:50%;color:#fff;font-size:22px;font-weight:800;margin-bottom:16px}
.rv-hero__title{font-size:32px;font-weight:800;color:var(--primary,#1B2559);margin:0 0 8px}
.rv-hero__tagline{font-size:18px;color:#64748b;margin:0 0 12px;max-width:600px;margin-left:auto;margin-right:auto}
.rv-hero__rank{font-size:14px;color:var(--accent,#FF6B35);font-weight:600;margin-bottom:20px}

.rv-cta{display:inline-block;padding:14px 32px;border-radius:8px;font-weight:700;font-size:15px;text-decoration:none;transition:transform .2s,box-shadow .2s}
.rv-cta--primary{background:var(--accent,#FF6B35);color:#fff}
.rv-cta--primary:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(255,107,53,.3)}
.rv-cta--full{display:block;text-align:center;margin-top:12px}

.rv-layout{display:grid;grid-template-columns:1fr 300px;gap:40px;padding-top:40px;padding-bottom:60px}
@media(max-width:900px){.rv-layout{grid-template-columns:1fr;}.rv-sidebar{order:-1}}

.rv-main{min-width:0}
.rv-section{margin-bottom:40px}
.rv-section__title{font-size:22px;font-weight:700;color:var(--primary,#1B2559);margin:0 0 16px;padding-bottom:8px;border-bottom:2px solid #eef2ff}
.rv-summary{font-size:16px;line-height:1.7;color:#334155}

.rv-dims{display:flex;flex-direction:column;gap:12px}
.rv-dim__label{display:flex;justify-content:space-between;font-size:14px;font-weight:500;color:#334155;margin-bottom:4px}
.rv-dim__val{font-weight:700}
.rv-dim__bar{height:8px;background:#e2e8f0;border-radius:4px;overflow:hidden}
.rv-dim__fill{height:100%;border-radius:4px;transition:width .6s ease}

.rv-proscons{display:grid;grid-template-columns:1fr 1fr;gap:24px}
@media(max-width:600px){.rv-proscons{grid-template-columns:1fr}}
.rv-proscons__heading{font-size:16px;font-weight:700;margin:0 0 12px}
.rv-proscons__heading--pro{color:#16a34a}
.rv-proscons__heading--con{color:#ef4444}
.rv-proscons__list{list-style:none;padding:0;margin:0}
.rv-proscons__list li{padding:8px 0;font-size:14px;line-height:1.5;border-bottom:1px solid #f1f5f9}
.rv-pro{color:#15803d}
.rv-con{color:#dc2626}

.rv-specs{width:100%;border-collapse:collapse}
.rv-specs tr{border-bottom:1px solid #e2e8f0}
.rv-specs td{padding:10px 12px;font-size:14px}
.rv-spec__key{font-weight:600;color:var(--primary,#1B2559);width:40%}
.rv-spec__val{color:#334155}

.rv-verdict-box{text-align:center;padding:32px;background:#f8faff;border-radius:12px;margin-top:24px}
.rv-verdict-box__score{display:inline-flex;align-items:center;justify-content:center;width:72px;height:72px;border-radius:50%;border:4px solid;font-size:24px;font-weight:800;color:var(--primary,#1B2559);margin-bottom:8px}
.rv-verdict-box__label{font-size:16px;font-weight:600;color:#64748b;margin-bottom:16px}

.rv-sidebar__card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:24px;text-align:center;position:sticky;top:20px}
.rv-sidebar__initial{width:56px;height:56px;border-radius:12px;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;margin-bottom:12px}
.rv-sidebar__name{font-size:18px;font-weight:700;color:var(--primary,#1B2559);margin:0 0 8px}
.rv-sidebar__score{font-size:20px;font-weight:800;margin-bottom:16px}

.rv-sidebar__nav{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:16px;margin-top:16px}
.rv-sidebar__nav h4{font-size:14px;font-weight:700;color:var(--primary,#1B2559);margin:0 0 12px}
.rv-nav__item{display:block;padding:8px 10px;font-size:13px;color:#334155;text-decoration:none;border-radius:6px;margin-bottom:2px;transition:background .15s}
.rv-nav__item:hover{background:#f1f5f9}
.rv-nav__item--active{background:#eef2ff;color:var(--primary,#1B2559);font-weight:600}

/* ─── Expert Team ──────────────────────────────────────────── */
.team-section{padding:48px 0}
.team-section h2{font-size:28px;font-weight:800;color:var(--primary,#1B2559);text-align:center;margin-bottom:32px}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;max-width:960px;margin:0 auto}
.team-card{text-align:center;padding:24px;background:#fff;border:1px solid #e2e8f0;border-radius:12px}
.team-card__avatar{width:72px;height:72px;border-radius:50%;background:var(--primary,#1B2559);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:28px;font-weight:700;margin-bottom:12px}
.team-card__name{font-size:16px;font-weight:700;color:var(--primary,#1B2559);margin:0 0 4px}
.team-card__role{font-size:13px;color:var(--accent,#FF6B35);font-weight:600;margin:0 0 8px}
.team-card__bio{font-size:13px;color:#64748b;line-height:1.5;margin:0}
