/* =====================================================
   WHISPR SPEAK � styles.css
   Pure static CSS. No server rendering.
   ===================================================== */

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

:root {
  --brand:      #C15F3C;
  --brand-dark: #A34D2E;
  --sky:        #0EA5E9;
  --emerald:    #10B981;
  --amber:      #F59E0B;
  --pink:       #EC4899;
  --red:        #EF4444;

  --bg:         #09090B;
  --surface:    #111113;
  --surface2:   #18181B;
  --border:     rgba(255,255,255,0.08);
  --text:       #FAFAFA;
  --text-muted: #A1A1AA;
  --text-sub:   #71717A;

  --grad:       linear-gradient(135deg, var(--brand), var(--brand-dark));
  --grad-text:  linear-gradient(90deg, #E8956C, #C15F3C);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 80px rgba(193,95,60,0.22);

  --nav-h: 64px;
  --ease:  0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input  { font-family: inherit; }

/* ---- Utilities ---- */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding-block: 96px; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 500px;
  margin-inline: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(193,95,60,0.12);
  border: 1px solid rgba(193,95,60,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 1rem;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 12px rgba(193,95,60,0.35);
}
.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 22px rgba(193,95,60,0.5);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
.btn--lg { font-size: 1.0625rem; padding: 14px 28px; border-radius: var(--radius-md); }
.btn--full { width: 100%; justify-content: center; }
.btn--win { gap: 10px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav.menu-open .nav__links,
  .nav.menu-open .nav__actions { display: flex; }
  .nav.menu-open .nav__inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: 14px 20px;
    row-gap: 16px;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    order: 3;
  }
  .nav__actions { order: 4; width: 100%; flex-direction: column; }
  .nav__burger { order: 2; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 90px;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 960px; height: 640px;
  background: radial-gradient(ellipse at center top, rgba(193,95,60,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  text-align: left;
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero__right {
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--emerald); }
  50%      { box-shadow: 0 0 14px var(--emerald), 0 0 24px rgba(16,185,129,0.4); }
}
.hero__headline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.hero__accent {
  font-style: italic;
  font-weight: 700;
  color: var(--brand);
  display: block;
}
.hero__sub-headline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero__body {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero__cta { margin-top: 8px; }
.hero__footnote {
  font-size: 0.8125rem;
  color: var(--text-sub);
  margin-top: -4px;
}

/* Hero benefits bar */
.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding: 22px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.hero__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.hero__benefit svg {
  flex-shrink: 0;
  color: var(--brand);
}
.hero__benefit strong { color: var(--text); }

/* Hero video embed */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- SECTION 2: UNIQUE ---- */
.unique { background: var(--surface); }
.unique__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.unique-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color var(--ease), transform var(--ease);
}
.unique-card:hover {
  border-color: rgba(193,95,60,0.35);
  transform: translateY(-3px);
}
.unique-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: var(--c, var(--brand));
  margin-bottom: 18px;
}
.unique-card__icon svg { width: 22px; height: 22px; }
.unique-card h3 { font-family: 'EB Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.unique-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---- SECTION 2: EVERYWHERE (marquee) ---- */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  padding-block: 8px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
  transition: color var(--ease);
}
.marquee-item:hover { color: var(--text); }
.marquee-item img { filter: invert(1) opacity(0.55); transition: filter var(--ease); }
.marquee-item:hover img { filter: invert(1) opacity(1); }

/* ---- SECTION 4: COMPARE ---- */
.compare { background: var(--surface); }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table thead tr { background: var(--surface2); }
.compare-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.col-us {
  background: rgba(193,95,60,0.07);
  border-left: 2px solid rgba(193,95,60,0.4);
  border-right: 2px solid rgba(193,95,60,0.4);
}
thead .col-us {
  border-top: 2px solid rgba(193,95,60,0.4);
  color: #E8956C !important;
}
.compare-table tbody tr:last-child .col-us {
  border-bottom: 2px solid rgba(193,95,60,0.4);
}
.yes  { color: var(--emerald); font-weight: 600; }
.no   { color: var(--text-sub); }
.warn { color: var(--amber); font-weight: 600; }
.row-price td { font-size: 0.9375rem; }
.price-highlight {
  font-size: 1.0625rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-bad { color: var(--text-sub); }

/* ---- SECTION 5: SPEED ---- */
.speed__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}
.speed-card {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px 36px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.speed-card--fast {
  border-color: rgba(193,95,60,0.45);
  background: linear-gradient(180deg, rgba(193,95,60,0.1) 0%, var(--surface2) 100%);
  box-shadow: 0 0 40px rgba(193,95,60,0.15), var(--shadow-card);
  transform: scale(1.03);
  z-index: 1;
}
.speed-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.speed-card__illus {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 20px;
}
.kbd-illus {
  width: 100%;
  height: 80px;
  display: block;
  opacity: 0.45;
  filter: saturate(0);
}
.speed-card__illus--wave {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 200px;
  margin: 0 auto 20px;
}
.wb {
  display: block;
  width: 6px;
  max-height: var(--h, 60%);
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(180deg, #E8956C, #C15F3C);
  animation: wb-pulse 1.4s ease-in-out var(--d, 0s) infinite alternate;
  transform-origin: center;
}
@keyframes wb-pulse {
  0%   { transform: scaleY(0.15); opacity: 0.35; }
  100% { transform: scaleY(1);    opacity: 1; }
}
.speed-card__method {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.speed-card__stat {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
}
.speed-card--slow .speed-card__stat { color: var(--text-sub); }
.speed-card--fast .speed-card__stat {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.speed-card__stat span {
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--text-sub);
  color: var(--text-sub);
}
.speed-card__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: auto;
}
.speed-card__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.speed-card--slow li svg  { color: var(--red); flex-shrink: 0; }
.speed-card--fast li svg  { color: var(--emerald); flex-shrink: 0; }
.speed-vs {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-sub);
  padding: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 560px) {
  .speed-vs { padding: 20px 0; justify-content: center; }
  .speed__cards { flex-direction: column; align-items: center; }
  .speed-card--fast { transform: none; }
}

/* ---- SECTION 6: USE CASES ---- */
.usecases {
  background: radial-gradient(ellipse at 50% 0%, rgba(193,95,60,0.13) 0%, transparent 65%),
              var(--surface);
}
.usecases__headline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 64px;
}
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.usecase-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.usecase-col:last-child { border-right: none; }
.usecase-col__icon {
  color: var(--brand);
  margin-bottom: 24px;
}
.usecase-col__icon svg { width: 36px; height: 36px; }
.usecase-col__rule {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}
.usecase-col h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.usecase-col p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
@media (max-width: 700px) {
  .usecases__grid { grid-template-columns: 1fr; }
  .usecase-col { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .usecase-col:last-child { border-bottom: none; }
}

/* ---- SECTION 7: TESTIMONIALS ---- */
.testimonials { background: var(--surface); padding-block: 90px 80px; overflow: hidden; }
.testimonials__headline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 56px;
}
.t-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.t-marquee-wrap::before,
.t-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.t-marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--surface), transparent); }
.t-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--surface), transparent); }
.t-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding-bottom: 4px;
}
.t-marquee-track--right {
  animation: t-scroll-right 50s linear infinite;
}
.t-marquee-track--left {
  animation: t-scroll-left 50s linear infinite;
}
.t-marquee-track:hover { animation-play-state: paused; }
@keyframes t-scroll-right {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes t-scroll-left {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--ease);
}
.testimonial-card:hover { border-color: rgba(193,95,60,0.35); }
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span   { font-size: 0.8125rem; color: var(--text-sub); }

/* ---- SECTION 8: FAQ ---- */
.faq__list {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--surface2);
  transition: background var(--ease);
}
.faq-question:hover { background: rgba(193,95,60,0.07); }
.faq-question[aria-expanded="true"] { color: #E8956C; }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-sub);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--surface);
}
.faq-answer.open {
  max-height: 300px;
  padding: 16px 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- SECTION 9: FINAL CTA ---- */
.final-cta { background: var(--surface); }
.final-cta__card {
  background: linear-gradient(135deg, rgba(193,95,60,0.14), rgba(163,77,46,0.14));
  border: 1px solid rgba(193,95,60,0.3);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 9vw, 96px);
  text-align: center;
  box-shadow: 0 0 70px rgba(193,95,60,0.14), var(--shadow-card);
}
.final-cta__card h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-cta__card > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.final-cta__note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-sub);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  padding-bottom: 28px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer__logo { gap: 9px; }
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.875rem;
  color: var(--text-sub);
  transition: color var(--ease);
}
.footer__legal a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.footer__bottom p { font-size: 0.8125rem; color: var(--text-sub); }

/* ---- Responsive misc ---- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__left { align-items: center; }
  .hero__benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .hero { padding-bottom: 48px; }
  .hero__benefits { grid-template-columns: 1fr; padding: 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.825rem; }
}
