/* ============================================
   Voice Over Cloud - 2026 Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #053d54;
  --color-primary-light: #0a6e8a;
  --color-primary-dark: #032a3a;
  --color-accent: #00b4d8;
  --color-accent-light: #48cae4;
  --color-gold: #f0a500;
  --color-gold-light: #ffd166;
  --color-success: #06d6a0;
  --color-danger: #ef476f;
  --color-warning: #ffd166;

  --color-text: #1a1a2e;
  --color-text-secondary: #4a4a68;
  --color-text-muted: #7a7a96;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-bg-dark: #0d1b2a;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;

  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.15);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

a:hover {
  color: var(--color-accent);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 80px 0;
}

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

.section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.nav__logo img {
  height: 36px;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.nav__cta:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff !important;
}

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  padding: 8px;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(165deg, #f7f9fc 0%, #e8f4f8 40%, #dceefb 100%);
  overflow: hidden;
}

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

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

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.3);
  color: #b87a00;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
}

.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero__media-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 180px;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  color: #fff;
}

.btn--accent:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), #e6950a);
  color: #fff;
}

.btn--gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.3);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* --- Cards --- */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 32px;
  transition: all var(--transition-base);
}

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

.card--winner {
  border: 2px solid var(--color-gold);
  position: relative;
  background: linear-gradient(135deg, #fffdf5, #fff9e6);
}

.card--winner::before {
  content: 'Winner 2026';
  position: absolute;
  top: -14px;
  left: 32px;
  background: linear-gradient(135deg, var(--color-gold), #e6950a);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(5,61,84,0.1));
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  min-width: 900px;
}

.comparison-table thead {
  background: var(--color-primary);
  color: #fff;
}

.comparison-table thead th {
  padding: 18px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

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

.comparison-table tbody tr.winner-row {
  background: linear-gradient(90deg, #fffdf5, #fff9e6);
}

.comparison-table tbody tr.winner-row:hover {
  background: linear-gradient(90deg, #fff8e0, #fff3cc);
}

.comparison-table td {
  padding: 16px;
  vertical-align: middle;
}

.comparison-table .provider-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.comparison-table .provider-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.comparison-table .check {
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-table .cross {
  color: var(--color-danger);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .partial {
  color: var(--color-warning);
  font-weight: 600;
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--color-gold), #e6950a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  text-transform: uppercase;
}

/* --- Provider Cards Grid --- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.provider-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 32px;
  transition: all var(--transition-base);
}

.provider-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.provider-card--winner {
  border: 2px solid var(--color-gold);
  background: linear-gradient(145deg, #fffdf5, #fff);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  position: relative;
}

.provider-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.provider-card__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.provider-card__name {
  font-size: 1.15rem;
  font-weight: 700;
}

.provider-card__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 16px 0 8px;
}

.provider-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.provider-card__features {
  list-style: none;
  margin: 16px 0;
}

.provider-card__features li {
  padding: 6px 0;
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.provider-card__features li::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.provider-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0;
}

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-value {
  font-weight: 700;
  font-size: 0.95rem;
}

/* --- Score Bar --- */
.score-bar {
  margin: 8px 0;
}

.score-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.score-bar__track {
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  transition: width 1s ease-out;
}

.score-bar__fill--gold {
  background: linear-gradient(90deg, var(--color-gold), #e6950a);
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  color: inherit;
}

.blog-card__image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Testimonial / Quote --- */
.quote-block {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 24px;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* --- Verdict Section --- */
.verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.verdict__trophy {
  font-size: 6rem;
  line-height: 1;
}

.verdict__content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

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

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 16px 0;
}

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

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

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

/* --- Article Layout --- */
.article-hero {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, #f7f9fc 0%, #e8f4f8 100%);
}

.article-hero h1 {
  max-width: 800px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.article-body {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 20px;
}

.article-body h3 {
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.925rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-body thead {
  background: var(--color-primary);
  color: #fff;
}

.article-body thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}

.article-body tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}

.article-body tbody tr:hover {
  background: var(--color-bg-alt);
}

.article-body .callout {
  background: linear-gradient(135deg, #fffdf5, #fff9e6);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}

.article-body .callout h4 {
  color: #b87a00;
  margin-bottom: 8px;
}

.article-body .callout--info {
  background: linear-gradient(135deg, #f0f8ff, #e8f4f8);
  border-color: rgba(0,180,216,0.2);
}

.article-body .callout--info h4 {
  color: var(--color-primary-light);
}

/* --- App Screenshots --- */
.app-showcase {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 24px;
  align-items: start;
  margin: 40px 0;
}

.app-showcase img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.app-showcase--mobile img {
  max-width: 280px;
  margin: 0 auto;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 28px;
}

.cta-banner .btn--accent {
  background: #fff;
  color: var(--color-primary);
}

.cta-banner .btn--accent:hover {
  background: var(--color-gold-light);
  color: var(--color-primary-dark);
}

/* --- TOC (Table of Contents) --- */
.toc {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}

.toc__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.toc ol {
  padding-left: 20px;
  margin: 0;
}

.toc li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.toc a {
  color: var(--color-text-secondary);
}

.toc a:hover {
  color: var(--color-accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__media-float {
    left: auto;
    right: -15px;
    width: 140px;
  }

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

  .provider-card--winner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__menu-btn {
    display: block;
  }

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .app-showcase {
    grid-template-columns: 1fr;
  }

  .verdict {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comparison-table-wrapper {
    margin: 0 -24px;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* --- Prose improvements --- */
.prose-lg {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Sticky sidebar (articles) --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }
}
