/* ============================================
   Clarity AI — Landing Page
   Instrument Serif (display) + Satoshi (body)
   Dark theme · Emerald accent · Premium B2B SaaS
   ============================================ */

:root {
  --bg:            #0d0d12;
  --bg-elevated:   #121218;
  --bg-card:       #16161d;
  --bg-card-hover: #1a1a22;
  --bg-border:     rgba(255,255,255,0.06);
  --bg-border-accent: rgba(33,213,237,0.2);

  --fg:            #ffffff;
  --fg-muted:      #a0aac0;
  --fg-dim:        #6b7280;

  --accent:        #21d5ed;
  --accent-dim:    rgba(33, 213, 237, 0.10);
  --accent-glow:   rgba(33, 213, 237, 0.20);
  --accent-text:   #21d5ed;

  --red-dim:       rgba(248, 114, 114, 0.12);
  --red-text:      #f87272;
  --green-dim:     rgba(54, 211, 153, 0.12);
  --green-text:    #36d399;

  --font-display:  'Instrument Serif', Georgia, serif;
  --font-body:     'Satoshi', system-ui, sans-serif;

  --max-w:         1160px;
  --radius:        10px;
  --radius-lg:     16px;

  --transition:    0.22s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Subtle noise texture via SVG data URI for depth */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === SHARED HELPERS === */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 18px;
}

.section-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-header.centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
}
.section-header.centered .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0a0a0b;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #1ae5ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary.btn-large {
  font-size: 16px;
  padding: 16px 32px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.18);
}

.btn-arrow {
  opacity: 0.7;
  transition: transform var(--transition);
}
.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(3px);
}

.link-accent {
  color: var(--accent-text);
  font-weight: 600;
  transition: opacity var(--transition);
}
.link-accent:hover { opacity: 0.75; }

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bg-border);
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo-mark {
  color: var(--accent);
  font-size: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--fg-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.04);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-text);
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  transition: background var(--transition), border-color var(--transition);
  margin-left: auto;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: rgba(0, 210, 120, 0.18);
  border-color: var(--accent-text);
}

/* === HERO === */
.hero {
  padding: 80px 24px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner {
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  background: var(--accent-dim);
  border: 1px solid var(--bg-border-accent);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--accent-text);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

/* Dashboard demo card */
.dashboard-demo {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 660px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bg-border);
  background: var(--bg-elevated);
}
.demo-dots {
  display: flex;
  gap: 6px;
}
.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-dim);
}
.demo-dots span:first-child { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #28c840; }

.demo-label {
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.demo-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--bg-border);
}
.q-icon {
  color: var(--accent-text);
  font-size: 18px;
  flex-shrink: 0;
}

.demo-answer {
  padding: 18px 24px;
  border-bottom: 1px solid var(--bg-border);
}
.demo-answer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.demo-answer strong {
  color: var(--fg);
  font-weight: 600;
}

.demo-metrics {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--bg-border);
}
.metric-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 13px;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
}
.metric-label {
  color: var(--fg-muted);
  font-weight: 500;
}
.metric-val {
  font-weight: 700;
}
.metric-val.negative { color: var(--red-text); }
.metric-val.positive { color: var(--green-text); }

.demo-footer {
  padding: 12px 24px;
  font-size: 12px;
  color: var(--fg-dim);
  text-align: right;
}

/* === PROOF BAR === */
.proof {
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 48px 24px;
  background: var(--bg-elevated);
}
.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 56px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--accent-text);
  line-height: 1;
  letter-spacing: -0.025em;
}
.proof-unit {
  font-size: 26px;
  opacity: 0.7;
}
.proof-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 200px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--bg-border);
  flex-shrink: 0;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 0;
}
.how-steps {
  display: flex;
  flex-direction: column;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--bg-border);
  transition: background var(--transition);
}
.how-step:first-child { border-top: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--fg-dim);
  line-height: 1;
  padding-top: 4px;
  transition: color var(--transition), -webkit-text-stroke-color var(--transition);
}
.how-step:hover .step-number {
  color: transparent;
  -webkit-text-stroke-color: var(--accent);
}

.step-body h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.how-connector {
  /* removed — using border-top on each step instead */
  display: none;
}

.step-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tool-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.01em;
}

.demo-voice-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border-accent);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 520px;
}
.voice-icon {
  color: var(--accent-text);
  flex-shrink: 0;
}

.compound-timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  min-width: 120px;
}
.timeline-step.active {
  border-color: var(--bg-border-accent);
  background: var(--accent-dim);
}
.tl-day {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tl-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.timeline-arrow {
  color: var(--fg-dim);
  font-size: 18px;
}

/* === FEATURES BENTO === */
.features {
  padding: 80px 0 100px;
}
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.bento-card:hover {
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}
.bento-wide {
  grid-column: span 3;
}
.bento-highlight {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(33,213,237,0.05) 100%);
  border-color: var(--bg-border-accent);
}
.bento-accent {
  border-color: var(--bg-border-accent);
}

.bento-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
}
.bento-icon {
  font-size: 22px;
  color: var(--accent-text);
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}
.bento-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bento-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.bento-card p:last-child { margin-bottom: 0; }

.bento-demo-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 560px;
}
.input-prefix {
  color: var(--accent-text);
  font-style: normal;
  flex-shrink: 0;
}

/* === INTEGRATIONS === */
.integrations {
  padding: 80px 0 100px;
  border-top: 1px solid var(--bg-border);
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.integration-item:hover {
  border-color: rgba(255,255,255,0.12);
  background: var(--bg-card-hover);
}
.int-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
}
.int-stripe  { color: #7b5ea7; }
.int-hubspot { color: #ff7a59; }
.int-notion  { color: var(--fg); }
.int-postgres{ color: #336791; }
.int-sheets  { color: #34a853; }
.int-airtable{ color: #f82b60; }
.int-mysql   { color: #4479a1; }
.int-zapier  { color: #ff4a00; }

.int-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
}
.integrations-more {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* === COMPARISON === */
.comparison {
  padding: 100px 0;
  border-top: 1px solid var(--bg-border);
}
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 48px;
}
.compare-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-border);
}
.compare-col-good {
  border-color: var(--bg-border-accent);
  background: linear-gradient(180deg, rgba(33,213,237,0.05) 0%, transparent 100%);
}
.compare-col-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.compare-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-muted);
}
.compare-label.good { color: var(--accent-text); }
.compare-popular {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-text);
  background: var(--accent-dim);
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--bg-border);
  flex-wrap: wrap;
}
.compare-row:last-child { border-bottom: none; }
.compare-key {
  font-size: 13px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.compare-val {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}
.compare-val.bad   { color: var(--red-text); }
.compare-val.good  { color: var(--green-text); }

.compare-cta {
  text-align: center;
}
.compare-cta-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-dim);
}

/* === CLOSING === */
.closing {
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid var(--bg-border);
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(33,213,237,0.06) 0%, transparent 70%);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.closing-ctas {
  margin-bottom: 20px;
}
.closing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.startup-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border-accent);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--fg-muted);
}
.perk-icon { font-size: 18px; }
.startup-perk strong { color: var(--fg); }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--bg-border);
  padding: 56px 24px 32px;
  background: var(--bg-elevated);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.footer-links-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--fg); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
}
.footer-security {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.security-badge {
  font-size: 12px;
  color: var(--fg-dim);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 4px 10px;
  border-radius: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide { grid-column: span 2; }
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
  .compare-table { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links-col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 56px 20px 48px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .nav-links { display: none; }

  .proof-inner { flex-direction: column; gap: 0; }
  .proof-stat  { padding: 24px 32px; }
  .proof-divider { width: 60px; height: 1px; }

  .how-step { grid-template-columns: 1fr; gap: 8px; }
  .step-number { font-size: 36px; }

  .features-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

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

  .closing-trust { flex-direction: column; gap: 10px; }

  .footer-links-col { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .compare-table { grid-template-columns: 1fr; }
}
