/* ============================================================
   Nuxlio — design system
   ============================================================ */

@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/space-grotesk-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/space-grotesk-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --blue: #2563eb;
  --indigo: #4338ca;
  --gradient: linear-gradient(135deg, var(--blue), var(--indigo));
  --gradient-soft: linear-gradient(135deg, #eff4ff, #eef0fe);

  /* Neutrals */
  --ink: #0f172a;
  --ink-soft: #334155;
  --body: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #edf1f7;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --dark: #0b1120;
  --dark-surface: #131c34;
  --dark-line: #24304d;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  /* Scale */
  --container: 1160px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--gradient-soft);
  border: 1px solid #dbe4ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.on-dark {
  color: #a9c1ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }

.text-lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(37, 99, 235, 0.36); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: #c7d2e5; transform: translateY(-1px); }

.btn-ghost { color: var(--ink-soft); padding: 13px 16px; }
.btn-ghost:hover { color: var(--ink); }

.btn-on-dark.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-on-dark.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.45); }

.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 32px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--surface-alt); }
.main-nav a.active { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(600px 320px at 20% 10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(520px 320px at 85% 20%, rgba(67, 56, 202, 0.13), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .text-lead { margin-bottom: 34px; max-width: 540px; }
.hero-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Terminal mockup */
.terminal {
  background: var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #1b2540;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #0e1730;
  border-bottom: 1px solid #1b2540;
}
.terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #ff6159; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #29c840; }
.terminal-title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #6b7aa1;
}
.terminal-body {
  padding: 26px 24px 30px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.85;
  color: #c7d2e5;
}
.t-prompt { color: #6b7aa1; }
.t-cmd { color: #ffffff; }
.t-ok { color: #4ade80; }
.t-accent { color: #7fa4ff; }
.t-muted { color: #536188; }
.t-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: #7fa4ff;
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 46px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.logo-strip-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
.logo-row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #94a3b8;
  letter-spacing: -0.01em;
}

/* ---------- Cards / features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #dde4f0; }

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.26);
}
.icon-tile svg { width: 22px; height: 22px; stroke: #fff; }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  background: var(--gradient-soft);
  border: 1px solid #dbe4ff;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Feature rows (Products page) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-row:last-child { border-bottom: none; }
.feature-row:first-child { padding-top: 8px; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-copy .eyebrow { margin-bottom: 16px; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.feature-list svg { flex: none; width: 18px; height: 18px; margin-top: 2px; stroke: var(--blue); }

.feature-visual {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mini bar chart / metric visual */
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.metric-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.metric-head .label { font-size: 0.82rem; color: var(--muted); }
.metric-head .value { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.3rem; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.bars span { flex: 1; background: var(--gradient); border-radius: 4px 4px 0 0; opacity: 0.85; }
.bars span:nth-child(odd) { opacity: 1; }

.gateway-rows { width: 100%; display: grid; gap: 10px; }
.gateway-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 16px; font-size: 0.85rem; font-family: var(--font-mono);
}
.method { font-weight: 700; padding: 3px 8px; border-radius: 6px; font-size: 0.72rem; }
.method.get { background: #e0f2fe; color: #0369a1; }
.method.post { background: #dcfce7; color: #15803d; }
.method.del { background: #fee2e2; color: #b91c1c; }
.status-ok { color: #16a34a; font-weight: 600; }

.docs-preview { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.docs-preview .doc-line { padding: 10px 16px; border-bottom: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); }
.docs-preview .doc-line:last-child { border-bottom: none; }

/* ---------- Dark band ---------- */
.band-dark {
  background: var(--dark);
  color: #cbd5e1;
}
.band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark p { color: #93a2c2; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 72px 48px;
  text-align: center;
  background: var(--dark);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(37, 99, 235, 0.35), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #93a2c2; max-width: 480px; margin: 0 auto 30px; }
.cta-band .cta-row { justify-content: center; }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
}
.pricing-toggle button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.pricing-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.pricing-toggle .save { font-size: 0.72rem; color: var(--blue); margin-left: 4px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-family: var(--font-display); font-weight: 500; font-size: 0.74rem;
  padding: 5px 14px; border-radius: 999px;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.plan-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price .amount { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--ink); }
.plan-price .period { color: var(--muted); font-size: 0.9rem; }
.plan-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.plan .btn { margin-bottom: 26px; }
.plan-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.plan-features li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.plan-features svg { flex: none; width: 16px; height: 16px; margin-top: 3px; stroke: var(--blue); }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 90px; }
.compare-table caption { text-align: left; margin-bottom: 20px; }
.compare-table th, .compare-table td {
  text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem;
}
.compare-table thead th { font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table tbody tr:hover { background: var(--surface-alt); }
.compare-table .cat-row td { font-family: var(--font-display); font-weight: 700; color: var(--ink); background: var(--surface-alt); padding-top: 10px; padding-bottom: 10px; }
.check { color: var(--blue); }
.dash { color: #cbd5e1; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--blue); font-family: var(--font-body); flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ---------- About page ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 8px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

.value-card { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.value-card:last-child { border-bottom: none; }
.value-num { font-family: var(--font-display); font-weight: 700; color: #c7d2e5; font-size: 1.6rem; flex: none; width: 46px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p { color: var(--muted); margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.avatar {
  width: 92px; height: 92px; border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff;
}
.team-card h4 { margin-bottom: 2px; }
.team-card .role { color: var(--muted); font-size: 0.85rem; }

.timeline { display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year { font-family: var(--font-display); font-weight: 700; color: var(--blue); }
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #93a2c2; padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 56px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { max-width: 260px; font-size: 0.9rem; color: #7f8fb3; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: #93a2c2; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--dark-line); font-size: 0.85rem; color: #64729a;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--dark-line);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg { width: 16px; height: 16px; stroke: #93a2c2; }
.footer-socials a:hover { border-color: #45507a; }
.footer-legal { display: flex; gap: 20px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 72px 0 64px; text-align: center; }
.page-hero .section-head { max-width: 680px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .text-lead { max-width: none; }
  .grid-3, .grid-4, .plans, .team-grid, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-copy, .feature-row.reverse .feature-visual { order: initial; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.mobile-open { display: flex; }
  .main-nav a { padding: 14px 16px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-secondary.nav-login { display: none; }
  .grid-3, .grid-4, .plans, .team-grid, .stat-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .compare-table { display: block; overflow-x: auto; }
  .cta-band { margin: 0 16px; padding: 52px 28px; }
}
