:root {
  --bg: #f4f8fb;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e2ea;
  --panel: #ffffff;
  --teal: #0f766e;
  --blue: #2563eb;
  --charcoal: #0f172a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Segoe UI, Arial, sans-serif;
}

.site-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(8, 21, 32, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.brand span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal);
}

.brand-logo-image {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 14px;
}

.site-nav nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav nav a:hover {
  color: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 25, 36, 0.92), rgba(4, 25, 36, 0.64) 42%, rgba(4, 25, 36, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding-top: 72px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: #4ade80;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lead {
  width: min(580px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 11px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
  padding: 11px 16px;
  text-decoration: none;
}

.primary-button {
  border: 0;
  background: var(--teal);
  color: white;
  cursor: pointer;
}

.primary-button:hover {
  background: #115e59;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.secondary-button.dark {
  border-color: var(--line);
  background: white;
  color: var(--charcoal);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.result-strip span {
  color: var(--charcoal);
}

.section,
.book-section,
.testimonial-section,
.flow-section,
.screenshots-section,
.trust-section,
.pricing-section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.testimonial-grid blockquote,
.demo-frame,
.demo-form,
.flow-steps article,
.screen-card,
.trust-grid article,
.pricing-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid article {
  min-height: 230px;
  padding: 24px;
}

.feature-grid p,
.demo-copy p,
.testimonial-grid p,
.book-section p,
.flow-steps p,
.screen-card p,
.screen-card small,
.trust-grid p,
.pricing-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e7f7f3;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.industry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: white;
}

.industry-band h2 {
  max-width: 720px;
}

.industry-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.industry-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
  padding: 12px 14px;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.industry-card-grid a {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  padding: 18px;
  text-decoration: none;
}

.industry-card-grid a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.industry-card-grid strong {
  font-size: 22px;
}

.industry-card-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.flow-section {
  background: #eef6f7;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.flow-steps article {
  position: relative;
  min-height: 228px;
  padding: 20px;
}

.flow-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -10px;
  width: 18px;
  height: 18px;
  z-index: 2;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  background: #eef6f7;
  transform: rotate(45deg);
}

.flow-steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #dff3ee;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.screenshots-section {
  background: white;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  min-height: 300px;
  padding: 18px;
}

.screen-card:nth-child(1),
.screen-card:nth-child(2) {
  grid-column: span 3;
}

.screen-card:nth-child(3),
.screen-card:nth-child(4),
.screen-card:nth-child(5) {
  grid-column: span 2;
}

.screen-card h3 {
  margin-top: 18px;
}

.screen-card small {
  display: block;
  margin-top: 16px;
  font-weight: 750;
}

.screen-header {
  display: flex;
  gap: 6px;
}

.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.chat-line {
  max-width: 92%;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
}

.chat-line + .chat-line {
  margin-top: 10px;
}

.chat-line.customer {
  margin-left: auto;
  background: #dff3ee;
  color: #064e3b;
}

.chat-line.assistant {
  background: #eef2ff;
  color: #1e3a8a;
}

.metric-row,
.slot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.metric-row span {
  color: var(--muted);
}

.metric-row strong {
  color: var(--teal);
}

.slot {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.slot.confirmed {
  background: #ecfdf3;
  color: #067647;
}

.slot.pending {
  background: #fffaeb;
  color: #92400e;
}

.slot.open {
  background: #eff6ff;
  color: #1d4ed8;
}

.phone-shell {
  min-height: 238px;
  border: 10px solid var(--charcoal);
  border-radius: 28px;
  background: #f8fafc;
  padding: 16px;
}

.phone-top {
  width: 68px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #cbd5e1;
}

.phone-shell button,
.phone-action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 850;
  padding: 10px 12px;
  text-decoration: none;
}

.kb-search {
  margin: 10px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 12px;
}

.knowledge-preview ul,
.pricing-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.demo-copy {
  max-width: 580px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.demo-proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.demo-frame {
  padding: 16px;
}

.video-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(37, 99, 235, 0.9)),
    url("/static/marketing/assistflow-hero.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 24px;
}

.play,
.play-button {
  width: 64px;
  height: 64px;
  display: block;
  border: 0;
  border-radius: 50%;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scale(0.76);
  cursor: pointer;
}

.video-panel strong,
.video-panel small {
  display: block;
}

.video-panel small {
  color: rgba(255, 255, 255, 0.82);
}

.demo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.demo-link-grid a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  padding: 14px;
  text-decoration: none;
}

.demo-link-grid a:hover {
  border-color: rgba(15, 118, 110, 0.42);
  background: #ecfdf3;
}

.demo-link-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stats-row span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.stats-row strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.trust-section {
  background: #f6f7fb;
}

.trust-section .section-heading {
  max-width: 760px;
}

.trust-section .section-heading h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 190px;
  padding: 22px;
}

.trust-grid h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.pricing-section {
  background: white;
}

.roi-section,
.comparison-section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.roi-section {
  background: #f8fafc;
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 16px;
  max-width: 1120px;
}

.roi-form,
.roi-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.roi-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.roi-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.roi-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.roi-output {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.roi-output span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.roi-output strong {
  color: var(--teal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.roi-output p {
  color: var(--muted);
  line-height: 1.6;
}

.comparison-section {
  background: white;
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr 1fr;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span,
.comparison-row strong {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  line-height: 1.55;
  padding: 16px;
}

.comparison-row span:last-child {
  border-right: 0;
}

.comparison-row span {
  color: var(--muted);
}

.comparison-row.header {
  min-height: 56px;
  background: var(--charcoal);
}

.comparison-row.header span {
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-row.highlight {
  background: #ecfdf3;
}

.comparison-row.highlight strong,
.comparison-row.highlight span {
  color: #064e3b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.pricing-grid strong {
  display: block;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 15px;
  padding-top: 18px;
}

.featured-plan {
  border-color: rgba(15, 118, 110, 0.38) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 24px;
}

.testimonial-grid cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.book-section {
  background: #eaf2f7;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  padding: 22px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.demo-form .wide {
  grid-column: span 2;
}

.demo-form button {
  width: max-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: white;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.light-nav {
  background: rgba(15, 23, 42, 0.94);
}

.content-page {
  padding-top: 84px;
}

.content-hero {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 84px) 32px;
}

.content-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
}

.lead-dark {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.status-grid,
.roadmap-grid,
.timeline-list {
  display: grid;
  gap: 16px;
  padding: 0 clamp(18px, 6vw, 84px) clamp(58px, 8vw, 104px);
}

.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-card,
.roadmap-grid article,
.timeline-list article,
.content-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.status-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 22px;
}

.status-card h2,
.roadmap-grid h2,
.timeline-list h2,
.content-band h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.status-card p,
.roadmap-grid li,
.timeline-list li,
.content-band p {
  color: var(--muted);
  line-height: 1.6;
}

.status-card strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 16px;
}

.status-dot {
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.content-band {
  margin: 0 clamp(18px, 6vw, 84px) clamp(58px, 8vw, 104px);
  padding: 24px;
}

.industry-page {
  background: var(--bg);
}

.industry-hero {
  background: white;
}

.industry-actions {
  margin-top: 26px;
}

.industry-result-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 6vw, 84px) clamp(42px, 6vw, 72px);
}

.industry-result-band article,
.industry-detail-grid article,
.industry-demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.industry-result-band article {
  min-height: 190px;
  padding: 24px;
}

.industry-result-band span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e7f7f3;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.industry-result-band h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 6vw, 84px) clamp(58px, 8vw, 104px);
}

.industry-detail-grid article {
  padding: 24px;
}

.industry-detail-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.industry-detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.industry-demo-card {
  display: grid;
  gap: 10px;
}

.compact-screenshots {
  background: #f7fbfb;
}

.industry-screenshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-screenshot-grid .screen-card {
  grid-column: auto;
}

.industry-faq-section {
  padding: clamp(52px, 7vw, 84px) clamp(18px, 6vw, 84px);
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 20px;
}

.faq-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.industry-book-section {
  text-align: center;
}

.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-grid article,
.timeline-list article {
  padding: 24px;
}

.roadmap-grid span,
.timeline-list span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e7f7f3;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.roadmap-grid ul,
.timeline-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.timeline-list {
  max-width: 1100px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--charcoal);
}

.thanks-panel {
  width: min(620px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: white;
  padding: 30px;
}

.thanks-panel .brand {
  color: var(--charcoal);
  margin-bottom: 28px;
}

.thanks-panel p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .site-nav {
    padding-inline: 16px;
  }

  .site-nav nav {
    gap: 12px;
  }

  .site-nav nav a {
    font-size: 13px;
  }

  .site-nav nav a:nth-child(1),
  .site-nav nav a:nth-child(4) {
    display: none;
  }
}

@media (max-width: 880px) {
  .site-nav {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: rgba(4, 25, 36, 0.76);
  }

  .logo-strip,
  .feature-grid,
  .flow-steps,
  .industry-band,
  .industry-card-grid,
  .calculator-panel,
  .roi-form,
  .demo-section,
  .testimonial-grid,
  .trust-grid,
  .pricing-grid,
  .demo-form,
  .status-grid,
  .roadmap-grid,
  .industry-result-band,
  .industry-detail-grid,
  .industry-screenshot-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    border: 0;
    gap: 12px;
    background: transparent;
  }

  .comparison-row,
  .comparison-row.header {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

  .comparison-row span,
  .comparison-row strong {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row span:last-child {
    border-bottom: 0;
  }

  .flow-steps article:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: -10px;
    background: #eef6f7;
    transform: rotate(135deg);
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screen-card:nth-child(1),
  .screen-card:nth-child(2),
  .screen-card:nth-child(3),
  .screen-card:nth-child(4),
  .screen-card:nth-child(5) {
    grid-column: auto;
  }

  .demo-form .wide {
    grid-column: auto;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .demo-link-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
