/* LexiTalk landing — implemented from "Landing Page v2.dc.html" */

:root {
  --bg: #0e0e11;
  --panel: #17171b;
  --menu: #1c1c21;
  --accent: #5B8DEF;
  --accent-hover: #6d9af1;
  --accent-light: #8fb0f5;
  --text: #f5f5f7;
  --text-85: rgba(245, 245, 247, 0.85);
  --text-70: rgba(245, 245, 247, 0.7);
  --text-60: rgba(245, 245, 247, 0.6);
  --text-55: rgba(245, 245, 247, 0.55);
  --text-45: rgba(245, 245, 247, 0.45);
  --text-40: rgba(245, 245, 247, 0.4);
  --text-35: rgba(245, 245, 247, 0.35);
  --border: rgba(255, 255, 255, 0.09);
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', system-ui, sans-serif;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { color: #b4cbf9; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

.mono { font-family: var(--font-mono); }
.accent { color: var(--accent-light); }

@keyframes wf { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes blink { 0%, 45% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---------- Nav ---------- */

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-link { font-size: 13px; color: rgba(245, 245, 247, 0.65); }
.nav-link:hover { color: var(--text); }

.lang { position: relative; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 13px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 247, 0.75);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.lang-btn:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }

.lang-menu {
  display: flex;
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 10;
  flex-direction: column;
  min-width: 168px;
  padding: 6px;
  border-radius: 12px;
  background: var(--menu);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
}
.lang-menu[hidden] { display: none; }

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-align: left;
}
.lang-item:hover { background: rgba(255, 255, 255, 0.07); color: var(--text); }
.lang-item svg { opacity: 0; flex: none; }
.lang-item[aria-selected="true"] svg { opacity: 1; }

.btn-nav-download {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 17px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
}
.btn-nav-download:hover { background: #ffffff; color: var(--bg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 78px 32px 74px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(91, 141, 239, 0.16), transparent);
  pointer-events: none;
}

.hero h1 {
  position: relative;
  margin: 0 auto;
  max-width: 780px;
  font-size: 66px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-sub {
  position: relative;
  margin: 20px auto 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-60);
  text-wrap: pretty;
}

.hero-ctas {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 22px;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(91, 141, 239, 0.35);
}
.btn-primary:hover { background: var(--accent-hover); color: #ffffff; }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-weight: 500;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); color: var(--text); }

.btn-large { height: 48px; padding: 0 26px; border-radius: 24px; font-size: 15px; }

.hero-meta { position: relative; margin-top: 14px; font-size: 12px; color: var(--text-40); }

.demo { position: relative; max-width: 620px; margin: 58px auto 0; }

.demo-window {
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  text-align: left;
  overflow: hidden;
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dot { width: 11px; height: 11px; border-radius: 99px; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.demo-title { margin-left: 8px; font-size: 12px; color: var(--text-45); }

.demo-body {
  padding: 20px 22px 46px;
  min-height: 96px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-85);
}

.caret {
  display: inline-block;
  width: 2px;
  height: 17px;
  background: var(--accent);
  vertical-align: -3px;
  margin-left: 2px;
  animation: blink 1.1s step-end infinite;
}

.rec-pill-wrap {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.rec-pill {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 19px;
  background: rgba(24, 24, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
  flex: none;
}

.wave { display: flex; align-items: center; gap: 3px; height: 14px; flex: none; }
.wave span {
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  flex: none;
  animation: wf 0.8s ease-in-out infinite alternate;
}
.wave span:nth-child(1) { height: 12px; animation-duration: 0.80s; animation-delay: 0s; }
.wave span:nth-child(2) { height: 8px;  animation-duration: 0.98s; animation-delay: -0.11s; }
.wave span:nth-child(3) { height: 14px; animation-duration: 1.16s; animation-delay: -0.22s; }
.wave span:nth-child(4) { height: 6px;  animation-duration: 0.89s; animation-delay: -0.33s; }
.wave span:nth-child(5) { height: 14px; animation-duration: 1.07s; animation-delay: -0.44s; }

.rec-time { font-family: var(--font-mono); font-size: 12px; color: rgba(245, 245, 247, 0.75); }

/* ---------- Proof bar ---------- */

.proof {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.proof-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-stat { font-size: 13px; color: var(--text-60); }
.proof-stat strong { color: var(--text); font-family: var(--font-mono); font-weight: 500; }

.proof-apps {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-45);
  flex-wrap: wrap;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-35);
}

/* ---------- Problem / solution ---------- */

.speed { max-width: 1080px; margin: 0 auto; padding: 84px 32px; }

.speed-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.speed-title {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.speed-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-55);
}

.speed-kicker { margin-top: 18px; font-size: 15px; font-weight: 600; color: var(--text); }

.wpm-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 34px 36px;
}

.wpm-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-55);
  margin-bottom: 7px;
}

.wpm-name { color: var(--text); font-weight: 500; }

.meter { height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); }
.meter-fill { height: 100%; border-radius: 6px; }
.meter-typing { width: 27%; background: rgba(255, 255, 255, 0.28); }
.meter-lexitalk {
  width: 97%;
  background: linear-gradient(90deg, #4a76d8, #5B8DEF);
  box-shadow: 0 0 18px rgba(91, 141, 239, 0.45);
}

.wpm-note { font-size: 12.5px; color: var(--text-45); }

/* ---------- Features ---------- */

.features { max-width: 1080px; margin: 0 auto; padding: 12px 32px 40px; }

.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
}

.feature-row-text-first { grid-template-columns: 1fr 1.1fr; }

.feature-copy h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-55);
  text-wrap: pretty;
}

.feature-note { margin-top: 14px; font-size: 12.5px; color: var(--accent-light); }

.feature-visual {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 22px;
}

.app-mock { display: flex; flex-direction: column; gap: 12px; }

.app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-row-active {
  background: rgba(91, 141, 239, 0.08);
  border-color: rgba(91, 141, 239, 0.3);
}

.app-dot { width: 8px; height: 8px; border-radius: 99px; flex: none; }
.app-name { width: 44px; font-size: 12px; font-weight: 500; color: var(--text-70); }
.app-bar { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.app-bar-bright { background: rgba(255, 255, 255, 0.2); }
.app-caret { width: 2px; height: 14px; background: var(--accent); animation: blink 1.1s step-end infinite; }

.transform-mock { display: flex; flex-direction: column; gap: 12px; }

.transform-box {
  padding: 13px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.transform-clean {
  background: rgba(91, 141, 239, 0.08);
  border-color: rgba(91, 141, 239, 0.3);
}

.transform-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-35);
  margin-bottom: 6px;
}

.transform-label-clean { color: var(--accent-light); }

.transform-text { font-size: 13.5px; line-height: 1.6; color: var(--text-85); }
.transform-text-raw { color: var(--text-45); font-style: italic; }

.transform-arrow { text-align: center; color: var(--text-35); font-size: 13px; line-height: 1; }

.privacy-mock { position: relative; padding: 30px 22px; }

.no-cloud {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-40);
}

.pipeline { display: flex; align-items: center; justify-content: center; gap: 14px; }

.pipe-node { flex: none; }

.pipe-mic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-70);
}

.pipe-link { width: 26px; height: 1px; background: rgba(91, 141, 239, 0.5); }

.pipe-chip {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(91, 141, 239, 0.1);
  border: 1px solid rgba(91, 141, 239, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--accent-light);
}

.pipe-text {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 9px;
}

.pipe-line { height: 3px; border-radius: 2px; background: rgba(245, 245, 247, 0.35); }
.pipe-line:first-child { background: rgba(245, 245, 247, 0.5); }

.pipeline-caption { text-align: center; margin-top: 16px; font-size: 11.5px; color: var(--text-40); }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 8px;
}

.mini-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

.mini-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.mini-text { font-size: 13px; line-height: 1.55; color: var(--text-55); }

/* ---------- Testimonials ---------- */

.quotes { max-width: 1080px; margin: 0 auto; padding: 72px 32px; }

.section-title {
  margin: 0 0 34px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

.quote-hero { max-width: 720px; margin: 0 auto 36px; text-align: center; }

.quote-hero-text {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.quote-hero-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex: none;
}

.quote-hero-byline { font-size: 13px; color: var(--text-60); }
.quote-hero-byline strong { color: var(--text); font-weight: 600; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.quote-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-text { font-size: 13.5px; line-height: 1.6; color: rgba(245, 245, 247, 0.8); }

.quote-footer { display: flex; align-items: center; gap: 9px; margin-top: auto; }

.quote-byline { font-size: 12px; color: var(--text-55); line-height: 1.35; }
.quote-byline strong { color: var(--text); font-weight: 600; display: block; }

.quote-app {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10.5px;
  color: rgba(245, 245, 247, 0.5);
  flex: none;
}

/* ---------- CTA ---------- */

.cta { max-width: 1080px; margin: 0 auto; padding: 24px 32px 90px; text-align: center; }

.cta-card {
  position: relative;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 56px 40px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(91, 141, 239, 0.18), transparent);
  pointer-events: none;
}

.cta-card h2 {
  position: relative;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.cta-card p {
  position: relative;
  margin: 14px auto 26px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-55);
  text-wrap: pretty;
}

.cta-card .btn { position: relative; }

.cta-meta { position: relative; margin-top: 13px; font-size: 12px; color: var(--text-40); }

/* ---------- Pricing ---------- */

.pricing { max-width: 820px; margin: 0 auto; padding: 0 32px 90px; }

.pricing .section-title { margin-bottom: 8px; }

.pricing-sub { margin: 0 0 30px; font-size: 14.5px; color: var(--text-55); text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.plan {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.plan-pro {
  position: relative;
  border-color: rgba(91, 141, 239, 0.45);
  box-shadow: 0 0 40px rgba(91, 141, 239, 0.12);
}

.plan-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  padding: 4px 11px;
  border-radius: 99px;
  background: var(--accent);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.plan-name { font-size: 14px; font-weight: 600; color: var(--text-70); }
.plan-name-pro { color: var(--accent-light); }

.plan-price { margin-top: 10px; font-size: 34px; font-weight: 600; letter-spacing: -0.02em; }
.plan-price span { font-size: 13px; font-weight: 400; color: var(--text-45); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 24px;
}

.plan-features span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-70);
}

.plan-features-pro span { color: var(--text-85); }

.plan-features svg { flex: none; margin-top: 3px; }

.plan-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 21px;
  font-size: 13.5px;
  font-weight: 600;
}

.plan-cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
}
.plan-cta-ghost:hover { border-color: rgba(255, 255, 255, 0.35); color: var(--text); }

.plan-cta-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(91, 141, 239, 0.3);
}
.plan-cta-primary:hover { background: var(--accent-hover); color: #ffffff; }

.pricing-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--text-40); }

/* ---------- FAQ ---------- */

.faq { max-width: 720px; margin: 0 auto; padding: 0 32px 90px; }

.faq .section-title { margin-bottom: 26px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}

.faq-item.open { border-color: rgba(91, 141, 239, 0.4); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.faq-q > span:first-child { font-size: 14.5px; font-weight: 600; }

.faq-sym { font-family: var(--font-mono); font-size: 15px; color: var(--text-45); flex: none; }

.faq-a {
  display: none;
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-60);
}

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

.faq-foot { text-align: center; margin-top: 18px; font-size: 12.5px; color: var(--text-40); }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }

.brand-mark-small { width: 20px; height: 20px; border-radius: 6px; }

.footer-cta { display: flex; align-items: center; gap: 12px; }

.footer-tagline { font-size: 13px; color: var(--text-60); }

.btn-footer-download {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 15px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
}
.btn-footer-download:hover { background: var(--accent-hover); color: #ffffff; }

.footer-links { display: flex; gap: 20px; font-size: 12.5px; align-items: center; }
.footer-links a { color: var(--text-55); }
.footer-links a:hover { color: var(--text); }
.footer-copyright { font-size: 12px; color: var(--text-35); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero h1 { font-size: 46px; }

  .speed-grid,
  .feature-row,
  .feature-row-text-first {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* keep copy above its visual on the rows where the visual comes first in the DOM */
  .feature-row:not(.feature-row-text-first) .feature-copy { order: -1; }

  .speed-title { font-size: 34px; }

  .mini-grid,
  .quote-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero { padding: 56px 24px 64px; }
  .hero h1 { font-size: 38px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-card h2 { font-size: 30px; }
  .cta-card { padding: 44px 24px; }
  .speed { padding: 64px 24px; }
}
