:root {
  --primary: #0754d6;
  --primary-dark: #003ea8;
  --accent: #10b981;
  --ink: #071426;
  --text: #102033;
  --muted: #64748b;
  --surface: #ffffff;
  --line: #dce4f0;
  --soft: #eff5ff;
  --dark: #08172a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #f6f8fc;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}
.brand-mark {
  align-items: center;
  background: var(--primary);
  border-radius: 14px;
  color: #fff;
  display: flex;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong { color: var(--primary); font-size: 22px; line-height: 1; }
.brand small { color: var(--muted); font-size: 13px; margin-top: 4px; }
.site-header nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-header nav a {
  color: #34425a;
  font-size: 14px;
  font-weight: 850;
}
.nav-cta {
  background: var(--primary);
  border-radius: 10px;
  color: #fff !important;
  padding: 11px 15px;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}
.hero-media {
  background:
    linear-gradient(90deg, rgba(3, 15, 34, 0.9), rgba(3, 15, 34, 0.72) 52%, rgba(3, 15, 34, 0.48)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2200&q=80") center/cover;
  inset: 0;
  position: absolute;
}
.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}
.hero-content {
  color: #fff;
  max-width: 850px;
  padding: 88px 0 88px clamp(22px, 6vw, 92px);
}
.eyebrow,
.section-heading span,
.section-kicker {
  color: #9fc1ff;
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
}
.hero-copy {
  color: #d8e5f8;
  font-size: 20px;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}
.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.primary-link,
.secondary-link,
.outline-link,
.submit-button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}
.primary-link,
.submit-button {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}
.primary-link:hover,
.submit-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.secondary-link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.outline-link {
  background: #fff;
  border: 1px solid #cbd8ec;
  color: var(--primary);
}
.hero-panel {
  padding: 120px clamp(22px, 6vw, 92px) 88px 0;
}
.mini-window {
  background: rgba(7, 20, 38, 0.84);
  border: 1px solid rgba(206, 221, 242, 0.22);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 18px;
}
.mini-window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}
.mini-window-bar span {
  background: #3e526f;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.mini-kpis {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.mini-kpis article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
}
.mini-kpis b {
  display: block;
  font-size: 28px;
}
.mini-kpis span {
  color: #b9c9dd;
  font-size: 12px;
}
.mini-funnel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.mini-funnel div {
  display: grid;
  gap: 8px;
}
.mini-funnel span {
  color: #d8e5f8;
  font-size: 13px;
  font-weight: 850;
}
.mini-funnel i {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  display: block;
  height: 10px;
  width: var(--w);
}

.proof-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -48px auto 0;
  max-width: 1180px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.proof-strip article,
.feature-card,
.module-list article,
.contact-section,
.screen-card,
.trust-grid article,
.pricing-grid article,
.pain-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.proof-strip article {
  display: grid;
  gap: 8px;
  padding: 22px;
}
.proof-strip strong { font-size: 20px; }
.proof-strip span,
.feature-card p,
.section-heading p,
.contact-copy p,
.contact-note span,
.pain-section p,
.pricing-grid p,
.trust-grid span,
.screen-note {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  margin: 78px auto 0;
  max-width: 1180px;
  padding: 0 24px;
}
.section-heading {
  margin-bottom: 24px;
  max-width: 790px;
}
.section-heading span,
.section-kicker {
  color: var(--primary);
}
.section-heading h2,
.contact-copy h2,
.split-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}
.section-heading p,
.split-copy p {
  font-size: 17px;
  margin: 14px 0 0;
}

.pain-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 0.8fr;
  padding: clamp(24px, 4vw, 42px);
}
.pain-list {
  display: grid;
  gap: 12px;
}
.pain-list article {
  align-items: center;
  background: #f8fbff;
  border: 1px solid #dce7f7;
  border-radius: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  padding: 14px;
}
.pain-list b {
  align-items: center;
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 42px;
  justify-content: center;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
  padding: 26px;
}
.feature-card--wide {
  grid-column: span 2;
}
.feature-card--dark {
  background: var(--dark);
  border-color: #1d3555;
  color: #fff;
}
.feature-card--dark p { color: #b8c7dc; }
.feature-card h3,
.module-list strong,
.pricing-grid h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.feature-card p { margin: 0; }

.screenshot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.screen-card {
  background: #0d1f35;
  border-color: #254260;
  color: #fff;
  min-height: 220px;
  overflow: hidden;
  padding: 20px;
}
.screen-card--large {
  grid-column: span 2;
}
.screen-top {
  align-items: start;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.screen-top b {
  font-size: 22px;
}
.screen-top span {
  color: #9eb4ce;
  font-size: 13px;
  font-weight: 800;
}
.screen-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.screen-kpis span,
.screen-table,
.price-mini,
.profile-mini {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
}
.screen-kpis b {
  display: block;
  font-size: 26px;
}
.screen-bars {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.screen-bars i {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  display: block;
  height: 13px;
  width: var(--w);
}
.screen-table {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}
.screen-table em {
  background: rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  color: #9df3ce;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 8px;
}
.profile-mini {
  align-items: center;
  display: flex;
  gap: 14px;
}
.profile-mini div {
  background: linear-gradient(135deg, #d9e7ff, #87b7ff);
  border-radius: 16px;
  height: 58px;
  width: 58px;
}
.profile-mini b,
.profile-mini small {
  display: block;
}
.profile-mini small { color: #9eb4ce; margin-top: 4px; }
.price-mini {
  display: grid;
  gap: 10px;
}
.price-mini strong {
  color: #9df3ce;
  font-size: 34px;
}
.calendar-mini {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-mini span {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  height: 34px;
}
.calendar-mini .active {
  background: var(--primary);
  box-shadow: inset 0 -4px 0 rgba(16, 185, 129, 0.65);
}

.module-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.module-list article {
  display: grid;
  gap: 10px;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  padding: 20px;
}
.module-list b {
  align-items: center;
  background: var(--soft);
  border-radius: 14px;
  color: var(--primary);
  display: flex;
  font-size: 13px;
  grid-row: 1 / span 2;
  height: 52px;
  justify-content: center;
}
.module-list strong,
.module-list span {
  display: block;
}
.module-list strong {
  align-self: end;
}
.module-list span {
  color: var(--muted);
  grid-column: 2;
  line-height: 1.5;
  max-width: 36rem;
}
.center-action {
  justify-content: center;
}

.trust-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-grid article,
.pricing-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}
.trust-grid strong {
  font-size: 18px;
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-grid strong {
  color: var(--primary);
  font-size: 24px;
}
.highlight-plan {
  border-color: #9cc0ff !important;
  box-shadow: 0 18px 44px rgba(7, 84, 214, 0.18) !important;
}

.contact-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  margin-bottom: 74px;
  padding: clamp(24px, 4vw, 44px);
}
.contact-copy .eyebrow { color: var(--primary); }
.contact-copy p { margin: 16px 0 0; }
.contact-note {
  background: var(--soft);
  border: 1px solid #d5e3fb;
  border-radius: 14px;
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 16px;
}
.demo-inline-link {
  color: var(--primary);
  display: inline-flex;
  font-weight: 950;
  margin-top: 18px;
}
.lead-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lead-form label {
  display: grid;
  gap: 8px;
}
.lead-form label span {
  color: #4b5a70;
  font-size: 13px;
  font-weight: 950;
}
.lead-form input,
.lead-form textarea {
  background: #fff;
  border: 1px solid #cbd8ec;
  border-radius: 12px;
  color: var(--text);
  outline: 0;
  padding: 14px;
  width: 100%;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7, 84, 214, 0.13);
}
.field-wide,
.submit-button,
.form-alert {
  grid-column: 1 / -1;
}
.check {
  align-items: start;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: 18px minmax(0, 1fr);
}
.check input {
  margin-top: 2px;
  padding: 0;
}
.honeypot {
  left: -9999px;
  position: absolute;
}
.form-alert {
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.45;
  padding: 14px 16px;
}
.form-alert.success {
  background: #dcfce7;
  color: #116035;
}
.form-alert.error {
  background: #fee2e2;
  color: #9f1239;
}
.submit-button[disabled] {
  background: #8fa1bb;
  border-color: #8fa1bb;
  cursor: wait;
}

.site-footer {
  align-items: center;
  background: #08172a;
  color: #d8e5f8;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(22px, 6vw, 92px);
}
.site-footer a {
  color: #fff;
  font-weight: 900;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.demo-body {
  background: #071426;
  color: #e8f1ff;
}
.demo-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
}
.demo-sidebar {
  background: #0c1b2f;
  border-right: 1px solid #213955;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 22px 16px;
}
.demo-brand strong,
.demo-brand small {
  color: #fff;
}
.demo-nav {
  display: grid;
  gap: 8px;
}
.demo-nav button,
.demo-back {
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: #bdd1eb;
  cursor: pointer;
  font-weight: 900;
  padding: 14px;
  text-align: left;
}
.demo-nav button.active,
.demo-nav button:hover,
.demo-back {
  background: #12345f;
  color: #fff;
}
.demo-back {
  margin-top: auto;
  text-align: center;
}
.demo-workspace {
  min-width: 0;
}
.demo-topbar {
  align-items: center;
  background: #0b1728;
  border-bottom: 1px solid #213955;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 14px 30px;
}
.demo-search {
  align-items: center;
  background: #11243d;
  border: 1px solid #294767;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  max-width: 620px;
  padding: 0 14px;
  width: 100%;
}
.demo-search span {
  background: var(--primary);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.demo-search input {
  background: transparent;
  border: 0;
  color: #dbeafe;
  min-height: 44px;
  outline: 0;
  width: 100%;
}
.demo-user {
  align-items: center;
  display: flex;
  gap: 10px;
}
.demo-user > span {
  align-items: center;
  background: #dbeafe;
  border-radius: 50%;
  color: #12345f;
  display: flex;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.demo-user strong,
.demo-user small {
  display: block;
}
.demo-user small {
  color: #93a9c4;
}
.demo-readonly-banner {
  align-items: center;
  background: #092757;
  border: 1px solid #1b58b8;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  margin: 28px 30px 0;
  padding: 16px;
}
.demo-readonly-banner span {
  color: #bdd7ff;
}
.demo-view {
  display: none;
  padding: 28px 30px 44px;
}
.demo-view.active {
  display: block;
}
.demo-heading {
  margin-bottom: 22px;
}
.demo-heading span {
  color: #8fb9ff;
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.demo-heading h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 0;
}
.demo-heading p {
  color: #a9bfd9;
  margin: 12px 0 0;
}
.demo-kpi-grid,
.demo-grid-two,
.demo-member-grid,
.demo-pricing-cards {
  display: grid;
  gap: 16px;
}
.demo-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.demo-grid-two {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  margin-top: 16px;
}
.demo-kpi-grid article,
.demo-panel-card,
.demo-table-card,
.demo-member-grid article,
.demo-pricing-cards article {
  background: #10243b;
  border: 1px solid #2b4868;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}
.demo-kpi-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}
.demo-kpi-grid span,
.demo-kpi-grid small,
.demo-panel-card p {
  color: #9eb4ce;
}
.demo-kpi-grid strong {
  color: #fff;
  font-size: 34px;
}
.demo-panel-card {
  padding: 22px;
}
.demo-card-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.demo-card-head h2 {
  margin: 0;
}
.demo-card-head button,
.demo-toolbar button,
.demo-table-card button,
.demo-modal-actions button,
.demo-modal-actions a {
  background: #e8f1ff;
  border: 0;
  border-radius: 10px;
  color: #0b3d91;
  cursor: pointer;
  font-weight: 950;
  padding: 11px 14px;
}
.demo-funnel-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 120px 1fr 48px;
  margin-top: 18px;
}
.demo-funnel-row i {
  background: #dbeafe;
  border-radius: 999px;
  display: block;
  height: 12px;
}
.demo-funnel-row span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  display: block;
  height: 12px;
  width: var(--w);
}
.demo-task-stack {
  display: grid;
  gap: 12px;
}
.demo-task-stack span {
  align-items: center;
  background: #152d49;
  border: 1px solid #2b4868;
  border-radius: 12px;
  color: #bdd1eb;
  display: flex;
  justify-content: space-between;
  padding: 14px;
}
.demo-toolbar {
  align-items: center;
  background: #10243b;
  border: 1px solid #2b4868;
  border-radius: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  margin-bottom: 16px;
  padding: 14px;
}
.demo-toolbar input {
  background: #0b1728;
  border: 1px solid #294767;
  border-radius: 12px;
  color: #dbeafe;
  padding: 13px;
}
.demo-table-card {
  overflow: auto;
}
.demo-table-card table {
  border-collapse: collapse;
  min-width: 780px;
  width: 100%;
}
.demo-table-card th,
.demo-table-card td {
  border-bottom: 1px solid #2b4868;
  padding: 15px;
  text-align: left;
}
.demo-table-card th {
  color: #9eb4ce;
  font-size: 12px;
  text-transform: uppercase;
}
.pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
}
.pill.green { background: #dcfce7; color: #0b6b3d; }
.pill.blue { background: #dbeafe; color: #0b4fa9; }
.pill.amber { background: #fef3c7; color: #925400; }
.demo-member-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.demo-member-grid article {
  cursor: pointer;
  padding: 22px;
}
.demo-member-grid article:hover {
  border-color: #6ea8ff;
}
.avatar-demo {
  background: linear-gradient(135deg, #d9e7ff, #7ba9ff);
  border-radius: 18px;
  height: 78px;
  margin-bottom: 16px;
  width: 78px;
}
.avatar-demo--alt { background: linear-gradient(135deg, #dcfce7, #34d399); }
.avatar-demo--third { background: linear-gradient(135deg, #fef3c7, #f59e0b); }
.demo-member-grid h2,
.demo-pricing-cards h2 {
  margin: 0 0 8px;
}
.demo-member-grid p,
.demo-pricing-cards p {
  color: #a9bfd9;
}
.demo-pricing-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.demo-pricing-cards article {
  padding: 24px;
}
.demo-pricing-cards strong {
  color: #9df3ce;
  font-size: 34px;
}
.demo-calendar {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.demo-calendar button {
  background: #10243b;
  border: 1px solid #2b4868;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 950;
  min-height: 130px;
  padding: 18px;
  text-align: left;
}
.demo-calendar small {
  color: #9eb4ce;
  font-size: 14px;
}
.demo-modal {
  align-items: center;
  background: rgba(3, 10, 20, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 80;
}
.demo-modal[hidden] {
  display: none;
}
.demo-modal-panel {
  background: #10243b;
  border: 1px solid #3b5e84;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  max-width: 760px;
  padding: 26px;
  position: relative;
  width: min(760px, 100%);
}
.demo-modal-close {
  background: #e8f1ff;
  border: 0;
  border-radius: 10px;
  color: #0b3d91;
  cursor: pointer;
  font-weight: 950;
  padding: 10px 12px;
  position: absolute;
  right: 18px;
  top: 18px;
}
.demo-modal-panel h2 {
  color: #fff;
  margin: 0 0 18px;
}
.demo-detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.demo-detail-grid span,
.demo-note-box {
  background: #0b1728;
  border: 1px solid #294767;
  border-radius: 12px;
  color: #dbeafe;
  padding: 14px;
}
.demo-detail-grid b,
.demo-note-box b {
  color: #8fb9ff;
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.demo-note-box {
  margin-top: 14px;
}
.demo-note-box p {
  color: #bdd1eb;
  margin: 0;
}
.demo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.demo-modal-actions a {
  background: var(--primary);
  color: #fff;
}
.modal-open {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 74px 22px 28px;
  }
  .hero-panel {
    padding: 0 22px 54px;
  }
  .proof-strip,
  .product-grid,
  .screenshot-grid,
  .module-list,
  .trust-grid,
  .pricing-grid,
  .contact-section,
  .lead-form,
  .pain-section {
    grid-template-columns: 1fr;
  }
  .proof-strip { margin-top: 18px; }
  .feature-card--wide,
  .screen-card--large {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header nav {
    gap: 10px;
  }
  .site-header nav a {
    font-size: 13px;
  }
  .mini-kpis,
  .screen-kpis {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .demo-shell {
    grid-template-columns: 1fr;
  }
  .demo-sidebar {
    position: static;
  }
  .demo-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .demo-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }
  .demo-readonly-banner,
  .demo-view {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }
  .demo-kpi-grid,
  .demo-grid-two,
  .demo-member-grid,
  .demo-pricing-cards,
  .demo-calendar,
  .demo-toolbar,
  .demo-detail-grid {
    grid-template-columns: 1fr;
  }
  .demo-funnel-row {
    grid-template-columns: 1fr;
  }
}
