/* KlinikTalk marketing pages — light theme (generator-style) */
:root {
  --white: #ffffff;
  --bg: #f8f9fc;
  --bg-2: #f0f2f8;
  --panel: #ffffff;
  --panel-2: #f4f6fb;
  --card: #ffffff;
  --line: #e4e8f0;
  --navy: #0f1b3d;
  --navy-deep: #0a1230;
  --purple: #6b3fd4;
  --purple-light: #8b5cf6;
  --purple-pale: #f0ebff;
  --text: #1a2340;
  --muted: #5a6478;
  --green: #6b3fd4;
  --green-2: #8b5cf6;
  --blue: #4f6ef7;
  --blue-2: #6b3fd4;
  --gold: #d97706;
  --danger: #dc2626;
  --shadow: 0 8px 32px rgba(15, 27, 61, 0.08);
  --radius: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), 92%); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.dm { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }

h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(36px, 5.5vw, 68px); letter-spacing: -0.03em; font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.02em; font-weight: 800; }
h3 { font-size: clamp(18px, 2vw, 26px); font-weight: 800; }
p { margin: 0 0 14px; font-size: 16px; color: var(--muted); }
.lead { font-size: 19px; max-width: 780px; }
.grad {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--purple-pale);
  border: 1px solid rgba(107, 63, 212, 0.15);
  color: var(--purple); font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-light);
}

.btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  font-weight: 700; font-size: 15px; transition: 0.2s ease; cursor: pointer;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 8px 24px rgba(107, 63, 212, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(107, 63, 212, 0.3); }
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: var(--bg); border-color: #d0d5e0; }

/* ── Nav / topbar ── */
.nav, .topbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner, .topbar-inner {
  width: min(var(--max), 94%); margin: 0 auto; min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand, .logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: var(--navy);
}
.brand-badge, .logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: grid; place-items: center; color: #fff;
  font-size: 14px; font-weight: 900;
  position: relative;
}
.logo-mark::after {
  content: "+"; position: absolute; top: 2px; right: 4px;
  font-size: 9px; font-weight: 700; opacity: 0.85;
}
.nav-links, .topbar-nav {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.nav-links a, .topbar-nav a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover, .topbar-nav a:hover { color: var(--purple); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.topbar-auth { display: flex; align-items: center; flex-shrink: 0; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 10px;
  border: 1px solid #dadce0; background: #fff; color: #3c4043;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: box-shadow 0.15s; white-space: nowrap;
}
.btn-google:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); }
.user-chip {
  display: none; align-items: center; gap: 8px;
  padding: 5px 14px 5px 5px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg);
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.user-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
#user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 7px 12px;
  background: var(--purple-pale); border: 1px solid rgba(107, 63, 212, 0.12);
  color: var(--purple); font-size: 12px; font-weight: 700;
}

/* ── Hero ── */
.hero { padding: 72px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; }
.hero-copy p { max-width: 760px; }
.hero-panel, .surface {
  position: relative; padding: 24px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-panel::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 63, 212, 0.1), transparent 65%);
  pointer-events: none;
}
.hero-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 18px; }
.hero-mini {
  font-size: 12px; color: var(--muted); padding: 8px 12px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
}
.hero-grid-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px;
}
.mini-kicker { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.mini-value { font-size: 28px; font-weight: 900; color: var(--navy); margin-top: 6px; }
.mini-copy { font-size: 13px; color: var(--muted); margin-top: 6px; }
.prompt-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px; margin-bottom: 14px;
  font-size: 14px; color: var(--text); line-height: 1.7;
}
.prompt-box em { color: var(--purple); font-style: normal; font-weight: 700; }
.build-steps { display: grid; gap: 10px; }
.build-step {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--text);
}
.build-step span {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: #fff;
}
.build-step.done { border-color: rgba(107, 63, 212, 0.25); background: var(--purple-pale); }
.build-step.done span { background: var(--purple); }

.stack { margin-top: 14px; display: grid; gap: 12px; }
.stack-item {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
}
.stack-item strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.tag {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; border-radius: 999px; padding: 6px 10px;
  background: var(--purple-pale); border: 1px solid rgba(107, 63, 212, 0.15);
  color: var(--purple); font-size: 11px; font-weight: 800;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.stat {
  border-radius: 16px; padding: 20px;
  background: var(--bg); border: 1px solid var(--line);
}
.stat h3 { font-size: 28px; margin: 0 0 6px; color: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card, .pillar, .price-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.pillar-icon, .icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 14px;
  display: grid; place-items: center; font-size: 22px;
  background: var(--purple-pale); border: 1px solid rgba(107, 63, 212, 0.12);
}
.pillar h3 { font-size: 18px; margin-bottom: 8px; }
.pillar p, .card p { font-size: 14px; margin: 0; }
.card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.card li { margin-bottom: 6px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.check, .x {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; color: var(--text); font-size: 15px;
}
.check i, .x i {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-style: normal;
  font-weight: 900; font-size: 13px; flex-shrink: 0;
}
.check i { background: var(--purple-pale); color: var(--purple); }
.x i { background: #fef2f2; color: var(--danger); }

.pricing {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 28px;
}
.price-card { position: relative; }
.price-card.featured {
  border-color: var(--purple-light);
  box-shadow: 0 16px 48px rgba(107, 63, 212, 0.15);
  transform: translateY(-4px);
}
.popular, .badge {
  position: absolute; right: 18px; top: 18px; padding: 6px 10px; border-radius: 999px;
  background: var(--purple-pale); border: 1px solid rgba(107, 63, 212, 0.2);
  color: var(--purple); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge.gold { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.badge.green { background: var(--purple-pale); color: var(--purple); }
.price-card h4 {
  margin: 10px 0 0; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.price-card .subtitle { margin: 10px 0 0; font-size: 14px; }
.price-card .included {
  margin-top: 14px; padding: 12px 14px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.price-card .included strong { color: var(--navy); }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 16px 0 12px; }
.price .amt { font-size: 44px; font-weight: 900; color: var(--navy); line-height: 1; }
.price .per { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.price-list { margin: 18px 0 24px; padding-left: 18px; color: var(--muted); }
.price-list li { margin-bottom: 8px; }

.logos { margin-top: 34px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-card {
  padding: 16px; border-radius: 14px;
  background: var(--bg); border: 1px solid var(--line);
  text-align: center; font-size: 13px; font-weight: 700; color: var(--navy);
}

.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.tab {
  padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: var(--bg); border: 1px solid var(--line); color: var(--muted);
}

.workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.step {
  position: relative; padding: 22px 18px; border-radius: 18px; min-height: 190px;
  background: var(--white); border: 1px solid var(--line);
}
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line); font-weight: 800; color: var(--purple);
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  font-size: 13px; font-weight: 900; color: #fff; margin-bottom: 14px;
}

.split-surface { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 24px; align-items: stretch; }
.app-shot {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg); min-height: 480px; box-shadow: var(--shadow);
}
.app-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--white);
}
.dots { display: flex; gap: 8px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #d0d5e0; }
.app-body { display: grid; grid-template-columns: 200px 1fr; min-height: 420px; }
.sidebar {
  padding: 16px; border-right: 1px solid var(--line); background: var(--white);
}
.side-item {
  padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.side-item.active, .side-item:hover {
  background: var(--purple-pale); color: var(--purple);
}
.content { padding: 18px; background: var(--bg); }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px;
}
.panel h4 { font-size: 14px; margin: 0 0 8px; color: var(--navy); }
.big-num { font-size: 26px; font-weight: 900; color: var(--navy); }
.linebar {
  height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; margin-top: 10px;
}
.linebar span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.patient-shell {
  border-radius: 20px; padding: 18px; background: var(--bg);
  border: 1px solid var(--line); min-height: 480px; box-shadow: var(--shadow);
}
.patient-head {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 10px 4px 16px; border-bottom: 1px solid var(--line);
}
.patient-blocks { display: grid; gap: 12px; margin-top: 16px; }
.patient-card {
  padding: 14px; border-radius: 14px; background: var(--white); border: 1px solid var(--line);
}
.lang-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.lang-pill {
  font-size: 12px; font-weight: 700; padding: 8px 10px; border-radius: 999px;
  background: var(--purple-pale); border: 1px solid rgba(107, 63, 212, 0.12); color: var(--purple);
}

.demo-gallery {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; margin-top: 34px; align-items: stretch;
}
.demo-shot {
  position: relative; overflow: hidden; border-radius: 20px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow); min-height: 320px;
  display: flex; flex-direction: column;
}
.demo-shot img {
  width: 100%; height: 260px; object-fit: contain;
  background: var(--bg); padding: 12px;
}
.demo-caption {
  padding: 14px 16px; border-top: 1px solid var(--line); background: var(--white); flex: 1;
}
.demo-caption strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.demo-caption span { display: block; color: var(--muted); font-size: 13px; }

.cta {
  border-radius: 24px; padding: 40px;
  background: linear-gradient(135deg, var(--navy-deep), #1a2d6b);
  border: none; box-shadow: var(--shadow); color: #fff;
}
.cta h2, .cta h3 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.8); }
.cta .eyebrow { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2); color: #e0e7ff; }
.cta .btn-secondary { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); color: #fff; }

footer, .footer-bar {
  padding: 34px 0 50px; color: var(--muted);
  background: var(--white);
}
.footer-grid {
  display: grid; gap: 22px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-grid h4 { font-size: 14px; margin-bottom: 12px; color: var(--navy); }
.footer-grid a, .footer-grid p { font-size: 14px; color: var(--muted); margin-bottom: 8px; display: block; }
.footer-grid a:hover { color: var(--purple); }
.small { font-size: 13px; }

strong[style*="color:#fff"], strong[style*="color: #fff"] { color: var(--navy) !important; }

/* ── Systems catalog (Build your system page) ── */
.systems-section { background: var(--bg); }
.systems-stats {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px;
}
.systems-stat {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 22px; text-align: center; min-width: 120px;
}
.systems-stat strong { display: block; font-size: 22px; color: var(--navy); font-weight: 900; }
.systems-stat span { font-size: 12px; color: var(--muted); font-weight: 600; }
.systems-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin: 36px 0 28px; position: sticky; top: 64px; z-index: 50;
  background: rgba(248, 249, 252, 0.92); backdrop-filter: blur(10px);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.systems-select-wrap { flex: 1; min-width: 200px; max-width: 280px; }
.systems-select {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--navy); cursor: pointer;
}
.systems-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; flex: 2;
}
.sys-tab {
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--muted); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: 0.15s;
}
.sys-tab:hover { border-color: var(--purple-light); color: var(--purple); }
.sys-tab.active {
  background: var(--purple-pale); border-color: rgba(107, 63, 212, 0.25); color: var(--purple);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.sys-category { margin-bottom: 48px; scroll-margin-top: 120px; }
.sys-category.sys-hidden { display: none; }
.sys-cat-header {
  background: linear-gradient(135deg, var(--navy), #1a2d6b);
  padding: 16px 22px; border-radius: 14px; margin-bottom: 18px; color: #fff;
}
.sys-cat-header h3 { color: #fff; margin: 0 0 4px; font-size: 18px; }
.sys-cat-header p { color: rgba(255, 255, 255, 0.75); margin: 0; font-size: 13px; }
.sys-cat-header--purple { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.sys-cat-header--green { background: linear-gradient(135deg, #0d5c4a, var(--purple)); }
.sys-cat-header--navy { background: linear-gradient(135deg, #1a237e, var(--purple)); }
.sys-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.sys-card {
  position: relative; display: block; padding: 20px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--line);
  transition: 0.2s ease; overflow: hidden;
}
.sys-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0; transition: opacity 0.2s;
}
.sys-card:hover {
  border-color: rgba(107, 63, 212, 0.3); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 63, 212, 0.12);
}
.sys-card:hover::before { opacity: 1; }
.sys-card:hover .sys-arrow { opacity: 1; transform: translateX(4px); }
.sys-card--featured { border-color: rgba(107, 63, 212, 0.35); background: var(--purple-pale); }
.sys-icon { font-size: 28px; margin-bottom: 8px; }
.sys-cat {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 6px;
}
.sys-card h4 { font-size: 16px; margin: 0 0 8px; color: var(--navy); }
.sys-card p { font-size: 13px; margin: 0 0 10px; line-height: 1.55; }
.sys-feats { font-size: 11px; color: var(--muted); line-height: 1.6; }
.sys-arrow {
  position: absolute; bottom: 16px; right: 16px; font-size: 18px;
  color: var(--purple); opacity: 0; transition: 0.2s;
}
.sys-product-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.sys-product-card {
  display: block; padding: 24px; border-radius: 18px;
  background: var(--white); border: 1px solid var(--line);
  transition: 0.2s; box-shadow: var(--shadow);
}
.sys-product-card:hover {
  border-color: var(--purple-light); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(107, 63, 212, 0.14);
}
.sys-product-icon { font-size: 32px; margin-bottom: 12px; }
.sys-product-card h4 { font-size: 18px; margin: 0 0 10px; color: var(--navy); }
.sys-product-card p { font-size: 14px; margin: 0 0 14px; }
.sys-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sys-tags span {
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
  background: var(--purple-pale); color: var(--purple);
}
.systems-cta { margin-top: 20px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .systems-tabs { display: none; }
  .sys-product-row { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .systems-select-wrap { display: none; }
}

@media (max-width: 1120px) {
  .hero-grid, .split-surface, .grid-2, .compare { grid-template-columns: 1fr; }
  .workflow, .pillars { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .stats, .grid-4, .logos { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .demo-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .topbar-nav { display: none; }
  .nav-actions .pill { display: none; }
  .hero { padding-top: 48px; }
  .logos, .stats, .workflow, .pillars, .hero-grid-cards, .content-grid { grid-template-columns: 1fr; }
  .app-body { grid-template-columns: 1fr; }
  .sidebar { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .btns { flex-direction: column; }
  .btn { width: 100%; }
  .step:not(:last-child)::after { display: none; }
}
