/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #378ADD;
  --blue-dark:   #185FA5;
  --teal:        #5DCAA5;
  --teal-dark:   #1D9E75;
  --green:       #97C459;
  --green-dark:  #639922;

  --bg:          #07111e;
  --bg-alt:      #0b1829;
  --surface:     #0d1a2a;
  --border:      rgba(255,255,255,0.08);

  --text:        rgba(255,255,255,0.88);
  --text-muted:  rgba(255,255,255,0.5);
  --text-light:  rgba(255,255,255,0.3);

  --gradient:    linear-gradient(135deg, #5DCAA5 0%, #378ADD 100%);

  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);

  --font:         'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  position: relative;
  z-index: 0;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 70% 50% at 15% 8%,  rgba(29,158,117,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 5%,  rgba(55,138,221,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 55%, rgba(55,138,221,0.06) 0%, transparent 55%),
    #07111e;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section--alt {
  background: rgba(255,255,255,0.025);
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(55,138,221,0.35);
}

.btn--primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(55,138,221,0.45);
  text-decoration: none;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* ---- Centre stage ---- */
.hero__stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 80px;
}

/* ---- Subtle glow ---- */
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,0.13) 0%, rgba(55,138,221,0.09) 40%, transparent 70%);
  pointer-events: none;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(24px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.hero__eyebrow::before,
.hero__eyebrow::after { display: none; }

/* Display headline */
.hero__headline {
  font-family: var(--font);
  font-size: clamp(2.4rem, 4.5vw, 5.25rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 28px;
  background: linear-gradient(140deg, #ffffff 0%, #d4f0e8 45%, #a8d8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero-specific buttons */
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  background: #fff;
  color: var(--blue-dark) !important;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn--hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
  text-decoration: none !important;
  color: var(--blue-dark) !important;
  opacity: 0.95;
}

.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(13,30,48,0.9);
  color: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.btn--hero-outline:hover {
  background: rgba(30,60,90,0.95);
  color: #fff !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
* { cursor: none !important; }

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
  mix-blend-mode: difference;
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(255,255,255,0.85);
}

body.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* ============================================================
   FULL-PAGE PARTICLE CANVAS
   ============================================================ */
.page-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Sections transparent — fixed body gradient + particle canvas show through uniformly */
.section {
  position: relative;
  background: transparent;
}


/* ============================================================
   HERO FADE TRANSITION
   ============================================================ */
.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #07111e);
  z-index: 10;
  pointer-events: none;
}

/* ============================================================
   BODY SECTION BASE
   ============================================================ */
.section {
  padding: 100px 0;
}

/* ---- Section header ---- */
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

p.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, #5DCAA5, #378ADD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.section__display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

.section__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ============================================================
   COMPARISON GRID
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.compare-col {
  display: flex;
  flex-direction: column;
}

.compare-col__header {
  padding: 28px 28px 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.compare-col--label .compare-col__header {
  background: #0b1829;
}

.compare-col--human .compare-col__header {
  background: #0b1829;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.compare-col--ai .compare-col__header {
  background: linear-gradient(135deg, #0f2d4a, #0b1829);
  border-left: 1px solid rgba(93,202,165,0.2);
}

.compare-col__tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

.compare-col__tag--ai {
  font-size: 0.85rem;
  background: linear-gradient(135deg, #5DCAA5, #378ADD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare-row__label {
  padding: 20px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  background: #0b1829;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.compare-row__cell {
  padding: 20px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
}

.compare-row__cell--dim {
  background: #080f1a;
  color: rgba(255,255,255,0.28);
  border-left: 1px solid rgba(255,255,255,0.06);
  font-weight: 400;
}

.compare-row__cell--win {
  background: linear-gradient(135deg, rgba(29,158,117,0.18), rgba(55,138,221,0.1));
  color: #fff;
  font-weight: 700;
  border-top: 1px solid rgba(93,202,165,0.2);
  border-left: 1px solid rgba(93,202,165,0.15);
  position: relative;
}

.compare-row__cell--win::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5DCAA5, #378ADD);
}

/* ============================================================
   PRICING — single card with two components
   ============================================================ */
.pricing-single {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0f2444, #0d1a2a);
  border: 1px solid rgba(93,202,165,0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.pricing-single::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #5DCAA5, #378ADD);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.pricing-row__block {
  padding: 52px 48px;
}

.pricing-row__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

.pricing-row__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.pricing-row__badge--green {
  background: rgba(93,202,165,0.12);
  color: #5DCAA5;
  border-color: rgba(93,202,165,0.3);
}

.pricing-row__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.pricing-row__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0 0 28px;
}
.pricing-row__btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.04em;
  padding: 11px 22px;
  margin-top: 80px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(93,202,165,0.4);
  color: #5DCAA5;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.pricing-row__btn:hover {
  background: rgba(93,202,165,0.08);
  border-color: #5DCAA5;
}
.pricing-single__cta {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-single__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-row__divider { width: 100%; height: 1px; margin: 0 40px; width: calc(100% - 80px); }
  .pricing-row__block { padding: 36px 32px; }
  .pricing-single__cta { flex-direction: column; align-items: flex-start; padding: 28px 32px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0d1a2a;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-q:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
}

.faq-q[aria-expanded="true"] .faq-icon::before { background: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after  { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  display: none;
  padding: 0 28px 22px;
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER — premium dark
   ============================================================ */
.footer {
  background: #07111e;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.footer__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 60% at 20% 80%, rgba(93,202,165,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 80% 20%, rgba(55,138,221,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.footer__wordmark {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, #f5d97a 0%, #c9a84c 40%, #f5d97a 80%, #e8c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.footer__tagline {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.footer__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav a:hover { color: rgba(255,255,255,0.75); }

.footer__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  margin-bottom: 28px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
/* faq-item: no scroll fade — items are already inside a visible card container */

/* ============================================================
   SOCIAL PROOF STATS STRIP
   ============================================================ */
.stats-strip {
  padding: 56px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: transparent;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-strip__item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stats-strip__divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.stats-strip__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #5DCAA5;
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats-strip__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 6px;
  font-weight: 500;
}

.stats-strip__source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — tablet (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 0.8fr 1fr 1fr; }
  .footer__inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer__nav { justify-content: center; }

  /* Hero */
  .hero__stage { padding: 60px 40px; }
  .hero__content { flex-direction: column; gap: 48px; }
  .hero__left { max-width: 100%; text-align: center; }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__right { display: flex; justify-content: center; }
  .hero__cards-stack { width: 300px; }
}

/* ============================================================
   RESPONSIVE — mobile (≤700px)
   ============================================================ */
@media (max-width: 700px) {
  .section { padding: 64px 0; }

  /* Typography */
  p.section__eyebrow { font-size: 1rem; }
  .section__display { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .section__lead { font-size: 0.9rem; }

  /* Hero */
  .hero__stage { padding: 48px 20px 40px; }
  .hero__headline { font-size: clamp(1.8rem, 8vw, 2.8rem); text-align: center; }
  .hero__sub { text-align: center; }
  .hero__right { display: none; }

  /* Stats strip */
  .stats-strip { padding: 40px 0; }
  .stats-strip__inner { flex-direction: column; gap: 28px; }
  .stats-strip__divider { width: 48px; height: 1px; }
  .stats-strip__item { padding: 0 16px; }
  .stats-strip__num { font-size: 2rem; }

  /* Comparison table — collapse to stacked rows */
  .compare-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .compare-col { display: contents; }
  .compare-col__header { display: none; }
  .compare-col--ai .compare-col__header {
    display: flex;
    background: linear-gradient(135deg, #0f2d4a, #0b1829);
    border: none;
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
  }
  .compare-row__label {
    font-size: 0.75rem;
    padding: 12px 16px 4px;
    background: #080f1a;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .compare-row__cell {
    padding: 8px 16px 14px;
    font-size: 0.85rem;
    border-top: none;
  }
  .compare-row__cell--dim { border-left: none; }
  .compare-row__cell--win { border-left: none; }

  /* FAQ */
  .faq-q { font-size: 0.875rem; padding: 16px; }
  .faq-a p { font-size: 0.875rem; padding: 0 16px 16px; }

  /* Pricing */
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-row__divider { width: calc(100% - 64px); height: 1px; margin: 0 32px; }
  .pricing-row__block { padding: 36px 32px; }
  .pricing-single__cta { flex-direction: column; align-items: flex-start; padding: 28px 32px; gap: 16px; }
  .pricing-single__cta .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__wordmark { font-size: 0.95rem; }
  .footer__tagline { font-size: 0.9rem; }
}

/* ============================================================
   RESPONSIVE — small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Hero CTAs */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Section text */
  p.section__eyebrow { font-size: 0.85rem; }
  .section__display { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Cards */
  .pricing-row__block { padding: 28px 20px; }
  .pricing-single__cta { padding: 24px 20px; }

  /* Comparison full-width */
  .compare-row__label { padding: 10px 12px 3px; }
  .compare-row__cell { padding: 6px 12px 12px; font-size: 0.8rem; }

  /* Footer */
  .footer__nav { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .footer__nav a { font-size: 0.8rem; }
}
