:root {
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-deep: #1d4ed8;
  --navy: #0b1b3d;
  --ink: #132047;
  --muted: #5b6b8c;
  --line: #e5eaf3;
  --soft: #f4f7fc;
  --soft-2: #eef3fb;
  --green: #16a34a;
  --red: #ef4444;
  --orange: #f97316;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 40, 90, 0.12);
  --shadow-sm: 0 8px 24px rgba(15, 40, 90, 0.08);
  --radius: 16px;
  --max: 1140px;
  --font: "Plus Jakarta Sans", "Be Vietnam Pro", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 234, 243, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 560;
}

.nav a:hover {
  color: var(--blue);
}

.nav a.active {
  color: var(--blue);
  font-weight: 700;
}

.nav .has-caret::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: #64748b;
  transform: translateY(2px);
}

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

.link-login {
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.btn-ghost {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid #c7d7fb;
}

.btn-white {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Inner pages */
.page-hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.1), transparent 40%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 80%);
}

.page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 820px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
}

a.pain-card {
  color: inherit;
  display: block;
}

a.pain-card:hover h3 {
  color: var(--blue);
}

/* Hero */
.hero {
  padding: 56px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.12), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.06), transparent 40%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.hero h1 span {
  color: var(--blue);
}

.hero-lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.checks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #243556;
  font-weight: 550;
  font-size: 0.98rem;
}

.check-ico {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plat {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
}

.plat svg {
  width: 22px;
  height: 22px;
}

/* Dashboard mock */
.hero-visual {
  position: relative;
  min-height: 420px;
}

.float-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floaty 3.6s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.dash {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #dbe4f5;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.4s ease;
}

.dash:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dash-top {
  height: 38px;
  background: #f1f5fb;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}

.dash-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dash-top i:nth-child(1) {
  background: #f87171;
}
.dash-top i:nth-child(2) {
  background: #fbbf24;
}
.dash-top i:nth-child(3) {
  background: #34d399;
}

.dash-body {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 0.95fr;
  min-height: 340px;
}

.dash-col {
  border-right: 1px solid var(--line);
  padding: 12px;
}

.dash-col:last-child {
  border-right: 0;
  background: #f8fbff;
}

.dash-h {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.chat-item {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.chat-item.active {
  background: #eaf1ff;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #93c5fd, #2563eb);
  flex: 0 0 auto;
}

.avatar.g2 {
  background: linear-gradient(135deg, #fda4af, #fb7185);
}
.avatar.g3 {
  background: linear-gradient(135deg, #86efac, #22c55e);
}

.chat-item b {
  display: block;
  font-size: 0.78rem;
  color: var(--navy);
}

.chat-item span {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.bubble-row {
  display: flex;
  margin-bottom: 10px;
}

.bubble-row.me {
  justify-content: flex-end;
}

.bubble {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.bubble.in {
  background: #f1f5f9;
  color: #334155;
  border-bottom-left-radius: 4px;
}

.bubble.out {
  background: #2563eb;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.insight-card {
  background: #fff;
  border: 1px solid #dbe4f5;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.insight-card h4 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: var(--navy);
}

.meter {
  height: 7px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 6px;
}

.meter > i {
  display: block;
  height: 100%;
  width: 86%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--blue);
}

.tag.warn {
  background: #fff7ed;
  color: #ea580c;
}

.tag.ok {
  background: #ecfdf5;
  color: #059669;
}

/* Stats */
.stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.stat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: var(--green);
  flex: 0 0 auto;
}

.stat-ico.blue {
  background: #eaf1ff;
  color: var(--blue);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 560;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2,
.feature-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-head p,
.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pain-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: #fff1f2;
  color: var(--red);
}

.pain-ico.orange {
  background: #fff7ed;
  color: var(--orange);
}

.pain-ico.blue {
  background: #eaf1ff;
  color: var(--blue);
}

.pain-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--navy);
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-copy .section-kicker {
  text-align: left;
}

.feature-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 560;
  color: #243556;
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 420px;
}

.phone {
  width: 250px;
  background: #0f172a;
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: #f8fafc;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
}

.phone-bar {
  background: #2563eb;
  color: #fff;
  padding: 14px 14px 12px;
  font-weight: 700;
  font-size: 0.85rem;
}

.phone-chat {
  padding: 14px;
}

.ai-float {
  position: absolute;
  right: 8%;
  top: 28%;
  width: min(260px, 70%);
  background: #fff;
  border: 1px solid #dbe4f5;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: floaty 4s ease-in-out infinite;
}

.ai-float h4 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-float ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ai-float li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: #334155;
  font-weight: 560;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.step {
  text-align: center;
  position: relative;
  padding: 8px 4px;
}

.step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: #c7d7fb;
}

.step:last-child::after {
  display: none;
}

.step-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dbe4f5;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.step strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.3;
}

.center-cta {
  text-align: center;
}

/* Omni — hub kênh social */
.omni-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto 28px;
  height: 420px;
}

.omni-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.omni-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
  z-index: 2;
  overflow: hidden;
}

.omni-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.omni-core-inner {
  display: none;
}

.omni-node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.omni-node svg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 40, 90, 0.12);
  background: #fff;
}

.omni-node span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.omni-node.n1 { top: 8%; left: 14%; }
.omni-node.n2 { top: 10%; right: 16%; }
.omni-node.n3 { top: 42%; right: 2%; }
.omni-node.n4 { bottom: 8%; left: 42%; }
.omni-node.n5 { bottom: 18%; left: 8%; }
.omni-node.n6 { top: 42%; left: 2%; }

@media (max-width: 640px) {
  .omni-stage {
    height: 360px;
  }
  .omni-node svg {
    width: 46px;
    height: 46px;
  }
  .omni-core {
    width: 88px;
    height: 88px;
    border-radius: 50%;
  }
}

/* Analytics */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.metric label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.metric em {
  font-style: normal;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.chart-card h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--navy);
}

.chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 10px;
}

.chart span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  opacity: 0.85;
  animation: grow 1.2s ease both;
}

@keyframes grow {
  from {
    transform: scaleY(0.2);
    transform-origin: bottom;
  }
}

/* CTA band */
.cta-band {
  margin: 20px 0 0;
  border-radius: 28px;
  padding: 56px 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.25), transparent 40%),
    linear-gradient(135deg, #0b3d91 0%, #1d4ed8 45%, #2563eb 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 180%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  position: relative;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 520px;
  opacity: 0.92;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* Footer */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  margin-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--navy);
}

.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--blue);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #94a3b8;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav,
  .link-login {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner.is-open .nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    gap: 14px;
  }

  .hero-grid,
  .feature-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dash {
    transform: none;
  }

  .dash:hover {
    transform: none;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }

  .dash-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .step::after {
    display: none;
  }

  .ai-float {
    right: 0;
    top: auto;
    bottom: 8%;
    width: min(240px, 80%);
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding-top: 36px;
  }
}
