:root {
  --bg-primary: #0a0a18;
  --bg-secondary: #08080f;
  --bg-tertiary: #06060e;
  --bg-card: rgba(255,255,255,0.03);
  --accent: #6C63FF;
  --accent-light: #A78BFA;
  --accent-dim: #7C6FFF;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.35);
  --success: #4ADE80;
  --warning: #F59E0B;
  --danger: #F87171;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(108,99,255,0.3);
  --border-accent-strong: rgba(108,99,255,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* SECTION */
.section { padding: 72px 0; }
.section > .container { /* extra specificity handled inline */ }

/* TYPOGRAPHY */
h1 { font-size: 48px; font-weight: 700; letter-spacing: -1.5px; line-height: 1.12; }
h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.8px; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.35; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(108,99,255,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 0.5px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(108,99,255,0.08); }
.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 6px 28px rgba(108,99,255,0.45);
}
.btn-lg:hover { box-shadow: 0 10px 36px rgba(108,99,255,0.6); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.2s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.nav-brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { font-size: 13px; padding: 9px 18px; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0a0a18 0%, #0f0f2a 60%, #12102a 100%);
  padding: 80px 32px 72px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(108,99,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--accent-light);
  background: rgba(108,99,255,0.15);
  border: 0.5px solid rgba(108,99,255,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 { max-width: 820px; margin: 0 auto 20px; }
.hero h1 .accent { color: var(--accent-dim); }
.hero-subtext {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }
.hero-insight-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(108,99,255,0.24);
  border-radius: 18px;
  padding: 20px 20px 18px;
  margin-bottom: 32px;
  text-align: left;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}
.hero-insight-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-insight-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent-light);
}
.hero-insight-header h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.hero-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-insight-item {
  background: rgba(255,255,255,0.045);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 16px 14px;
}
.hero-insight-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(108,99,255,0.16);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-insight-item strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.hero-insight-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.62;
}

/* ================================================
   DEMO CARD
   ================================================ */
.demo-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}
.demo-chrome {
  background: rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: #FF5F57; }
.dot-yellow{ background: #FEBC2E; }
.dot-green { background: #28C840; }
.demo-title {
  flex: 1;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.demo-live {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--success);
  background: rgba(74,222,128,0.12);
  border: 0.5px solid rgba(74,222,128,0.3);
  border-radius: 10px;
  padding: 3px 9px;
}
.demo-body { padding: 18px 20px; }
.demo-meeting-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.demo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.demo-meeting-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.demo-meeting-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.demo-transcript { margin-bottom: 16px; }
.demo-line {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.demo-speaker {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 11px;
  color: var(--accent-light);
  background: rgba(108,99,255,0.15);
  border-radius: 5px;
  padding: 2px 7px;
  height: fit-content;
  margin-top: 1px;
  letter-spacing: 0.3px;
}
.demo-text { color: rgba(255,255,255,0.7); }
.demo-actions {
  background: rgba(108,99,255,0.1);
  border: 0.5px solid rgba(108,99,255,0.3);
  border-radius: 10px;
  padding: 13px 15px;
}
.demo-actions-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.demo-action-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 7px;
  line-height: 1.45;
}
.demo-action-item:last-child { margin-bottom: 0; }
.demo-check { color: var(--success); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* ================================================
   STATS STRIP
   ================================================ */
.stats-strip {
  background: rgba(108,99,255,0.06);
  border-top: 0.5px solid rgba(108,99,255,0.2);
  border-bottom: 0.5px solid rgba(108,99,255,0.2);
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-col {
  padding: 32px 24px;
  text-align: center;
  border-right: 0.5px solid rgba(108,99,255,0.15);
}
.stat-col:last-child { border-right: none; }
.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .unit { color: var(--accent-dim); }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ================================================
   FEATURES
   ================================================ */
.features { background: var(--bg-secondary); }
.features-header { text-align: center; margin-bottom: 48px; }
.features-header .section-label { display: block; }
.features-header h2 { margin-bottom: 14px; }
.features-header p { max-width: 640px; margin: 0 auto; color: var(--text-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.feature-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.feature-icon { font-size: 26px; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.features-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.text-link { font-size: 14px; color: var(--accent-light); transition: color 0.15s; }
.text-link:hover { color: #fff; }

/* ================================================
   COMPARISON TABLE
   ================================================ */
.comparison { background: var(--bg-primary); }
.comparison-header { text-align: center; margin-bottom: 36px; }
.comparison-header h2 { margin-bottom: 10px; }
.comparison-header p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; }
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table thead tr { background: rgba(108,99,255,0.15); }
.comparison-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.comparison-table td {
  padding: 13px 18px;
  border: 0.5px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  vertical-align: top;
}
.comparison-table tr.highlight { background: rgba(108,99,255,0.1); border-left: 3px solid var(--accent); }
.comparison-table tr.highlight td { color: var(--text-primary); }
.comparison-table tbody tr:nth-child(even):not(.highlight) { background: rgba(255,255,255,0.02); }
.comparison-table .tool-name { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.comparison-conclusion { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; }
.comparison-conclusion strong { color: var(--text-primary); }
.comparison-footer { display: flex; justify-content: center; }

/* ================================================
   PRICING
   ================================================ */
.pricing { background: var(--bg-secondary); }
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-header h2 { margin-bottom: 10px; }
.pricing-header p { color: var(--text-secondary); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--border-accent); }
.pricing-card.featured {
  background: rgba(108,99,255,0.12);
  border: 1.5px solid rgba(108,99,255,0.5);
  box-shadow: 0 0 30px rgba(108,99,255,0.15);
}
.best-value-badge {
  position: absolute;
  top: -1px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-label { color: var(--accent-light); }
.pricing-price { font-size: 32px; font-weight: 800; color: var(--text-primary); line-height: 1.1; margin-bottom: 4px; }
.pricing-period { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-secondary); margin: 12px 0 18px; line-height: 1.55; }
.pricing-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note { font-size: 12px; color: var(--text-muted); text-align: center; max-width: 580px; margin: 0 auto; line-height: 1.6; }

/* ================================================
   WHO BENEFITS
   ================================================ */
.who-benefits { background: var(--bg-primary); }
.who-benefits-header { text-align: center; margin-bottom: 40px; }
.who-benefits-header h2 { margin-bottom: 10px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.who-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.who-icon { font-size: 24px; margin-bottom: 12px; }
.who-card h3 { margin-bottom: 8px; font-size: 16px; }
.who-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.who-conclusion { text-align: center; margin-bottom: 28px; color: var(--text-secondary); font-size: 16px; }
.who-conclusion strong { color: var(--text-primary); }
.who-cta { display: flex; justify-content: center; }

/* ================================================
   METHODOLOGY
   ================================================ */
.methodology { background: var(--bg-secondary); }
.methodology-header { margin-bottom: 28px; }
.methodology-header h2 { margin-bottom: 12px; }
.methodology-header p { color: var(--text-secondary); max-width: 640px; }
.methodology-highlight {
  background: rgba(108,99,255,0.08);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
}
.methodology-highlight h3 { margin-bottom: 8px; }
.methodology-highlight p { color: var(--text-secondary); font-size: 14px; }
.methodology-criteria { color: var(--text-secondary); margin-bottom: 14px; }
.methodology-update { color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; }
.methodology-end { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.transparency-note {
  background: rgba(245,158,11,0.06);
  border-left: 3px solid rgba(245,158,11,0.4);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
}
.transparency-note h4 { font-size: 14px; font-weight: 700; color: var(--warning); margin-bottom: 6px; }
.transparency-note p { font-size: 13px; color: var(--text-secondary); }

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  position: relative;
  background: linear-gradient(140deg, #0f0f2a 0%, #0a0a18 100%);
  border-top: 0.5px solid rgba(108,99,255,0.2);
  padding: 80px 32px;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(108,99,255,0.2), transparent);
  pointer-events: none;
}
.final-cta-inner { max-width: 620px; margin: 0 auto; position: relative; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; line-height: 1.65; }
.cta-disclaimer { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.25); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-tertiary);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; text-align: right; }

/* ================================================
   REVIEW PAGE — RATINGS GRID
   ================================================ */
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.rating-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.rating-score { font-size: 40px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.rating-score .out-of { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.rating-category { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-top: 8px; margin-bottom: 4px; }
.rating-desc { font-size: 12px; color: var(--text-muted); }
.verdict-box {
  background: rgba(108,99,255,0.08);
  border: 0.5px solid rgba(108,99,255,0.3);
  border-radius: 12px;
  padding: 20px 24px;
}
.verdict-box p { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }
.verdict-box p strong { color: var(--text-primary); }

/* ================================================
   REVIEW PAGE — FEATURES DEEP DIVE
   ================================================ */
.features-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.deep-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.deep-card h3 { margin-bottom: 8px; }
.deep-card p { font-size: 14px; color: var(--text-secondary); }

/* ================================================
   REVIEW PAGE — PROS & CONS
   ================================================ */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.pros-card, .cons-card { border-radius: 14px; padding: 24px; }
.pros-card {
  background: rgba(74,222,128,0.06);
  border: 0.5px solid rgba(74,222,128,0.2);
  border-left: 3px solid rgba(74,222,128,0.5);
}
.cons-card {
  background: rgba(245,158,11,0.06);
  border: 0.5px solid rgba(245,158,11,0.2);
  border-left: 3px solid rgba(245,158,11,0.4);
}
.pros-card h3 { color: var(--success); margin-bottom: 14px; }
.cons-card h3 { color: var(--warning); margin-bottom: 14px; }
.pros-card ul, .cons-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros-card li, .cons-card li { font-size: 14px; color: var(--text-secondary); display: flex; gap: 8px; }

/* ================================================
   REVIEW PAGE — WHO SHOULD USE
   ================================================ */
.who-use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.who-use-card { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 14px; padding: 20px; }
.who-use-card .icon { font-size: 22px; margin-bottom: 10px; }
.who-use-card h3 { font-size: 15px; margin-bottom: 6px; }
.who-use-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ================================================
   REVIEW PAGE — STEPS
   ================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.step-card { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 14px; padding: 22px; }
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 15px; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-secondary); }

/* ================================================
   REVIEW PAGE META
   ================================================ */
.review-hero-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; justify-content: center;
}
.review-hero-meta span {
  font-size: 13px; color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 4px 12px;
}

/* ================================================
   FINAL RECOMMENDATION BOX
   ================================================ */
.final-rec-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }

/* ================================================
   COMPARISON PAGE
   ================================================ */
.decision-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.decision-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px; padding: 22px;
  transition: border-color 0.2s;
}
.decision-card.featured { background: rgba(108,99,255,0.08); border-color: var(--border-accent); }
.decision-card h3 { font-size: 15px; margin-bottom: 8px; color: var(--accent-light); }
.decision-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

.feature-table-wrap { overflow-x: auto; border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.feature-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.feature-table thead tr { background: rgba(108,99,255,0.12); }
.feature-table thead th {
  padding: 13px 16px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase; white-space: nowrap;
}
.feature-table thead th:first-child { color: var(--text-secondary); }
.feature-table thead th.fireflies-col { color: var(--accent-light); }
.feature-table thead th:not(:first-child):not(.fireflies-col) { color: var(--text-muted); }
.feature-table td { padding: 11px 16px; border: 0.5px solid rgba(255,255,255,0.04); vertical-align: middle; color: var(--text-secondary); }
.feature-table td:first-child { font-weight: 600; color: var(--text-primary); }
.feature-table td.fireflies-val { background: rgba(108,99,255,0.06); color: var(--text-primary); }
.feature-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.feature-table .yes { color: var(--success); }
.feature-table .partial { color: var(--warning); }
.feature-table .no { color: var(--danger); }

.tool-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.tool-card {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.tool-card.featured { background: rgba(108,99,255,0.08); border-color: var(--border-accent); }
.tool-card-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.tool-card-score { font-size: 26px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tool-card-score span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.tool-card-strengths, .tool-card-weaknesses { font-size: 13px; color: var(--text-secondary); }
.tool-card-strengths strong, .tool-card-weaknesses strong {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 5px;
}
.tool-card-strengths strong { color: var(--success); }
.tool-card-weaknesses strong { color: var(--warning); }
.tool-card-buttons { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.tool-card-buttons .btn { font-size: 12px; padding: 9px 14px; width: 100%; justify-content: center; }

.use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.use-case-card { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.use-case-card .icon { font-size: 22px; margin-bottom: 10px; }
.use-case-card h3 { font-size: 14px; margin-bottom: 6px; }
.use-case-card p { font-size: 13px; color: var(--text-secondary); }
.use-case-card .rec { color: var(--accent-light); font-weight: 600; font-size: 13px; }

.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict-left {
  background: rgba(108,99,255,0.06); border: 0.5px solid var(--border-accent);
  border-radius: 14px; padding: 28px;
}
.verdict-left h3 { margin-bottom: 14px; font-size: 17px; }
.verdict-wins { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.verdict-wins li { font-size: 14px; color: var(--text-secondary); display: flex; gap: 8px; }
.verdict-wins li::before { content: '✅'; flex-shrink: 0; }
.verdict-alternatives { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.verdict-right {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.verdict-right h3 { margin-bottom: 8px; }
.verdict-right p { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.verdict-right .btn { width: 100%; justify-content: center; }

/* ================================================
   INTEGRATIONS CAROUSEL
   ================================================ */
.integrations-carousel {
  background: var(--bg-secondary);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  padding: 28px 0;
  overflow: hidden;
}
.carousel-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px;
}
.carousel-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  margin-bottom: 10px;
}
.carousel-track-wrap:last-child { margin-bottom: 0; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.carousel-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-left 32s linear infinite;
}
.carousel-track.reverse {
  animation: marquee-right 36s linear infinite;
}
.carousel-track:hover,
.carousel-track.reverse:hover {
  animation-play-state: paused;
}
.carousel-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  cursor: default;
}
.carousel-chip:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(108,99,255,0.3);
}
.carousel-chip .chip-icon {
  font-size: 15px;
  opacity: 0.8;
}

/* ================================================
   AMBIENT HERO BLOBS
   ================================================ */
@keyframes blob-drift {
  0%, 100% { transform: translateX(-50%) scale(1)   translateY(0px); }
  40%       { transform: translateX(-50%) scale(1.06) translateY(-28px); }
  70%       { transform: translateX(-50%) scale(0.96) translateY(18px); }
}
@keyframes blob-drift-2 {
  0%, 100% { transform: scale(1)   translateY(0px); }
  35%       { transform: scale(1.08) translateY(-22px); }
  65%       { transform: scale(0.94) translateY(14px); }
}
.hero-blob-1 {
  position: absolute;
  width: 700px; height: 480px;
  left: 50%; top: -60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(108,99,255,0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: blob-drift 14s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  width: 380px; height: 380px;
  right: 8%; top: 15%;
  background: radial-gradient(ellipse, rgba(167,139,250,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: blob-drift-2 19s ease-in-out infinite reverse;
}
.hero-blob-3 {
  position: absolute;
  width: 280px; height: 280px;
  left: 6%; bottom: 10%;
  background: radial-gradient(ellipse, rgba(108,99,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: blob-drift-2 23s ease-in-out infinite;
}

/* ================================================
   CTA BUTTON — SUBTLE PULSE
   ================================================ */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(108,99,255,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(108,99,255,0.65), 0 0 0 3px rgba(108,99,255,0.1); }
}
.hero-buttons .btn-primary {
  animation: btn-pulse 3.5s ease-in-out infinite;
}
.hero-buttons .btn-primary:hover {
  animation: none;
  box-shadow: 0 8px 32px rgba(108,99,255,0.65);
}

/* ================================================
   FEATURE CARDS — DEPTH ON HOVER
   ================================================ */
.feature-card:hover {
  border-color: rgba(108,99,255,0.45);
  background: rgba(108,99,255,0.04);
  box-shadow: 0 0 0 0.5px rgba(108,99,255,0.15), 0 10px 28px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}

/* ================================================
   DEMO CARD — ATMOSPHERIC SHADOW
   ================================================ */
.demo-card {
  box-shadow: 0 0 60px rgba(108,99,255,0.1), 0 24px 64px rgba(0,0,0,0.45);
}

/* ================================================
   PRICING FEATURED — BREATHING GLOW
   ================================================ */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(108,99,255,0.15); }
  50%       { box-shadow: 0 0 48px rgba(108,99,255,0.28), 0 0 0 1px rgba(108,99,255,0.15); }
}
.pricing-card.featured {
  animation: card-glow 4s ease-in-out infinite;
}

/* ================================================
   STAT NUMBERS — MORE DRAMA
   ================================================ */
.stat-number { font-size: 40px; }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  h1 { font-size: 36px; letter-spacing: -1px; }
  h2 { font-size: 27px; }
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .stat-col:nth-child(3) { border-right: 0.5px solid rgba(108,99,255,0.15); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .ratings-grid { grid-template-columns: repeat(2, 1fr); }
  .features-deep-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .who-use-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .verdict-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
  .hero { padding: 52px 20px; }
  .section { padding: 52px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ratings-grid { grid-template-columns: 1fr 1fr; }
  .decision-grid { grid-template-columns: 1fr 1fr; }
  .tool-cards-grid { grid-template-columns: 1fr; }
  .who-use-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}


/* ================================================
   HERO — SPLIT LAYOUT (appended)
   ================================================ */
.hero {
  background: linear-gradient(160deg, #0a0a18 0%, #0f0f2a 60%, #12102a 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: heroOrb 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroOrb {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.15); opacity: 1; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.15);
  border: 0.5px solid rgba(108,99,255,0.4);
  color: #A78BFA;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #6C63FF;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0;
}
.hero-accent { color: #7C6FFF; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}
.btn-hero-primary {
  display: inline-block;
  background: #6C63FF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(108,99,255,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  max-width: 320px;
  text-align: center;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108,99,255,0.6);
}
.hero-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: -12px 0 0;
  text-align: center;
  width: 100%;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stars { color: #F59E0B; font-size: 15px; }
.hero-proof-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px 20px;
}
.hero-trust span { font-size: 13px; color: rgba(255,255,255,0.45); }
.trust-dot { color: #4ADE80; font-size: 8px; margin-right: 4px; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.demo-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  transform: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(108,99,255,0.2);
}
.demo-bar {
  background: rgba(255,255,255,0.05);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.demo-label {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex: 1;
  text-align: center;
}
.demo-live {
  font-size: 11px;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74,222,128,0.12);
  border: 0.5px solid rgba(74,222,128,0.3);
  padding: 3px 8px;
  border-radius: 20px;
}
.demo-inner { padding: 18px; }
.demo-meeting-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6C63FF;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-meeting-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.demo-meeting-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.demo-transcript { margin-bottom: 14px; }
.demo-line {
  display: flex;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 6px;
  margin-bottom: 3px;
}
.demo-line:hover { background: rgba(255,255,255,0.04); }
.demo-speaker {
  font-size: 10px;
  font-weight: 700;
  color: #A78BFA;
  min-width: 24px;
  margin-top: 2px;
}
.demo-text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.demo-actions {
  background: rgba(108,99,255,0.1);
  border: 0.5px solid rgba(108,99,255,0.3);
  border-radius: 10px;
  padding: 12px;
}
.demo-actions-header {
  font-size: 11px;
  font-weight: 700;
  color: #A78BFA;
  margin-bottom: 8px;
}
.demo-action-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  line-height: 1.6;
}
.demo-check { color: #4ADE80; flex-shrink: 0; font-size: 11px; }


/* ================================================
   BUYER SNAPSHOT — spec sheet rows
   ================================================ */
.buyer-snapshot {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(108,99,255,0.28);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.snapshot-topline {
  background: rgba(108,99,255,0.12);
  border-bottom: 0.5px solid rgba(108,99,255,0.2);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.snapshot-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-light);
}
.snapshot-eyebrow {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.snapshot-rows { padding: 0; }
.snapshot-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0;
  align-items: flex-start;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.snapshot-row:last-child { border-bottom: none; }
.snapshot-row:hover { background: rgba(255,255,255,0.025); }
.snapshot-label-col {
  padding: 11px 14px;
  border-right: 0.5px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-top: 13px;
}
.snapshot-icon { font-size: 13px; margin-top: 1px; flex-shrink: 0; opacity: 0.8; }
.snapshot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  line-height: 1.3;
  margin-top: 2px;
}
.snapshot-value-col { padding: 10px 14px 11px; }
.snapshot-value-col strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 3px;
}
.snapshot-value-col span {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.45;
}


/* ================================================
   HERO STATS GRID (inside hero-left)
   ================================================ */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 4px;
}
.hero-stat {}
.hero-stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hero-stat-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-left: 1px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* ================================================
   HERO TRUST ICON GRID (2x2)
   ================================================ */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 4px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.trust-icon {
  font-size: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 32px; }
  .demo-card { transform: none; }
  .hero-insight-grid { grid-template-columns: 1fr; }
  .hero-insight-header h3 { font-size: 20px; }
  .snapshot-row { grid-template-columns: 100px 1fr; }
}

/* ================================================
   NEW SECTIONS — Reviews, Comparison, Integrations, Security
   ================================================ */

/* Shared section header */
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center h2 { margin: 8px 0 12px; }
.section-intro { font-size: 15px; color: var(--text-secondary); margin: 0; }
.section-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ── REVIEWS ── */
.new-reviews { background: var(--bg-secondary); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.review-card--amber {
  border-color: rgba(245,158,11,0.25);
  background: rgba(245,158,11,0.04);
}
.review-card--amber:hover { border-color: rgba(245,158,11,0.5); }
.review-icon { font-size: 24px; margin-bottom: 12px; }
.review-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.reviews-summary {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── COMPARISON ── */
.new-comparison { background: var(--bg-primary); }
.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.vs-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.vs-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.vs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vs-tool {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 4px 10px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.vs-tool--winner {
  color: var(--accent-light);
  border-color: var(--border-accent);
  background: rgba(108,99,255,0.1);
}
.vs-sep { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.vs-body { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vs-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.vs-col-label--winner { color: var(--accent-light); }
.vs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.vs-list li { font-size: 12px; color: var(--text-primary); padding-left: 14px; position: relative; line-height: 1.4; }
.vs-list li::before { content: "&#10003;"; position: absolute; left: 0; color: var(--success); font-size: 10px; top: 1px; }
.vs-list--muted li { color: var(--text-secondary); }
.vs-list--muted li::before { content: "&#8211;"; color: var(--text-muted); }
.vs-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
}
.vs-price-item { font-size: 12px; color: var(--text-secondary); }
.vs-price-item--muted { color: var(--text-muted); }
.vs-verdict {
  font-size: 13px;
  color: var(--accent-light);
  font-style: italic;
  padding-top: 4px;
}

/* ── INTEGRATIONS ── */
.new-integrations { background: var(--bg-secondary); }
.integrations-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.integrations-left { display: flex; flex-direction: column; gap: 20px; }
.integrations-left h2 { margin: 0; }
.integrations-left > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin: 0; }
.integrations-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.integrations-benefits li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.ib-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.integration-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.itile {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.itile:hover { border-color: var(--border-accent); background: rgba(108,99,255,0.07); color: var(--text-primary); }
.itile--featured { border-color: var(--border-accent); background: rgba(108,99,255,0.08); color: var(--text-primary); }
.itile--api { border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.05); color: var(--success); font-family: monospace; }
.itile-icon { font-size: 20px; }

/* ── SECURITY ── */
.new-security { background: var(--bg-primary); }
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.security-left { display: flex; flex-direction: column; gap: 20px; }
.security-left h2 { margin: 0; }
.security-left > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin: 0; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sec-item {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color 0.15s;
}
.sec-item:hover { border-color: var(--border-accent); }
.sec-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sec-title { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.sec-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .integrations-split,
  .security-inner { grid-template-columns: 1fr; gap: 36px; }
  .integration-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .vs-body { grid-template-columns: 1fr; }
  .integration-tiles { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
}
