/* ================================================================
   SmallPracticeTech.com Design System
   Bright, approachable SaaS directory for healthcare tech
   ================================================================ */

/* ── CSS Custom Properties ── */

:root {
  /* Colors */
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f0f9ff;
  --color-bg-card: #f1f5f9;
  --color-bg-card-hover: #e2e8f0;
  --color-primary: #0ea5e9;
  --color-primary-dark: #0284c7;
  --color-primary-light: #e0f2fe;
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-accent-light: #fff7ed;
  --color-green: #22c55e;
  --color-green-dark: #16a34a;
  --color-green-light: #f0fdf4;
  --color-red: #ef4444;
  --color-red-light: #fef2f2;
  --color-purple: #8b5cf6;
  --color-purple-light: #f5f3ff;
  --color-pink: #ec4899;
  --color-text: #0f172a;
  --color-text-secondary: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --navbar-height: 70px;
}

/* ── Reset & Base ── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

strong {
  font-weight: 700;
}

svg {
  flex-shrink: 0;
}

/* ── Container ── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.825rem;
}

.btn-xs {
  padding: 0.3rem 0.75rem;
  font-size: 0.775rem;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ── Navbar ── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
  height: var(--navbar-height);
}

.navbar-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--color-primary);
}

.brand-icon {
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

.brand-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.nav-active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown-content a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
}

.mobile-menu-btn:hover {
  background: var(--color-bg-card);
}

/* ── Hero Section ── */

.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #fff7ed 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ── Page Hero ── */

.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, var(--color-bg) 100%);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.page-hero-compact {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.page-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.page-hero-stats {
  display: flex;
  gap: var(--space-md);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.825rem;
  color: var(--color-muted);
  background: var(--color-white);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

/* ── Breadcrumb ── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-muted);
}

/* ── Sections ── */

.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-title svg {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 560px;
}

/* ── Category Grid ── */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat-color, var(--color-primary));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.category-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.category-card-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

.category-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.category-product-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
}

.category-top-rating {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── Product Cards ── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-grid-directory {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.product-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.product-card-info {
  flex: 1;
  min-width: 0;
}

.product-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.product-card-tagline {
  font-size: 0.825rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.725rem;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.product-badge-lg {
  font-size: 0.825rem;
  padding: 0.35rem 1rem;
}

.product-category-tag {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.725rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  margin-left: var(--space-xs);
}

.product-card-highlights {
  flex: 1;
  margin-bottom: var(--space-md);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.825rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.highlight-item svg {
  color: var(--color-green);
  margin-top: 2px;
  flex-shrink: 0;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
  margin-top: auto;
}

.product-pricing {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.825rem;
  color: var(--color-primary);
}

.product-card:hover .product-card-link {
  color: var(--color-primary-dark);
}

/* ── Product Ranking List ── */

.product-ranking-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.product-ranking-item {
  display: flex;
  gap: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.product-ranking-item:hover {
  box-shadow: var(--shadow-md);
}

.product-ranking-top {
  border: 2px solid var(--color-green);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-green-light) 100%);
}

.ranking-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.product-ranking-top .ranking-number {
  background: var(--color-green);
}

.product-ranking-item:not(.product-ranking-top) .ranking-number {
  color: var(--color-muted);
}

.ranking-content {
  flex: 1;
  min-width: 0;
}

.ranking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.ranking-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.ranking-name a {
  color: var(--color-text);
  text-decoration: none;
}

.ranking-name a:hover {
  color: var(--color-primary);
}

.ranking-tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.ranking-score {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ranking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

.ranking-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.825rem;
  color: var(--color-text-secondary);
}

.ranking-highlight svg {
  color: var(--color-green);
}

.ranking-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ranking-pricing {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ── Featured Callout ── */

.section-featured {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: var(--space-3xl) 0;
}

.featured-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3xl);
}

.featured-callout-content {
  flex: 1;
  max-width: 640px;
}

.featured-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.825rem;
  color: var(--color-accent);
  background: rgba(249, 115, 22, 0.15);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.featured-callout-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.featured-callout-text {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.featured-callout-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.feature-pill {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.featured-callout-score {
  text-align: center;
  flex-shrink: 0;
}

.big-score {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.big-score-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #94a3b8;
  margin-top: var(--space-sm);
}

/* ── Review Page ── */

.page-hero-review {
  padding-bottom: var(--space-2xl);
}

.review-hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2xl);
}

.review-hero-main {
  flex: 1;
}

.review-hero-badges {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.review-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.review-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.review-website {
  color: var(--color-primary);
}

.review-website:hover {
  color: var(--color-primary-dark);
}

.review-hero-score {
  text-align: center;
  flex-shrink: 0;
}

.score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.score-circle-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
}

.score-circle-max {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.score-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: var(--space-sm);
}

/* ── Review Layout ── */

.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.review-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border-light);
}

.review-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.review-section h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

/* ── Highlights Grid ── */

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-green-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
}

.highlight-icon {
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Specialty Pills ── */

.specialty-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.specialty-pill {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.825rem;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

/* ── Feature Ratings ── */

.feature-ratings {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-rating-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.feature-rating-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-rating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.feature-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.score-bar {
  height: 8px;
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.score-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s ease-out;
}

.score-bar-animate {
  width: var(--target-width) !important;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ── Pros and Cons ── */

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.pros-list,
.cons-list {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.pros-list {
  background: var(--color-green-light);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.cons-list {
  background: var(--color-red-light);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.pros-title,
.cons-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.pros-title {
  color: var(--color-green-dark);
}

.pros-title svg {
  color: var(--color-green);
}

.cons-title {
  color: var(--color-red);
}

.cons-title svg {
  color: var(--color-red);
}

.pros-list ul,
.cons-list ul {
  list-style: none;
  padding: 0;
}

.pros-list li,
.cons-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-green);
}

.cons-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-red);
}

/* ── Full Review Text ── */

.review-full-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

/* ── Sidebar ── */

.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.sidebar-score-card {
  text-align: center;
  background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
}

.sidebar-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.sidebar-score span {
  font-size: 1.25rem;
  color: var(--color-muted);
  font-weight: 500;
}

.sidebar-score-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.sidebar-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.sidebar-facts dt {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

.sidebar-facts dt:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.sidebar-facts dd {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.sidebar-compare-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.sidebar-compare-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.sidebar-compare-item:hover {
  background: var(--color-bg-card);
  color: var(--color-primary);
}

.sidebar-compare-name {
  font-weight: 500;
}

.sidebar-compare-score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-color: rgba(14, 165, 233, 0.2);
}

.sidebar-cta-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

/* ── Guide Cards ── */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.guide-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.guide-category-pill {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.725rem;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.guide-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.guide-date {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.guide-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.guide-card-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-top: auto;
}

.guide-card:hover .guide-card-link {
  color: var(--color-primary-dark);
}

/* ── Guide Content Layout ── */

.guide-content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-2xl);
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.guide-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

/* ── Prose (article content) ── */

.prose h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary-light);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.prose li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--color-text);
}

/* ── Comparison Table ── */

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  background: var(--color-bg-card);
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--color-bg-alt);
}

.table-rating {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ── Community Poll ── */

.poll-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.poll-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.poll-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.poll-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.poll-option:hover:not(:disabled) {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.poll-option-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  transition: width 0.6s ease-out;
  z-index: 0;
}

.poll-option-text {
  position: relative;
  z-index: 1;
}

.poll-option-pct {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.poll-voted {
  cursor: default;
}

.poll-selected {
  border-color: var(--color-primary);
  font-weight: 700;
}

.poll-selected .poll-option-bar {
  background: rgba(14, 165, 233, 0.15);
}

.poll-disclaimer {
  font-size: 0.775rem;
  color: var(--color-muted);
  margin-top: var(--space-md);
}

/* ── Directory Filters ── */

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-pill {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.directory-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
}

.directory-sort label {
  font-weight: 600;
  color: var(--color-muted);
}

.directory-sort select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
}

/* ── CTA Block ── */

.section-cta {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.cta-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}

/* ── Category Intro ── */

.category-intro {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* ── Legal Content ── */

.legal-content {
  max-width: var(--container-narrow);
}

/* ── About Content ── */

.about-content {
  max-width: var(--container-narrow);
}

/* ── Footer ── */

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid #1e293b;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer-logo .brand-icon {
  color: var(--color-primary);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  padding: 0.3rem 0;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #64748b;
}

/* ── Animations ── */

.animate-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Responsive: Tablet ── */

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

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

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

  .review-layout {
    grid-template-columns: 1fr 280px;
  }

  .guide-content-layout {
    grid-template-columns: 1fr 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .featured-callout {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }

  .featured-callout-content {
    max-width: 100%;
  }

  .featured-callout-features {
    justify-content: center;
  }
}

/* ── Responsive: Mobile Large ── */

@media (max-width: 768px) {
  :root {
    --navbar-height: 60px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    gap: 0;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links .nav-link {
    width: 100%;
    padding: 0.75rem var(--space-md);
    border-radius: var(--radius-md);
  }

  .nav-dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 var(--space-md);
    opacity: 1;
    visibility: visible;
    min-width: auto;
  }

  .hero {
    padding: var(--space-2xl) 0;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .page-hero-title {
    font-size: 1.65rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-directory {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

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

  .review-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .sidebar-card:first-child {
    grid-column: 1 / -1;
  }

  .review-hero-layout {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .review-hero-score {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }

  .score-circle {
    width: 72px;
    height: 72px;
  }

  .score-circle-value {
    font-size: 1.75rem;
  }

  .guide-content-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

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

  .product-ranking-item {
    flex-direction: column;
    gap: var(--space-md);
  }

  .ranking-header {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .ranking-score {
    align-self: flex-start;
  }

  .featured-callout {
    text-align: left;
  }

  .featured-callout-features {
    justify-content: flex-start;
  }

  .big-score {
    font-size: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .section-header-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .directory-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
  }

  .filter-pill {
    flex-shrink: 0;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.65rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ranking-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* ── Responsive: Mobile Small ── */

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .page-hero-title {
    font-size: 1.4rem;
  }

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

  .guide-sidebar {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .page-hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .review-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .guide-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .poll-card {
    padding: var(--space-lg);
  }

  .category-card {
    padding: var(--space-lg);
  }

  .product-card {
    padding: var(--space-lg);
  }

  .product-ranking-item {
    padding: var(--space-lg);
  }

  .pros-list,
  .cons-list {
    padding: var(--space-lg);
  }
}

/* ── Print Styles ── */

@media print {
  .navbar,
  .site-footer,
  .hero-actions,
  .poll-card,
  .btn,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    font-size: 11pt;
    color: #000;
  }

  .section,
  .page-hero {
    padding: 1rem 0;
  }

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

  .product-card,
  .category-card,
  .guide-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ── Focus Styles (Accessibility) ── */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.35);
}

/* ── Selection ── */

::selection {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* ── Scrollbar ── */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-card);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-muted);
}

/* ── Skip Link (Accessibility) ── */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
}

/* ── Utility Classes ── */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--color-muted); }
.text-primary { color: var(--color-primary); }
.text-green { color: var(--color-green); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.775rem; }
.font-heading { font-family: var(--font-heading); }
.font-bold { font-weight: 700; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
