:root {
  --bg: #f7fbf8;
  --paper: #ffffff;
  --ink: #10232a;
  --muted: rgba(16, 35, 42, 0.68);
  --soft: rgba(16, 35, 42, 0.48);
  --line: rgba(16, 83, 89, 0.14);
  --teal: #009b9a;
  --teal-2: #53d7c8;
  --blue: #256dff;
  --mint: #dcfff6;
  --cream: #fff6e8;
  --coral: #ff5e5b;
  --green: #18b77a;
  --shadow: 0 28px 80px rgba(14, 63, 68, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 215, 200, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(255, 246, 232, 0.95), transparent 28rem),
    linear-gradient(145deg, #f9fffd 0%, #edf9f6 50%, #fff7ec 100%);
  overflow-x: hidden;
}

section[id],
article[id] {
  scroll-margin-top: 118px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

[hidden] {
  display: none !important;
}

.soft-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(0, 155, 154, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 155, 154, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.glow {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.38;
  pointer-events: none;
}

.glow-a {
  width: 380px;
  height: 380px;
  top: 130px;
  left: -140px;
  background: #82eee2;
}

.glow-b {
  width: 420px;
  height: 420px;
  top: 430px;
  right: -160px;
  background: #ffe0ba;
}

.site-header,
.section,
.site-footer,
.mobile-sticky-cta,
.toast {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1200px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(14, 63, 68, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark,
.clinic-mark {
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 16px 38px rgba(0, 155, 154, 0.28);
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.06;
}

.brand small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(0, 155, 154, 0.09);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #ff435f 0%, #ff6a43 50%, #ffb13d 100%);
  box-shadow:
    0 18px 44px rgba(255, 90, 78, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-primary:hover {
  box-shadow:
    0 24px 58px rgba(255, 90, 78, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.btn-xl {
  min-height: 58px;
  padding-inline: 26px;
}

.section {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #007876;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 950;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(24, 183, 122, 0.12);
}

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

h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.hero-subhead,
.product-copy p,
.package-copy p,
.request-copy p,
.pain-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 58px 0 54px;
}

.hero-actions,
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.proof-chips {
  margin-top: 34px;
}

.proof-chips span,
.data-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.image-shell,
.product-image,
.ops-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42));
  box-shadow: var(--shadow);
}

.hero-image {
  height: 620px;
  margin: 0;
  border-radius: 40px;
}

.hero-image::after,
.product-image::after,
.ops-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(249, 255, 253, 0.72) 0%, transparent 40%),
    linear-gradient(0deg, rgba(16, 35, 42, 0.32) 0%, transparent 38%);
}

.hero-image img,
.product-image img,
.ops-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.hero-visual:hover img,
.product-image:hover img,
.ops-visual:hover img {
  transform: scale(1.035);
}

.hero-assistant-card,
.hero-status-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(14, 63, 68, 0.18);
  backdrop-filter: blur(20px);
}

.hero-assistant-card {
  right: 22px;
  bottom: 24px;
  width: min(360px, calc(100% - 44px));
  padding: 22px;
  border-radius: 28px;
}

.hero-assistant-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.hero-assistant-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-assistant-card .btn {
  width: 100%;
}

.hero-status-card {
  left: -24px;
  top: 62px;
  padding: 18px 20px;
  border-radius: 22px;
}

.hero-status-card span,
.hero-status-card small {
  display: block;
  color: var(--soft);
}

.hero-status-card strong {
  display: block;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1.05;
}

.pain-panel,
.demo-section,
.package-section,
.request-section {
  margin-top: 88px;
}

.pain-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 70px rgba(14, 63, 68, 0.11);
}

.pain-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.05rem);
}

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

.pain-grid article,
.settings-panel,
.kb-panel,
.crm-panel,
.lead-card,
.package-grid article,
.request-form {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.pain-grid article {
  padding: 20px;
}

.product-shot {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  margin-top: 110px;
}

.product-image,
.ops-visual {
  min-height: 520px;
  border-radius: var(--radius-xl);
}

.demo-boundary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(0, 155, 154, 0.24);
  color: #007876;
  text-align: center;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 950;
  background:
    linear-gradient(90deg, transparent, rgba(0, 155, 154, 0.12), transparent),
    rgba(255, 255, 255, 0.58);
}

.clinic-demo {
  display: grid;
  grid-template-columns: 250px 1fr 330px;
  min-height: 780px;
  border-right: 1px solid rgba(0, 155, 154, 0.22);
  border-left: 1px solid rgba(0, 155, 154, 0.22);
  background:
    radial-gradient(circle at 70% 8%, rgba(83, 215, 200, 0.2), transparent 30rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(238, 250, 247, 0.86));
}

.demo-sidebar,
.chat-workbench,
.lead-panel {
  padding: 22px;
}

.demo-sidebar {
  border-right: 1px solid var(--line);
}

.lead-panel {
  border-left: 1px solid var(--line);
}

.clinic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.clinic-mark {
  width: 42px;
  height: 42px;
}

.clinic-card strong,
.clinic-card small {
  display: block;
}

.clinic-card small {
  color: var(--soft);
}

.value-metrics {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.value-metrics article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.value-metrics span,
.value-metrics strong {
  display: block;
}

.value-metrics span {
  color: var(--soft);
  font-size: 0.86rem;
}

.value-metrics strong {
  margin-top: 6px;
  color: var(--teal);
  font-size: 1.25rem;
}

.intent-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 84% 0%, rgba(83, 215, 200, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.68);
}

.card-head.compact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.card-head.compact span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-head.compact strong {
  color: var(--teal);
  font-size: 1.25rem;
}

.intent-chart {
  width: 100%;
  min-height: 145px;
  overflow: visible;
  border: 1px solid rgba(16, 83, 89, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.46);
}

.intent-grid line {
  stroke: rgba(16, 83, 89, 0.12);
  stroke-width: 1;
}

.intent-area {
  fill: url("#intentArea");
}

.intent-line {
  fill: none;
  stroke: url("#intentLine");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(0, 155, 154, 0.18));
}

.intent-point circle {
  fill: #ffffff;
  stroke: var(--teal);
  stroke-width: 3;
}

.intent-point text {
  fill: rgba(16, 35, 42, 0.58);
  font-size: 10px;
  font-weight: 850;
  text-anchor: middle;
}

.intent-signals {
  display: grid;
  gap: 8px;
}

.intent-signals button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(16, 83, 89, 0.12);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.intent-signals button:hover,
.intent-signals button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 155, 154, 0.34);
  background: var(--mint);
  outline: none;
}

.intent-signals span,
.intent-signals strong {
  overflow-wrap: anywhere;
}

.intent-signals span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.intent-signals strong {
  color: var(--teal);
  font-size: 0.88rem;
}

.quick-prompts {
  display: grid;
  gap: 9px;
}

.quick-prompts button,
.small-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  padding: 11px 13px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.quick-prompts button:hover,
.small-action:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 155, 154, 0.34);
  background: var(--mint);
}

.chat-workbench {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.chat-topbar,
.card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 500px;
  max-height: 560px;
  overflow: auto;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 254, 251, 0.78)),
    var(--paper);
}

.message {
  max-width: min(78%, 560px);
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.5;
  box-shadow: 0 10px 28px rgba(14, 63, 68, 0.08);
}

.message.bot {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
  border-bottom-left-radius: 6px;
}

.message.user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-bottom-right-radius: 6px;
}

.message small {
  display: block;
  margin-top: 8px;
  color: inherit;
  opacity: 0.72;
  font-size: 0.74rem;
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(16, 35, 42, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 83, 89, 0.16);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(16, 35, 42, 0.38);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 155, 154, 0.64);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(0, 155, 154, 0.12);
}

.lead-form,
.request-form {
  display: grid;
  gap: 13px;
}

.form-error {
  padding: 12px 14px;
  border: 1px solid rgba(255, 94, 91, 0.34);
  border-radius: 16px;
  color: #9a201e;
  background: rgba(255, 94, 91, 0.09);
}

.btn-submit {
  width: 100%;
  min-height: 58px;
}

.success-state {
  padding: 15px;
  border: 1px solid rgba(24, 183, 122, 0.3);
  border-radius: 18px;
  color: #0b6240;
  background: rgba(24, 183, 122, 0.1);
}

.success-state strong,
.success-state span {
  display: block;
}

.success-state span {
  margin-top: 6px;
  color: rgba(11, 98, 64, 0.78);
  line-height: 1.55;
}

.ops-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 110px;
}

.settings-panel,
.kb-panel,
.crm-panel,
.lead-card {
  padding: 24px;
  box-shadow: 0 20px 70px rgba(14, 63, 68, 0.09);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.kb-panel,
.crm-panel,
.lead-card {
  grid-column: span 1;
}

.crm-panel,
.lead-card {
  grid-column: span 1;
}

#knowledgeList {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.event-list strong,
.event-list span {
  display: block;
}

.event-list span {
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.78rem;
}

dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

dt {
  color: var(--soft);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 850;
}

.package-section {
  display: grid;
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 246, 232, 0.9), transparent 24rem),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 70px rgba(14, 63, 68, 0.1);
}

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

.package-grid article {
  padding: 22px;
}

.package-grid article.featured {
  border-color: rgba(255, 94, 91, 0.28);
  background: linear-gradient(180deg, rgba(255, 94, 91, 0.1), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 70px rgba(255, 94, 91, 0.11);
}

.package-grid span {
  color: var(--soft);
}

.package-grid strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

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

.request-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 70px;
}

.request-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: min(420px, calc(100% - 40px));
  padding: 16px 18px;
  border: 1px solid rgba(0, 155, 154, 0.26);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.88rem;
}

.site-footer strong {
  color: var(--ink);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

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

  .hero,
  .pain-panel,
  .product-shot,
  .ops-section,
  .request-section {
    grid-template-columns: 1fr;
  }

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

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

  .demo-sidebar,
  .lead-panel {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-prompts {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual,
  .hero-image,
  .product-image,
  .ops-visual {
    min-height: 500px;
    height: 500px;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 24px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .site-header > .btn {
    display: none;
  }

  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .pain-grid,
  .settings-grid,
  .package-grid,
  .event-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-visual,
  .hero-image {
    min-height: 520px;
    height: 520px;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-assistant-card {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }

  .hero-status-card {
    left: 14px;
    top: 14px;
  }

  .pain-panel,
  .settings-panel,
  .kb-panel,
  .crm-panel,
  .lead-card,
  .package-section,
  .request-form {
    padding: 20px;
    border-radius: 24px;
  }

  .product-shot,
  .ops-section {
    margin-top: 76px;
  }

  .product-image,
  .ops-visual {
    min-height: 420px;
    height: 420px;
  }

  .demo-sidebar,
  .chat-workbench,
  .lead-panel {
    padding: 18px;
  }

  .quick-prompts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .chat-window {
    min-height: 430px;
    max-height: 520px;
  }

  .message {
    max-width: 92%;
  }

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

  dl div {
    display: grid;
    gap: 4px;
  }

  dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
    padding-bottom: 78px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: flex;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 950;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 28%),
      linear-gradient(135deg, #ff435f 0%, #ff6a43 50%, #ffb13d 100%);
    box-shadow: 0 18px 48px rgba(255, 90, 78, 0.36);
    align-items: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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