/* ═══════════════════════════════════════════════════════════════
   AIDS DESIGN SYSTEM — The AI Picker
   Full CSS for the site redesign. Matches the JSX mockup exactly.
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --aids-blue: #2563EB;
  --aids-green: #10B981;
  --aids-amber: #F59E0B;
  --aids-red: #EF4444;
  --aids-dark1: #0A0F1E;
  --aids-dark2: #0F172A;
  --aids-dark3: #1E293B;
  --aids-white: #FFFFFF;
  --aids-off-white: #F8FAFC;
  --aids-light-gray: #F1F5F9;
  --aids-border: #E2E8F0;
  --aids-text-dark: #0F172A;
  --aids-text-med: #475569;
  --aids-text-light: #94A3B8;
  --aids-text-muted: #64748B;
  --aids-grad: linear-gradient(135deg, var(--aids-blue), var(--aids-green));
  --aids-font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Category colours */
  --aids-cat-chatbots: #EC4899;
  --aids-cat-writing: #2563EB;
  --aids-cat-voice: #8B5CF6;
  --aids-cat-image: #10B981;
  --aids-cat-video: #F59E0B;
  --aids-cat-coding: #06B6D4;
  --aids-cat-meeting: #F97316;
  --aids-cat-seo: #14B8A6;
}

/* ── Reset & Base ── */
.aids-redesign {
  font-family: var(--aids-font);
  background: var(--aids-off-white);
  color: var(--aids-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.aids-redesign * {
  box-sizing: border-box;
}

/* ── Typography ── */
.aids-redesign h1, .aids-redesign h2, .aids-redesign h3,
.aids-redesign h4, .aids-redesign h5, .aids-redesign h6 {
  font-family: var(--aids-font);
  font-weight: 800;
  line-height: 1.15;
  color: var(--aids-text-dark);
}

/* ── Gradient Text ── */
.aids-grad-text {
  background: var(--aids-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */

.aids-redesign .site-header,
.aids-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aids-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.aids-nav-inner::-webkit-scrollbar {
  display: none;
}

.aids-nav-logo {
  margin-right: 16px;
  flex-shrink: 0;
}

.aids-nav-link {
  background: transparent;
  color: var(--aids-text-light);
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  font-family: var(--aids-font);
  transition: color 0.15s;
}

.aids-nav-link:hover {
  color: var(--aids-white);
}

.aids-nav-link.active {
  color: var(--aids-white);
}

/* Gradient outline for active nav tab */
.aids-nav-link.active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: var(--aids-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.aids-nav-subscribe {
  margin-left: auto;
  flex-shrink: 0;
}

.aids-btn-subscribe {
  background: var(--aids-grad);
  color: var(--aids-white);
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--aids-font);
  text-decoration: none;
  display: inline-block;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.aids-btn {
  display: inline-block;
  background: var(--aids-grad);
  color: var(--aids-white);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--aids-font);
  transition: opacity 0.15s, transform 0.15s;
}

.aids-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--aids-white);
  text-decoration: none;
}

.aids-btn-light {
  display: inline-block;
  background: var(--aids-blue);
  color: var(--aids-white);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--aids-font);
  transition: opacity 0.15s;
}

.aids-btn-light:hover {
  opacity: 0.85;
  color: var(--aids-white);
  text-decoration: none;
}

.aids-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--aids-blue);
  border: 1.5px solid var(--aids-blue);
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--aids-font);
  transition: background 0.15s;
}

.aids-btn-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--aids-blue);
  text-decoration: none;
}

.aids-btn-sm {
  background: var(--aids-grad);
  color: var(--aids-white);
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--aids-font);
}

/* ═══════════════════════════════════════════
   PAGE HERO (Dark)
   ═══════════════════════════════════════════ */

.aids-hero {
  background: var(--aids-dark1);
  padding: 80px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aids-hero-home {
  padding-top: 120px;
  padding-bottom: 100px;
}

/* Ambient glow effects */
.aids-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.aids-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.aids-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.aids-hero-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.aids-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--aids-white);
  margin: 0 0 20px;
  letter-spacing: -2px;
}

.aids-hero-home h1 {
  font-size: 68px;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.aids-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--aids-text-light);
  max-width: 580px;
  margin: 0 auto 32px;
}

.aids-hero-home p {
  font-size: 20px;
  margin-bottom: 44px;
}

/* Hero pill badge */
.aids-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
}

.aids-hero-badge .badge-new {
  font-size: 13px;
  font-weight: 600;
}

.aids-hero-badge .badge-text {
  color: var(--aids-text-light);
  font-size: 13px;
}

/* Hero buttons row */
.aids-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.aids-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 800px;
  margin: 48px auto 0;
}

.aids-stat {
  text-align: center;
}

.aids-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--aids-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.aids-stat-label {
  font-size: 13px;
  color: var(--aids-text-light);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.aids-section {
  padding: 64px 32px;
  max-width: 820px;
  margin: 0 auto;
}

.aids-section-wide {
  padding: 64px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.aids-section-bg-white {
  background: var(--aids-white);
}

.aids-section-bg-off-white {
  background: var(--aids-off-white);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (3-column)
   ═══════════════════════════════════════════ */

.aids-how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.aids-how-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--aids-border);
  text-align: center;
}

.aids-how-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.aids-how-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--aids-text-dark);
  margin: 0;
}

.aids-how-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--aids-text-med);
  margin: 0;
}

/* ═══════════════════════════════════════════
   CATEGORY CARDS (Homepage)
   ═══════════════════════════════════════════ */

.aids-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.aids-cat-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--aids-border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
  display: block;
}

.aids-cat-card:hover {
  border-color: var(--aids-blue);
  transform: translateY(-2px);
  text-decoration: none;
}

.aids-cat-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.aids-cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.aids-cat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--aids-text-dark);
  margin: 0;
}

.aids-cat-card .count {
  font-size: 13px;
  color: var(--aids-text-muted);
}

/* ═══════════════════════════════════════════
   TOP RATED TOOLS (Homepage)
   ═══════════════════════════════════════════ */

.aids-top-rated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.aids-tool-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--aids-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.15s;
}

.aids-tool-card:hover {
  border-color: var(--aids-blue);
}

.aids-tool-card-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.aids-tool-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--aids-grad);
  color: var(--aids-white);
  display: inline-block;
  margin-left: 8px;
}

.aids-tool-card-meta {
  font-size: 13px;
  color: var(--aids-text-muted);
}

/* ═══════════════════════════════════════════
   SCORE PICK (Plectrum Shape)
   ═══════════════════════════════════════════ */

.aids-score-pick {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

/* Score colour classes */
.aids-score-green { --pick-color: var(--aids-green); }
.aids-score-blue { --pick-color: var(--aids-blue); }
.aids-score-amber { --pick-color: var(--aids-amber); }
.aids-score-red { --pick-color: var(--aids-red); }

/* ═══════════════════════════════════════════
   DISCLOSURE BOX
   ═══════════════════════════════════════════ */

.aids-disclosure {
  background: #FEF3C7;
  border: 1px solid var(--aids-amber);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--aids-text-med);
  margin-bottom: 32px;
  line-height: 1.6;
}

.aids-disclosure strong {
  color: var(--aids-text-dark);
}

/* ═══════════════════════════════════════════
   DATA TABLES (Rankings, Score Breakdowns)
   ═══════════════════════════════════════════ */

.aids-table {
  border-radius: 14px;
  border: 1px solid var(--aids-border);
  overflow: hidden;
  margin-bottom: 40px;
}

.aids-table-header {
  display: grid;
  padding: 12px 16px;
  background: var(--aids-dark2);
  gap: 6px;
}

.aids-table-header > div {
  font-size: 11px;
  font-weight: 700;
  color: var(--aids-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aids-table-row {
  display: grid;
  padding: 12px 16px;
  border-top: 1px solid var(--aids-border);
  gap: 6px;
  align-items: center;
}

.aids-table-row:nth-child(even) {
  background: var(--aids-off-white);
}

.aids-table-row:nth-child(odd) {
  background: var(--aids-white);
}

.aids-table-row.top-rank {
  background: rgba(16, 185, 129, 0.03);
}

.aids-table-row.overall-row {
  background: var(--aids-light-gray);
  border-top: 2px solid var(--aids-border);
}

/* Rankings table columns */
.aids-rankings-cols {
  grid-template-columns: 0.3fr 1.2fr 0.8fr 0.7fr 0.6fr 0.6fr 0.6fr 0.6fr 0.6fr 0.8fr;
}

/* Score breakdown columns */
.aids-score-cols {
  grid-template-columns: 2fr 0.8fr 0.6fr 2.5fr;
}

/* Comparison columns */
.aids-compare-cols {
  grid-template-columns: 2fr 0.6fr 0.8fr 0.8fr 0.6fr;
}

/* Best-of columns */
.aids-bestof-cols {
  grid-template-columns: 0.4fr 1.2fr 0.6fr 2fr 0.8fr 0.5fr 1.2fr;
}

/* ═══════════════════════════════════════════
   REVIEW CARDS (Reviews Library Grid)
   ═══════════════════════════════════════════ */

.aids-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aids-review-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--aids-border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
}

.aids-review-card:hover {
  border-color: var(--aids-blue);
  transform: translateY(-2px);
  text-decoration: none;
}

.aids-review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.aids-review-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--aids-text-dark);
  margin: 0;
}

.aids-review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--aids-text-med);
  margin: 0 0 16px;
  flex: 1;
}

.aids-review-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--aids-blue);
}

/* ═══════════════════════════════════════════
   CATEGORY FILTER TABS (Reviews Library)
   ═══════════════════════════════════════════ */

.aids-filter-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.aids-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--aids-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.aids-filter-total {
  font-size: 13px;
  font-weight: 700;
  color: var(--aids-blue);
}

.aids-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.aids-filter-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--aids-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--aids-text-med);
  cursor: pointer;
  font-family: var(--aids-font);
  transition: all 0.15s;
}

.aids-filter-tab:hover {
  border-color: var(--aids-blue);
}

.aids-filter-tab.active {
  background: var(--aids-off-white);
  border: 1.5px solid var(--aids-blue);
  color: var(--aids-blue);
}

.aids-filter-tab .count {
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
}

/* ═══════════════════════════════════════════
   COMPARISON TOOL SELECTOR
   ═══════════════════════════════════════════ */

.aids-compare-selector {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--aids-border);
  margin-bottom: 48px;
}

.aids-compare-selector-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.aids-compare-select {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid var(--aids-border);
  background: var(--aids-white);
  color: var(--aids-text-dark);
  cursor: pointer;
  outline: none;
  flex: 1;
  min-width: 0;
  font-family: var(--aids-font);
}

.aids-compare-vs {
  font-size: 18px;
  font-weight: 800;
  color: var(--aids-text-light);
}

/* Popular comparisons grid */
.aids-popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aids-popular-card {
  background: var(--aids-off-white);
  border: 1px solid var(--aids-border);
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--aids-font);
  transition: border-color 0.15s;
}

.aids-popular-card:hover {
  border-color: var(--aids-blue);
}

/* ═══════════════════════════════════════════
   PROS / CONS BOXES
   ═══════════════════════════════════════════ */

.aids-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.aids-pros {
  background: rgba(16, 185, 129, 0.03);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.aids-cons {
  background: rgba(239, 68, 68, 0.03);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.aids-pros h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--aids-green);
  margin: 0 0 14px;
}

.aids-cons h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--aids-red);
  margin: 0 0 14px;
}

.aids-pros-item, .aids-cons-item {
  font-size: 15px;
  color: var(--aids-text-med);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.aids-pros-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aids-green);
}

.aids-cons-item::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--aids-red);
}

/* ═══════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════ */

.aids-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.aids-pricing-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--aids-border);
  position: relative;
}

.aids-pricing-card.popular {
  border: 2px solid var(--aids-blue);
}

.aids-pricing-card .pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aids-grad);
  color: var(--aids-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.aids-pricing-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.aids-pricing-card .price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.aids-pricing-card .features {
  font-size: 14px;
  color: var(--aids-text-med);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   VERDICT BOX
   ═══════════════════════════════════════════ */

.aids-verdict {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--aids-border);
  margin-bottom: 40px;
}

.aids-verdict h2 {
  font-size: 24px;
  margin: 0 0 12px;
}

.aids-verdict p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--aids-text-med);
  margin: 0 0 20px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.aids-faq-item {
  border-bottom: 1px solid var(--aids-border);
  padding: 18px 0;
}

.aids-faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.aids-faq-item p {
  font-size: 15px;
  color: var(--aids-text-med);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   NEWSLETTER (Homepage bottom + Footer)
   ═══════════════════════════════════════════ */

.aids-newsletter {
  background: var(--aids-dark1);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.aids-newsletter h2 {
  color: var(--aids-white);
  font-size: 28px;
  margin: 0 0 10px;
}

.aids-newsletter p {
  color: var(--aids-text-light);
  font-size: 16px;
  margin: 0 0 28px;
}

.aids-newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.aids-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--aids-white);
  font-size: 15px;
  padding: 10px 14px;
  font-family: var(--aids-font);
}

.aids-newsletter-form input::placeholder {
  color: var(--aids-text-light);
}

.aids-newsletter-form button {
  background: var(--aids-grad);
  color: var(--aids-white);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--aids-font);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.aids-footer {
  background: var(--aids-dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 32px 32px;
}

.aids-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.aids-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.aids-footer-desc {
  color: var(--aids-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.aids-footer-col-title {
  color: var(--aids-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aids-footer-link {
  color: var(--aids-text-light);
  font-size: 14px;
  margin-bottom: 9px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.aids-footer-link:hover {
  color: var(--aids-white);
  text-decoration: none;
}

.aids-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.aids-footer-copyright {
  color: var(--aids-text-light);
  font-size: 12px;
}

/* ═══════════════════════════════════════════
   REVIEWED BADGE (Rankings)
   ═══════════════════════════════════════════ */

.aids-reviewed-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--aids-blue);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--aids-blue);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — FEATURE GRID
   ═══════════════════════════════════════════ */

.aids-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.aids-feature-card {
  background: var(--aids-off-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--aids-border);
}

.aids-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.aids-feature-card p {
  font-size: 14px;
  color: var(--aids-text-med);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   HOW WE REVIEW — SCORING TABLE
   ═══════════════════════════════════════════ */

.aids-scoring-factors {
  margin-bottom: 40px;
}

.aids-factor-row {
  display: grid;
  grid-template-columns: 2fr 0.8fr 3fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--aids-border);
  align-items: start;
}

.aids-factor-row:last-child {
  border-bottom: none;
}

.aids-factor-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--aids-text-dark);
}

.aids-factor-weight {
  font-size: 15px;
  font-weight: 600;
}

.aids-factor-desc {
  font-size: 14px;
  color: var(--aids-text-med);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .aids-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .aids-hero-home h1 {
    font-size: 42px;
  }

  .aids-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aids-top-rated-grid {
    grid-template-columns: 1fr;
  }

  .aids-how-it-works {
    grid-template-columns: 1fr;
  }

  .aids-review-grid {
    grid-template-columns: 1fr;
  }

  .aids-popular-grid {
    grid-template-columns: 1fr;
  }

  .aids-pros-cons {
    grid-template-columns: 1fr;
  }

  .aids-pricing-grid {
    grid-template-columns: 1fr;
  }

  .aids-feature-grid {
    grid-template-columns: 1fr;
  }

  .aids-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .aids-stats-bar {
    gap: 24px;
    flex-wrap: wrap;
  }

  .aids-section, .aids-section-wide {
    padding: 40px 16px;
  }

  .aids-hero {
    padding: 60px 16px 48px;
  }

  .aids-hero-home {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .aids-compare-selector-inner {
    flex-direction: column;
  }

  .aids-compare-select {
    width: 100%;
  }

  /* Rankings table: horizontal scroll on mobile */
  .aids-table {
    overflow-x: auto;
  }

  .aids-rankings-cols {
    min-width: 800px;
  }
}

@media (max-width: 480px) {
  .aids-hero-home h1 {
    font-size: 32px;
  }

  .aids-cat-grid {
    grid-template-columns: 1fr;
  }

  .aids-footer-grid {
    grid-template-columns: 1fr;
  }

  .aids-nav-inner {
    gap: 4px;
  }

  .aids-nav-link {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════════
   ARTICLE POST STYLING (Single Reviews)
   Applied to all single post pages
   ═══════════════════════════════════════════ */

.aids-redesign.single-post .entry-content {
  font-family: var(--aids-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--aids-text-med);
}

.aids-redesign.single-post .entry-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--aids-text-dark);
  margin: 40px 0 16px;
}

.aids-redesign.single-post .entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--aids-text-dark);
  margin: 32px 0 12px;
}

.aids-redesign.single-post .entry-content p {
  margin-bottom: 20px;
}

/* CTA buttons in articles */
.aids-redesign.single-post .wp-block-button .wp-block-button__link,
.aids-redesign .aids-cta-btn {
  background: var(--aids-grad);
  color: var(--aids-white) !important;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--aids-font);
  text-decoration: none;
  border: none;
  transition: opacity 0.15s;
}

.aids-redesign.single-post .wp-block-button .wp-block-button__link:hover,
.aids-redesign .aids-cta-btn:hover {
  opacity: 0.9;
}

/* Tables in articles (comparison tables, score breakdowns) */
.aids-redesign.single-post .wp-block-table table {
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--aids-border);
  width: 100%;
}

.aids-redesign.single-post .wp-block-table thead {
  background: var(--aids-dark2);
}

.aids-redesign.single-post .wp-block-table thead th {
  color: var(--aids-text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border: none;
}

.aids-redesign.single-post .wp-block-table tbody td {
  padding: 14px 16px;
  border: none;
  border-top: 1px solid var(--aids-border);
  font-size: 15px;
}

.aids-redesign.single-post .wp-block-table tbody tr:nth-child(even) {
  background: var(--aids-off-white);
}

/* Override GeneratePress defaults */
.aids-redesign .site-content {
  background: var(--aids-off-white);
}

.aids-redesign a {
  color: var(--aids-blue);
}

.aids-redesign a:hover {
  color: var(--aids-green);
}
