:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #647386;
  --line: #d8e3ea;
  --paper: #ffffff;
  --soft: #eef5f2;
  --soft-2: #f7faf8;
  --brand: #0d8177;
  --brand-dark: #075f5a;
  --navy: #12243a;
  --navy-deep: #0d1a2a;
  --accent: #c94f2d;
  --yellow: #f5c542;
  --blue: #7ea1c4;
  --shadow: 0 26px 70px rgba(18, 36, 58, 0.14);
  --soft-shadow: 0 18px 44px rgba(18, 36, 58, 0.1);
}

body.premium-site[data-theme="dark"] {
  --ink: #eef7ff;
  --muted: #a9bbca;
  --line: rgba(177, 209, 225, 0.18);
  --paper: #08131f;
  --soft: #101d2b;
  --soft-2: #0d1a2a;
  --brand: #10b8a8;
  --brand-dark: #68e7d9;
  --navy: #10243a;
  --navy-deep: #07111c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  background: var(--paper);
}

body.premium-site[data-theme="light"] {
  --ink: #142033;
  --muted: #647386;
  --line: #d8e3ea;
  --paper: #ffffff;
  --soft: #eef5f2;
  --soft-2: #f7faf8;
  --brand: #0d8177;
  --brand-dark: #075f5a;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.94em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
  padding: 0 4vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 234, 0.82);
  backdrop-filter: blur(16px);
}

.premium-header {
  background: rgba(8, 19, 31, 0.88);
  border-bottom-color: rgba(177, 209, 225, 0.16);
}

body[data-theme="light"] .premium-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(216, 227, 234, 0.82);
}

.theme-toggle {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

body[data-theme="light"] .theme-toggle {
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 850;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 124, 114, 0.18);
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 124, 114, 0.26);
  border-radius: 8px;
  box-shadow: inset 0 0 0 3px #fff, 0 8px 20px rgba(18, 36, 58, 0.08);
}

.brand-wordmark {
  max-width: min(46vw, 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Orbitron", "Michroma", "Rajdhani", "Eurostile", "Segoe UI", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.demo-header-brand strong {
  font-family: "Orbitron", "Michroma", "Rajdhani", "Eurostile", "Segoe UI", system-ui, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 15px;
  color: #fff !important;
  background: var(--brand);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 44px 5vw 38px;
  background: linear-gradient(135deg, #f9fbfa, #edf6f2 46%, #ffffff);
}

.premium-hero {
  background:
    linear-gradient(135deg, #07111c 0%, #0d1a2a 52%, #10243a 100%);
}

body[data-theme="light"] .premium-hero {
  background: linear-gradient(135deg, #f9fbfa, #edf6f2 46%, #ffffff);
}

.premium-site .section,
.premium-site .workflow-section {
  background: var(--paper);
}

.premium-section,
.booking-section,
.dashboard-section,
.pricing-section {
  background:
    linear-gradient(180deg, rgba(16, 184, 168, 0.04), transparent 42%),
    var(--paper);
}

body[data-theme="light"] .premium-section,
body[data-theme="light"] .booking-section,
body[data-theme="light"] .dashboard-section,
body[data-theme="light"] .pricing-section {
  background: #fff;
}

.premium-site .product-showcase,
.premium-site .smart-card,
.premium-site .comparison-column,
.premium-site .pricing-card,
.premium-site .pricing-info-card,
.premium-site .dashboard-main,
.premium-site .dashboard-side,
.premium-site .install-card,
.premium-site .demo-request-copy,
.premium-site .demo-request-form {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

body[data-theme="light"].premium-site .product-showcase,
body[data-theme="light"].premium-site .smart-card,
body[data-theme="light"].premium-site .comparison-column,
body[data-theme="light"].premium-site .pricing-card,
body[data-theme="light"].premium-site .pricing-info-card,
body[data-theme="light"].premium-site .dashboard-main,
body[data-theme="light"].premium-site .dashboard-side,
body[data-theme="light"].premium-site .install-card,
body[data-theme="light"].premium-site .demo-request-copy,
body[data-theme="light"].premium-site .demo-request-form {
  background: #fff;
}

.industry-grid,
.dashboard-callouts,
.calendar-mini {
  display: grid;
  gap: 14px;
}

.dashboard-callouts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 24px 0;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid article,
.dashboard-callouts span,
.calendar-mini span,
.worth-line {
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

body.premium-site[data-theme="dark"] .dashboard-callouts span,
body.premium-site[data-theme="dark"] .calendar-mini span,
body.premium-site[data-theme="dark"] .worth-line {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(177, 209, 225, 0.2);
}

body[data-theme="light"].premium-site .industry-grid article,
body[data-theme="light"].premium-site .dashboard-callouts span,
body[data-theme="light"].premium-site .calendar-mini span,
body[data-theme="light"].premium-site .worth-line {
  background: #fff;
}

.industry-grid p,
.worth-line {
  color: var(--muted);
}

.calendar-mini {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
}

.tone-accent { border-color: rgba(80, 155, 255, .45) !important; }
.tone-info { border-color: rgba(16, 184, 168, .48) !important; }
.tone-success { border-color: rgba(91, 210, 126, .5) !important; }
.tone-warning { border-color: rgba(245, 197, 66, .58) !important; }
.tone-danger { border-color: rgba(230, 92, 92, .55) !important; }
.tone-muted { border-color: rgba(160, 172, 184, .38) !important; color: var(--muted) !important; }

.guided-highlight {
  outline: 3px solid rgba(16, 184, 168, .42);
  outline-offset: -6px;
}

.hero > *,
.story-grid > *,
.smart-grid > *,
.smart-comparison > *,
.comparison-grid > *,
.dashboard-sell > *,
.dashboard-feature-grid > *,
.workflow-track > *,
.workflow-benefits > *,
.example-layout > *,
.dashboard-mock > *,
.dashboard-main > *,
.dashboard-tabs > *,
.install-grid > *,
.demo-request > *,
.form-grid > * {
  min-width: 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.9rem, 5.1vw, 4.95rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.22;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.hero-copy,
.section-heading p,
.install-copy p,
.smart-card p,
.smart-comparison p,
.dashboard-sell p,
.whatsapp-card p,
.demo-request-copy li,
.workspace-row p,
.dashboard-note,
.install-card p,
.demo-mini-card p,
.site-footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 680px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
}

.button-primary {
  color: #fff;
  background: var(--brand);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(12, 124, 114, 0.35);
  box-shadow: var(--soft-shadow);
}

.trust-list,
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.story-tags span {
  padding: 7px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 227, 234, 0.94);
  border-radius: 999px;
  font-size: 0.92rem;
}

.product-showcase {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 36, 58, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: #f4f8f6;
  border-bottom: 1px solid var(--line);
}

.showcase-tabs button,
.story-step,
.example-card {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.showcase-tabs button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 0.88rem;
}

.showcase-tabs button.is-active,
.story-step.is-active,
.example-card.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.visual-stage {
  position: relative;
  min-height: 548px;
  padding: 22px;
  background: linear-gradient(145deg, #f9fbfa, #edf6f2);
}

.visual-panel {
  display: none;
  height: 100%;
}

.visual-panel.is-active {
  display: block;
}

.showroom-preview {
  position: relative;
  min-height: 510px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 197, 66, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f2f8f5);
  border-radius: 8px;
}

.showroom-preview::after {
  position: absolute;
  inset: auto 32px 32px auto;
  width: 34%;
  height: 42%;
  content: "";
  background: linear-gradient(135deg, rgba(12, 124, 114, 0.12), rgba(126, 161, 196, 0.18));
  border-radius: 8px;
}

.showroom-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.showroom-copy span,
.showroom-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.showroom-copy strong {
  display: block;
  font-size: 2.05rem;
  line-height: 1.04;
}

.showroom-copy p,
.showroom-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.showroom-card {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 30px;
  width: min(285px, calc(100% - 56px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.showroom-card strong {
  display: block;
  font-size: 1.15rem;
}

.mini-chat {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.chat-title {
  margin: -16px -16px 14px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--navy));
  border-radius: 8px 8px 0 0;
  font-weight: 850;
}

.bubble,
.message {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.bubble.bot,
.message-bot {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.bubble.user,
.message-user {
  margin-left: auto;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
}

.lead-preview,
.transcript-preview,
.stock-preview {
  min-height: 510px;
  padding: 26px;
  background: #fff;
  border-radius: 8px;
}

.lead-preview {
  display: grid;
  align-content: start;
  gap: 18px;
}

.lead-preview h2 {
  margin-bottom: 0;
}

.stage-pill {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
  padding: 6px 11px;
  color: var(--brand-dark);
  background: #ddf1ec;
  border: 1px solid #b9ddd4;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.lead-fields,
.context-tiles {
  display: grid;
  gap: 12px;
}

.lead-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.lead-fields div,
.context-tiles div,
.qualification-card,
.next-action,
.workspace-row article,
.install-card,
.demo-mini-card,
.demo-request-copy,
.demo-request-form {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.lead-fields div,
.context-tiles div,
.workspace-row article,
.qualification-card,
.install-card,
.demo-mini-card,
.demo-request-copy,
.demo-request-form {
  box-shadow: inset 0 0 0 1px rgba(216, 227, 234, 0.78);
}

.lead-fields dt,
.context-tiles span,
.transcript-line span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-fields dd {
  margin: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.next-action {
  color: var(--brand-dark);
  background: #e6f5f1;
  box-shadow: inset 0 0 0 1px #c9e6df;
  font-weight: 850;
}

.transcript-preview {
  display: grid;
  align-content: center;
}

.transcript-line + .transcript-line {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.transcript-line p {
  margin-bottom: 0;
  color: var(--ink);
}

.stock-preview {
  display: grid;
  align-content: center;
  gap: 18px;
}

.stock-preview h2 {
  margin-bottom: 0;
  font-size: 2.15rem;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stock-tile {
  display: grid;
  gap: 8px;
  padding: 14px;
  min-height: 210px;
  background: linear-gradient(180deg, #f7faf9, #ffffff);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(216, 227, 234, 0.82);
}

.stock-tile span {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.stock-tile strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.stock-tile p,
.stock-note {
  margin-bottom: 0;
  color: var(--muted);
}

.car-silhouette {
  position: relative;
  width: 100%;
  height: 72px;
  margin-bottom: 4px;
  background:
    radial-gradient(circle at 22% 82%, var(--navy) 0 9px, transparent 10px),
    radial-gradient(circle at 78% 82%, var(--navy) 0 9px, transparent 10px),
    linear-gradient(160deg, transparent 0 20%, rgba(12, 124, 114, 0.92) 21% 56%, transparent 57%),
    linear-gradient(180deg, rgba(18, 36, 58, 0.92), rgba(18, 36, 58, 0.92));
  clip-path: polygon(10% 58%, 22% 34%, 38% 20%, 66% 20%, 82% 40%, 92% 58%, 88% 78%, 12% 78%);
  border-radius: 8px;
}

.car-silhouette.hatch {
  background:
    radial-gradient(circle at 25% 82%, var(--navy) 0 9px, transparent 10px),
    radial-gradient(circle at 75% 82%, var(--navy) 0 9px, transparent 10px),
    linear-gradient(160deg, transparent 0 22%, rgba(126, 161, 196, 0.95) 23% 56%, transparent 57%),
    linear-gradient(180deg, rgba(18, 36, 58, 0.9), rgba(18, 36, 58, 0.9));
  clip-path: polygon(13% 60%, 28% 34%, 48% 24%, 70% 30%, 86% 56%, 86% 78%, 13% 78%);
}

.car-silhouette.estate {
  background:
    radial-gradient(circle at 22% 82%, var(--navy) 0 9px, transparent 10px),
    radial-gradient(circle at 80% 82%, var(--navy) 0 9px, transparent 10px),
    linear-gradient(160deg, transparent 0 18%, rgba(201, 79, 45, 0.88) 19% 54%, transparent 55%),
    linear-gradient(180deg, rgba(18, 36, 58, 0.92), rgba(18, 36, 58, 0.92));
  clip-path: polygon(8% 58%, 22% 34%, 38% 24%, 76% 26%, 93% 58%, 90% 78%, 10% 78%);
}

.section {
  padding: 76px 5vw;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.story-section,
.install-section {
  background: var(--soft);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  max-width: 1180px;
}

.story-steps {
  display: grid;
  gap: 12px;
}

.story-step {
  display: grid;
  gap: 5px;
  padding: 16px;
  text-align: left;
}

.story-step span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.story-step.is-active span,
.story-step.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.story-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(216, 227, 234, 0.7);
}

.story-map span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.story-map span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--brand);
}

.story-detail-wrap {
  min-height: 420px;
}

.story-detail {
  display: none;
  min-height: 420px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.story-detail.is-active {
  display: grid;
  align-content: center;
}

.story-detail h3 {
  max-width: 680px;
  font-size: 2rem;
}

.story-detail p {
  max-width: 680px;
  color: var(--muted);
}

.message-stack {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 16px;
}

.qualification-card {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 18px;
  background: var(--soft-2);
}

.qualification-card strong {
  color: var(--brand-dark);
}

.qualification-card span {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.workflow-section {
  padding-right: 3vw;
  padding-left: 3vw;
  background: #fff;
}

.workflow-heading {
  max-width: 1120px;
}

.workflow-heading p {
  max-width: 860px;
}

.workflow-panel {
  width: min(100%, 1480px);
  padding: clamp(18px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 16% 18%, rgba(13, 129, 119, 0.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(126, 161, 196, 0.16), transparent 30%),
    #ffffff;
  border: 1px solid rgba(216, 227, 234, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.workflow-track {
  display: grid;
  grid-template-columns: minmax(230px, 1.08fr) minmax(52px, 0.18fr) minmax(235px, 1.1fr) minmax(52px, 0.18fr) minmax(235px, 1.1fr) minmax(52px, 0.18fr) minmax(230px, 1.08fr);
  gap: 12px;
  align-items: stretch;
}

.workflow-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 520px;
  padding: clamp(18px, 1.8vw, 26px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 211, 208, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(18, 36, 58, 0.08);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.workflow-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 129, 119, 0.07), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.workflow-card.is-active {
  border-color: rgba(13, 129, 119, 0.62);
  box-shadow: 0 26px 58px rgba(13, 129, 119, 0.15);
  transform: translateY(-2px);
}

.workflow-card.is-active::before {
  opacity: 1;
}

.workflow-card h3,
.workflow-card p,
.workflow-card > .workflow-step,
.workflow-mini-chat,
.workflow-qualifier,
.workflow-dashboard,
.workflow-actions {
  position: relative;
  z-index: 1;
}

.workflow-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.18rem, 1.2vw, 1.42rem);
}

.workflow-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.workflow-step {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--brand-dark);
  background: #ddf1ec;
  border: 1px solid #a7d7cc;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.workflow-flow {
  position: relative;
  align-self: center;
  height: 46px;
  margin: 0 -4px;
  overflow: hidden;
  background: transparent;
}

.workflow-flow::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: rgba(18, 36, 58, 0.18);
  border-radius: 999px;
  transform: translateY(-50%);
}

.workflow-flow::after {
  position: absolute;
  top: 50%;
  left: -72%;
  z-index: 1;
  width: 72%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(13, 129, 119, 0.36), var(--brand), transparent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(13, 129, 119, 0.38);
  opacity: 0;
  transform: translateY(-50%);
}

.workflow-flow.is-flowing::after {
  opacity: 1;
  animation: workflowLineTravel 1.22s linear both;
}

.workflow-mini-chat,
.workflow-qualifier,
.workflow-dashboard,
.workflow-actions {
  margin-top: auto;
}

.workflow-mini-chat,
.workflow-qualifier,
.workflow-dashboard {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-mini-chat {
  min-height: 306px;
}

.workflow-chat-top,
.workflow-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.workflow-chat-top {
  justify-content: flex-start;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.workflow-chat-top .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.workflow-bubble {
  position: relative;
  width: fit-content;
  max-width: 94%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.91rem;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.workflow-bubble.user {
  justify-self: end;
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.workflow-bubble.is-active {
  opacity: 1;
  transform: translateY(0);
}

.workflow-bubble.is-typing::after {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  content: "";
  background: currentColor;
  vertical-align: -0.16em;
  animation: typeCaret 0.72s steps(1) infinite;
}

.workflow-qualifier {
  min-height: 332px;
}

.qualifier-row {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.qualifier-row.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  background: #fff;
  border-color: rgba(13, 129, 119, 0.52);
  box-shadow: 0 12px 24px rgba(13, 129, 119, 0.1);
}

.qualifier-row span,
.workflow-dashboard dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.qualifier-row strong,
.workflow-dashboard dd {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.workflow-dashboard {
  min-height: 304px;
}

.workflow-dashboard.is-active {
  border-color: rgba(13, 129, 119, 0.45);
  box-shadow: 0 18px 38px rgba(18, 36, 58, 0.08);
}

.workflow-dashboard-top strong {
  line-height: 1.15;
}

.workflow-dashboard-top span {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: var(--brand-dark);
  background: #ddf1ec;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.workflow-dashboard dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.workflow-dashboard dl div {
  padding: 9px 0 0;
  border-top: 1px solid var(--line);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease;
}

.workflow-dashboard dl div.is-active {
  border-color: rgba(13, 129, 119, 0.28);
}

.workflow-dashboard dd {
  margin: 0;
  font-weight: 850;
}

.workflow-actions {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 188px;
}

.workflow-actions span {
  position: relative;
  padding: 13px 14px;
  color: var(--brand-dark);
  background: #e6f5f1;
  border: 1px solid #c9e6df;
  border-radius: 8px;
  font-weight: 850;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.workflow-actions span.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(13, 129, 119, 0.22);
  transform: translateX(2px);
}

.workflow-cursor {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 23px;
  height: 23px;
  background: var(--navy);
  border: 2px solid #fff;
  clip-path: polygon(0 0, 0 100%, 30% 75%, 43% 100%, 58% 93%, 45% 68%, 78% 68%);
  filter: drop-shadow(0 10px 14px rgba(18, 36, 58, 0.24));
  opacity: 0;
  transform: translate(-34px, 18px);
  transition:
    opacity 0.18s ease,
    transform 0.32s ease;
}

.workflow-cursor.is-active {
  opacity: 1;
  transform: translate(-18px, 66px);
}

.workflow-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1480px);
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.workflow-benefits li {
  padding: 16px 17px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(216, 227, 234, 0.9);
  border-radius: 8px;
  font-weight: 780;
  box-shadow: var(--soft-shadow);
}

@keyframes workflowLineTravel {
  from {
    left: -72%;
    transform: translateY(-50%);
  }

  to {
    left: 100%;
    transform: translateY(-50%);
  }
}

@keyframes workflowLineTravelDown {
  from {
    top: -72%;
    transform: translateX(-50%);
  }

  to {
    top: 100%;
    transform: translateX(-50%);
  }
}

@keyframes typeCaret {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.contact-section,
.workflow-section {
  background: #fff;
}

.smart-section {
  background: var(--soft);
}

.smart-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.smart-benefit-grid {
  align-items: stretch;
}

.smart-card,
.smart-comparison,
.dashboard-sell,
.whatsapp-card {
  background: #fff;
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.smart-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 238px;
  padding: 24px;
}

.smart-benefit-card h3 {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 1.32rem;
}

.smart-benefit-card p {
  max-width: 285px;
  margin: 0;
}

.smart-comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  max-width: 1180px;
  margin-top: 28px;
  padding: 30px;
}

.comparison-intro {
  display: grid;
  align-content: center;
}

.comparison-intro h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.comparison-intro p:last-child {
  max-width: 520px;
  margin-bottom: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-column-strong {
  background: #eef8f5;
  border-color: rgba(13, 129, 119, 0.22);
}

body.premium-site[data-theme="dark"] .smart-comparison {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(177, 209, 225, 0.18);
}

body.premium-site[data-theme="dark"] .comparison-column {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(177, 209, 225, 0.2);
}

body.premium-site[data-theme="dark"] .comparison-column-strong {
  background: rgba(16, 184, 168, 0.12);
  border-color: rgba(16, 184, 168, 0.38);
}

body.premium-site[data-theme="dark"] .comparison-column ul,
body.premium-site[data-theme="dark"] .comparison-column p {
  color: var(--muted);
}

.comparison-column h4 {
  margin: 0;
  font-size: 1.12rem;
}

.comparison-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.comparison-grid li,
.dashboard-feature-grid li {
  position: relative;
  padding-left: 20px;
}

.comparison-grid li::before,
.dashboard-feature-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-column-muted li::before {
  background: #9cadb8;
}

.dashboard-sell {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin-top: 28px;
  padding: 30px;
  color: #dbe6ef;
  background: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.1);
}

.dashboard-sell .eyebrow {
  color: #8fcfca;
}

.dashboard-sell h3 {
  max-width: 540px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.08;
}

.dashboard-sell p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #bdc9d5;
}

.dashboard-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-feature-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 4px 0 4px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.dashboard-feature-grid span {
  color: #fff;
  font-weight: 850;
}

.dashboard-feature-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  color: #c7d3de;
  list-style: none;
}

.examples-section {
  background: var(--soft-2);
}

.example-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 1180px;
}

.example-list {
  display: grid;
  gap: 12px;
}

.example-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  text-align: left;
}

.example-card span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.example-card.is-active span {
  color: rgba(255, 255, 255, 0.74);
}

.example-companion {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 16px;
  background: var(--soft);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(216, 227, 234, 0.8);
}

.example-companion > span {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.companion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
}

.companion-row strong {
  font-size: 0.84rem;
}

.companion-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.84rem;
  text-align: right;
}

.example-phone {
  min-height: 520px;
  padding: 24px;
  background: var(--navy);
  border: 1px solid rgba(18, 36, 58, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.example-flow {
  display: none;
  min-height: 472px;
  padding: 24px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.example-flow.is-active {
  display: grid;
  align-content: center;
}

.example-flow h3 {
  font-size: 2rem;
}

.example-flow ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.example-flow li {
  padding: 10px 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-section {
  color: #dbe6ef;
  background: var(--navy-deep);
}

.dashboard-section .eyebrow,
.dashboard-section .section-heading p {
  color: #aebdcc;
}

.dashboard-section h2 {
  color: #fff;
}

body.premium-site[data-theme="light"] .dashboard-section {
  color: var(--ink);
  background: #fff;
}

body.premium-site[data-theme="light"] .dashboard-section .eyebrow {
  color: var(--brand-dark);
}

body.premium-site[data-theme="light"] .dashboard-section .section-heading p {
  color: var(--muted);
}

body.premium-site[data-theme="light"] .dashboard-section h2 {
  color: var(--ink);
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  max-width: 1180px;
  overflow: hidden;
  background: #0b1421;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.dashboard-side {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: #101f33;
}

.dashboard-side strong {
  margin-bottom: 12px;
  color: #fff;
}

.dashboard-side span {
  padding: 10px 12px;
  color: #bfd0dd;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.dashboard-main {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  color: var(--ink);
  background: #f7faf9;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.dashboard-topline h3 {
  font-size: 1.9rem;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-tabs button,
.followup-actions button {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.dashboard-tabs button.is-active,
.followup-actions button:hover,
.followup-actions button:focus-visible {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.dashboard-panel {
  display: none;
  min-height: 232px;
}

.dashboard-panel.is-active {
  display: grid;
}

.context-tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-tiles strong {
  display: block;
  overflow-wrap: anywhere;
}

.workspace-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-thread {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-thread p {
  margin: 0;
  color: var(--muted);
}

.dashboard-thread strong {
  color: var(--ink);
}

.followup-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-note {
  margin: 14px 0 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.install-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.install-copy {
  max-width: 780px;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.install-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.install-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  content: "";
  background: radial-gradient(circle, rgba(13, 129, 119, 0.1), transparent 66%);
  pointer-events: none;
}

.install-test-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(250px, 0.42fr);
  align-items: center;
  grid-column: 1 / -1;
}

.install-visual {
  position: relative;
  min-height: 86px;
  padding: 14px;
  overflow: hidden;
  background: var(--soft-2);
  border: 1px solid rgba(216, 227, 234, 0.9);
  border-radius: 8px;
}

.mini-browser {
  position: relative;
  display: grid;
  gap: 8px;
  width: min(210px, 100%);
  min-height: 58px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-browser span {
  display: block;
  height: 7px;
  background: #dce8ee;
  border-radius: 999px;
}

.mini-browser span:nth-child(1) {
  width: 52%;
  background: #cbdce5;
}

.mini-browser span:nth-child(2) {
  width: 78%;
}

.mini-browser span:nth-child(3) {
  width: 64%;
}

.mini-browser i {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 22px;
  background: #eef8f5;
  border: 1px solid rgba(13, 129, 119, 0.18);
  border-radius: 6px;
}

.mini-launcher {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 36, 58, 0.18);
}

.install-brand-visual {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(18, 36, 58, 0.12);
}

.swatch-navy {
  background: var(--navy);
}

.swatch-green {
  background: var(--brand);
}

.swatch-clay {
  background: var(--accent);
}

.brand-preview-lines {
  display: grid;
  gap: 9px;
  flex: 1;
  min-width: 90px;
}

.brand-preview-lines i {
  display: block;
  height: 8px;
  background: #dce8ee;
  border-radius: 999px;
}

.brand-preview-lines i:first-child {
  width: 86%;
}

.brand-preview-lines i:last-child {
  width: 60%;
}

.install-context-visual {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 9px;
}

.install-context-visual span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid rgba(13, 129, 119, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.install-options-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.stock-strip {
  display: grid;
  gap: 8px;
}

.stock-strip i {
  display: block;
  height: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  animation: installStockScan 4.6s ease-in-out infinite;
}

.stock-strip i:nth-child(1) {
  width: 92%;
}

.stock-strip i:nth-child(2) {
  width: 72%;
  animation-delay: 0.25s;
}

.stock-strip i:nth-child(3) {
  width: 84%;
  animation-delay: 0.5s;
}

.notify-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid rgba(201, 79, 45, 0.2);
  border-radius: 8px;
}

.notify-mark::before {
  width: 18px;
  height: 20px;
  content: "";
  background: var(--accent);
  border-radius: 10px 10px 6px 6px;
}

.notify-mark span {
  position: absolute;
  right: 10px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 999px;
  animation: installNotifyPulse 2.4s ease-in-out infinite;
}

.install-test-visual {
  display: grid;
  gap: 10px;
  min-height: 118px;
}

.embed-code {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #c7d6e3;
  background: var(--navy);
  border-radius: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.embed-code span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  animation: installCodeReveal 5.2s steps(18, end) infinite;
}

.embed-code span:nth-child(2) {
  animation-delay: 0.35s;
}

.embed-code span:nth-child(3) {
  color: #9be0d8;
  animation-delay: 0.7s;
}

.test-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid rgba(13, 129, 119, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.test-status i {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 999px;
  animation: installNotifyPulse 2.4s ease-in-out infinite;
}

@keyframes installStockScan {
  0%,
  50%,
  100% {
    background: #fff;
  }

  62% {
    background: #eef8f5;
  }
}

@keyframes installNotifyPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.72;
  }
}

@keyframes installCodeReveal {
  0%,
  46% {
    max-width: 0;
  }

  70%,
  100% {
    max-width: 100%;
  }
}

.pricing-section {
  background: linear-gradient(180deg, #f8fbfa, #eef5f2);
}

.pricing-heading {
  max-width: 980px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1320px);
}

.pricing-card,
.pricing-info-card,
.pricing-note {
  background: #fff;
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.pricing-card-featured {
  border-color: rgba(13, 129, 119, 0.46);
  box-shadow: 0 26px 66px rgba(13, 129, 119, 0.16);
}

.pricing-card-custom {
  background:
    linear-gradient(135deg, rgba(126, 161, 196, 0.12), rgba(255, 255, 255, 0)),
    #fff;
}

.popular-pill {
  justify-self: start;
  padding: 7px 10px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card-top {
  display: grid;
  gap: 8px;
}

.pricing-card h3,
.pricing-info-card h3 {
  margin-bottom: 0;
  font-size: 1.32rem;
}

.pricing-card p,
.pricing-info-card p,
.pricing-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-block {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--soft-2);
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
}

.price-block strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.price-block strong span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-block p {
  font-size: 0.92rem;
  font-weight: 750;
}

.pricing-features {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-features li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--brand);
  border-radius: 999px;
  transform: translateY(-50%);
}

.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  width: min(100%, 1320px);
  margin-top: 18px;
}

.pricing-info-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.usage-addons {
  display: grid;
  gap: 8px;
  margin: 0;
}

.usage-addons div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: var(--soft-2);
  border: 1px solid rgba(216, 227, 234, 0.86);
  border-radius: 8px;
}

.usage-addons dt,
.usage-addons dd {
  margin: 0;
}

.usage-addons dt {
  color: var(--muted);
}

.usage-addons dd {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.pricing-note {
  display: grid;
  gap: 12px;
  width: min(100%, 1320px);
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.demo-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 1160px;
  align-items: start;
}

.demo-request-copy {
  background: var(--soft);
}

.demo-request-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.demo-request-copy li {
  position: relative;
  padding-left: 18px;
}

.demo-request-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--brand);
  border-radius: 999px;
}

.demo-mini-card {
  margin-bottom: 20px;
  background: #fff;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-links span {
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-request-form {
  display: grid;
  gap: 18px;
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.demo-request-form label span {
  color: var(--muted);
  font-size: 0.86rem;
}

.demo-request-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.demo-request-form .checkbox-label input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.demo-request-form .checkbox-label a,
.form-help a {
  color: var(--brand-dark);
  font-weight: 850;
}

.demo-request-form input,
.demo-request-form select,
.demo-request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.demo-request-form textarea {
  resize: vertical;
}

.demo-request-form input::placeholder,
.demo-request-form textarea::placeholder {
  color: #7a8999;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--brand-dark);
  font-weight: 850;
}

.form-help {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page-main {
  background: linear-gradient(180deg, #f8fbfa, #ffffff);
}

.legal-hero {
  padding: 76px 5vw 36px;
  background: linear-gradient(135deg, #f9fbfa, #edf6f2 54%, #ffffff);
}

.legal-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.legal-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.9fr);
  gap: 34px;
  padding: 42px 5vw 90px;
}

.legal-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.legal-nav a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 850;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-section {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(216, 227, 234, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  margin-bottom: 0;
}

.legal-placeholder {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--soft-2);
  border: 1px dashed rgba(13, 129, 119, 0.45);
  border-radius: 8px;
  font-weight: 750;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 42px 5vw;
  color: #dbe6ef;
  background: #0d1a2a;
}

.site-footer p {
  max-width: 920px;
  margin-bottom: 0;
  color: #aebdcc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #fff;
}

.footer-links a {
  text-decoration: none;
}

.legal {
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.86rem;
}

.dealer-example-site {
  background: #f6faf8;
}

.dealer-site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.dealer-site-brand,
.dealer-site-nav,
.dealer-demo-launcher,
.dealer-demo-header {
  display: flex;
  align-items: center;
}

.dealer-brand-row {
  min-width: 0;
}

.dealer-mobile-back {
  display: none;
}

.dealer-site-brand {
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.dealer-site-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(145deg, #11998e, #15304b);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 36, 58, .16);
}

.dealer-site-logo span {
  position: relative;
  z-index: 1;
  transform: translateY(-1px);
  font-size: 1.05rem;
}

.dealer-site-logo i {
  position: absolute;
  right: -8px;
  bottom: 8px;
  left: -8px;
  height: 8px;
  background: rgba(255, 255, 255, .92);
  transform: rotate(-14deg);
}

.dealer-site-brand strong,
.dealer-site-brand small {
  display: block;
}

.dealer-site-brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.dealer-site-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.dealer-site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.dealer-site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.dealer-site-nav a:hover,
.dealer-site-nav a:focus-visible {
  color: var(--ink);
}

.dealer-site-back {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--brand);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(13, 129, 119, .18);
}

.dealer-hero,
.dealer-section {
  padding-right: 5vw;
  padding-left: 5vw;
}

.dealer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .76fr);
  gap: 42px;
  align-items: center;
  min-height: min(820px, calc(100vh - 78px));
  padding-top: 44px;
  padding-bottom: 44px;
  background:
    linear-gradient(120deg, rgba(13, 129, 119, 0.12), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #eff8f4 58%, #ffffff 100%);
}

.dealer-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 4.75rem);
}

.dealer-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dealer-hero-card,
.dealer-info-card,
.dealer-stock-grid article,
.dealer-demo-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.dealer-hero-card {
  padding: 22px;
}

.dealer-hero-card h2 {
  font-size: 2.25rem;
}

.dealer-vehicle-visual {
  --vehicle-paint: #146f9f;
  --vehicle-paint-dark: #0d456b;
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(238, 247, 244, .82)),
    linear-gradient(135deg, #edf7f4, #fff);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.dealer-vehicle-visual.vehicle-hero {
  min-height: 220px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dealer-vehicle-visual > span {
  position: absolute;
  display: block;
}

.vehicle-backdrop {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(18, 36, 58, .045) 50%, transparent 50.4%),
    linear-gradient(180deg, transparent 71%, rgba(18, 36, 58, .06) 71.4%, transparent 72%);
}

.vehicle-shadow {
  right: 16%;
  bottom: 28px;
  left: 14%;
  height: 18px;
  z-index: 0;
  background: rgba(18, 36, 58, .19);
  border-radius: 50%;
  filter: blur(9px);
}

.vehicle-body {
  right: 11%;
  bottom: 48px;
  left: 10%;
  height: 68px;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .28), transparent 27%),
    linear-gradient(145deg, var(--vehicle-paint), var(--vehicle-paint-dark));
  border-radius: 42px 58px 18px 18px;
  box-shadow:
    inset 0 -9px 0 rgba(5, 27, 43, .2),
    inset 0 2px 0 rgba(255, 255, 255, .25),
    0 9px 18px rgba(18, 36, 58, .14);
}

.vehicle-body::before,
.vehicle-body::after {
  content: "";
  position: absolute;
}

.vehicle-body::before {
  right: 7%;
  bottom: 17px;
  width: 8%;
  height: 8px;
  background: #f5f0b2;
  border-radius: 6px 12px 6px 3px;
  box-shadow: 0 0 12px rgba(255, 242, 161, .55);
}

.vehicle-body::after {
  left: 3%;
  bottom: 15px;
  width: 5%;
  height: 9px;
  background: #d65155;
  border-radius: 3px 8px 8px 3px;
}

.vehicle-cabin {
  right: 26%;
  bottom: 103px;
  left: 29%;
  height: 62px;
  z-index: 1;
  background: linear-gradient(145deg, var(--vehicle-paint), var(--vehicle-paint-dark));
  border-radius: 70px 82px 5px 5px;
  clip-path: polygon(12% 100%, 29% 13%, 70% 7%, 96% 100%);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, .22);
}

.vehicle-window {
  bottom: 113px;
  height: 39px;
  z-index: 3;
  background: linear-gradient(145deg, #d8edf1 0%, #8cb4c1 48%, #38596b 100%);
  border: 2px solid rgba(10, 45, 64, .6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.vehicle-window-rear {
  left: 34%;
  width: 16%;
  border-radius: 30px 4px 4px 5px;
  transform: skewX(-15deg);
}

.vehicle-window-front {
  left: 51%;
  width: 18%;
  border-radius: 4px 28px 5px 4px;
  transform: skewX(18deg);
}

.vehicle-wheel {
  bottom: 30px;
  width: 48px;
  height: 48px;
  z-index: 4;
  background: radial-gradient(circle, #8d9aa3 0 18%, #263746 20% 47%, #0d1822 49% 68%, #2a3a47 70% 100%);
  border: 3px solid #101c26;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12), 0 5px 8px rgba(18, 36, 58, .22);
}

.vehicle-wheel i {
  position: absolute;
  inset: 15px;
  background: #c8d2d9;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #6c7c88;
}

.vehicle-wheel-rear { left: 21%; }
.vehicle-wheel-front { right: 19%; }

.vehicle-light {
  right: 9.5%;
  bottom: 69px;
  width: 24px;
  height: 9px;
  z-index: 5;
  background: #fff3aa;
  border-radius: 10px 3px 3px 10px;
}

.vehicle-hatch {
  --vehicle-paint: #c94f45;
  --vehicle-paint-dark: #7f2631;
}

.vehicle-hatch .vehicle-cabin {
  right: 31%;
  left: 31%;
  border-radius: 62px 70px 5px 5px;
  clip-path: polygon(8% 100%, 27% 8%, 72% 8%, 96% 100%);
}

.vehicle-hatch .vehicle-window-rear { left: 35%; width: 15%; }
.vehicle-hatch .vehicle-window-front { left: 51%; width: 15%; }

.vehicle-estate {
  --vehicle-paint: #2f836d;
  --vehicle-paint-dark: #145545;
}

.vehicle-estate .vehicle-cabin {
  right: 21%;
  left: 24%;
  clip-path: polygon(8% 100%, 23% 12%, 83% 12%, 98% 100%);
}

.vehicle-estate .vehicle-window-rear { left: 29%; width: 24%; }
.vehicle-estate .vehicle-window-front { left: 54%; width: 18%; }

/* Deliberately simple dealership illustration style. */
.dealer-vehicle-visual {
  --vehicle-paint: #14877d;
  --vehicle-paint-dark: #1c3048;
  background: #f7faf9;
}

.vehicle-backdrop {
  background: linear-gradient(180deg, #fbfdfc, #f2f7f5);
}

.vehicle-shadow {
  right: 17%;
  bottom: 57px;
  left: 17%;
  height: 8px;
  background: rgba(18, 36, 58, .11);
  filter: blur(5px);
}

.vehicle-body {
  right: 10%;
  bottom: 54px;
  left: 10%;
  height: 110px;
  background: linear-gradient(158deg, var(--vehicle-paint) 0 53%, var(--vehicle-paint-dark) 53% 100%);
  border-radius: 0;
  clip-path: polygon(3% 62%, 16% 31%, 32% 13%, 63% 13%, 84% 38%, 97% 61%, 92% 78%, 8% 78%);
  box-shadow: none;
}

.vehicle-body::before,
.vehicle-body::after,
.dealer-vehicle-visual .vehicle-cabin,
.dealer-vehicle-visual .vehicle-window,
.dealer-vehicle-visual .vehicle-light {
  display: none;
}

.vehicle-wheel {
  bottom: 62px;
  width: 32px;
  height: 32px;
  background: #16283f;
  border: 0;
  box-shadow: none;
}

.vehicle-wheel i {
  display: none;
}

.vehicle-wheel-rear { left: 20%; }
.vehicle-wheel-front { right: 19%; }

.vehicle-hatch {
  --vehicle-paint: #7d9fc4;
  --vehicle-paint-dark: #263a55;
}

.vehicle-hatch .vehicle-body {
  right: 13%;
  left: 13%;
  clip-path: polygon(4% 62%, 19% 34%, 39% 18%, 62% 24%, 88% 55%, 94% 65%, 90% 78%, 8% 78%);
}

.vehicle-estate {
  --vehicle-paint: #c44e31;
  --vehicle-paint-dark: #20334d;
}

.vehicle-estate .vehicle-body {
  right: 9%;
  left: 9%;
  clip-path: polygon(3% 62%, 15% 34%, 32% 17%, 72% 18%, 91% 54%, 97% 63%, 93% 78%, 7% 78%);
}

.vehicle-hero .vehicle-body {
  right: 8%;
  left: 8%;
}

.vehicle-hero .vehicle-wheel {
  width: 34px;
  height: 34px;
}

.dealer-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dealer-stock-status {
  padding: 5px 8px;
  color: #12684f;
  background: #e5f6ef;
  border: 1px solid #bfe8d9;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
}

.dealer-card-cta,
.dealer-stock-card-body button {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.dealer-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
}

.dealer-spec-list div {
  padding: 12px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dealer-spec-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dealer-spec-list dd {
  margin: 3px 0 0;
  font-weight: 850;
}

.dealer-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #fff;
}

.dealer-section:nth-of-type(odd) {
  background: #f6faf8;
}

.dealer-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.dealer-stock-grid article {
  padding: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.dealer-stock-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(18, 36, 58, .14);
}

.dealer-stock-card-body {
  padding: 18px;
}

.dealer-stock-card-body .dealer-card-topline strong {
  color: var(--ink);
  font-size: 1rem;
}

.dealer-stock-card-body h3 {
  margin-top: 10px;
  margin-bottom: 7px;
}

.dealer-stock-grid span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dealer-stock-grid p,
.dealer-info-card p,
.dealer-info-card li {
  color: var(--muted);
}

.dealer-stock-grid p {
  min-height: 48px;
  margin-bottom: 0;
}

.dealer-split-section,
.dealer-demo-note-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: 28px;
  align-items: center;
}

.dealer-info-card {
  padding: 22px;
}

.dealer-info-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 0;
}

.dealer-demo-note-section {
  border-top: 1px solid var(--line);
}

.dealer-site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 32px 5vw;
  color: #dbe6ef;
  background: var(--navy-deep);
}

.dealer-site-footer p {
  margin: 0;
  color: #b9c8d6;
}

.dealer-site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}

.dealer-demo-widget {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 42;
  display: grid;
  justify-items: end;
  gap: 10px;
  width: min(430px, calc(100vw - 28px));
}

.dealer-demo-launcher {
  gap: 9px;
  min-height: 48px;
  padding: 6px 14px 6px 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--navy));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(18, 36, 58, .22);
  font-weight: 850;
  cursor: pointer;
  transform-origin: bottom right;
  transition:
    opacity .3s ease,
    transform .36s cubic-bezier(.18, .86, .22, 1),
    box-shadow .3s ease,
    background .2s ease;
}

.dealer-demo-launcher:hover,
.dealer-demo-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(18, 36, 58, .28);
}

.dealer-demo-launcher.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(5px, 5px) scale(.76);
  box-shadow: 0 8px 22px rgba(18, 36, 58, .14);
}

.dealer-demo-launcher-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transition: opacity .22s ease, transform .32s cubic-bezier(.18, .86, .22, 1);
}

.dealer-demo-launcher-copy {
  display: grid;
  gap: 2px;
  transform-origin: left center;
  transition: opacity .2s ease, transform .26s cubic-bezier(.18, .86, .22, 1);
}

.dealer-demo-launcher strong,
.dealer-demo-launcher small {
  display: block;
  text-align: left;
  line-height: 1.08;
}

.dealer-demo-launcher small {
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
}

.dealer-demo-launcher.is-hidden .dealer-demo-launcher-mark {
  opacity: 0;
  transform: scale(.74);
}

.dealer-demo-launcher.is-hidden .dealer-demo-launcher-copy {
  opacity: 0;
  transform: translateX(8px) scale(.82);
}

.dealer-demo-panel[hidden] {
  display: none !important;
}

.dealer-demo-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 28px));
  height: min(610px, calc(100vh - 42px));
  max-height: min(610px, calc(100vh - 42px));
  overflow: hidden;
  opacity: 0;
  transform: translate(14px, 14px) scale(.08);
  transform-origin: bottom right;
  border-radius: 999px;
  pointer-events: none;
  will-change: opacity, transform, border-radius;
  transition:
    opacity .28s ease,
    transform .38s cubic-bezier(.18, .86, .2, 1),
    border-radius .38s cubic-bezier(.18, .86, .2, 1),
    box-shadow .3s ease;
}

.dealer-demo-panel.is-open {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  border-radius: 20px;
  pointer-events: auto;
}

.dealer-demo-panel.is-closing {
  opacity: 0;
  transform: translate(14px, 14px) scale(.08);
  border-radius: 999px;
}

.dealer-demo-panel.is-opening {
  animation: none;
}

.dealer-demo-header {
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0e5f62, var(--navy));
}

.dealer-demo-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dealer-demo-dealer-mark {
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #fff !important;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  font-size: .92rem !important;
  font-weight: 900;
}

.dealer-demo-header strong,
.dealer-demo-header span {
  display: block;
}

.dealer-demo-header span {
  color: #c7d6e3;
  font-size: .8rem;
}

.dealer-demo-header button {
  min-width: 36px;
  min-height: 36px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.dealer-demo-messages {
  display: grid;
  flex: 1 1 auto;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 14px;
  background: #f6faf8;
}

.dealer-demo-msg {
  align-self: start;
  width: fit-content;
  max-width: 88%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: .92rem;
  line-height: 1.38;
  animation: dealerMessageIn .2s ease both;
}

.dealer-demo-msg.bot {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.dealer-demo-msg.user {
  justify-self: end;
  color: #fff;
  background: var(--brand);
  border-bottom-right-radius: 6px;
}

@keyframes dealerMessageIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.dealer-demo-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 52px;
}

.dealer-demo-typing span {
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  opacity: .4;
  animation: dealerTypingDot .82s ease-in-out infinite;
}

.dealer-demo-typing span:nth-child(2) { animation-delay: .12s; }
.dealer-demo-typing span:nth-child(3) { animation-delay: .24s; }

@keyframes dealerTypingDot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.dealer-demo-typewriter::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  border-right: 2px solid var(--brand);
  vertical-align: -.15em;
  animation: dealerTypingCaret .74s steps(1) infinite;
}

@keyframes dealerTypingCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.dealer-demo-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
  padding: 11px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.dealer-demo-prompts button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--brand-dark);
  background: #e8f8f3;
  border: 1px solid rgba(13, 129, 119, .2);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.dealer-demo-prompts button:hover,
.dealer-demo-prompts button:focus-visible {
  background: #d8f2eb;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.dealer-demo-inputbar {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.dealer-demo-inputbar input {
  min-width: 0;
  flex: 1;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #9fb1bd;
  border-radius: 999px;
}

.dealer-demo-inputbar button {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.dealer-demo-inputbar input:disabled,
.dealer-demo-inputbar button:disabled {
  cursor: wait;
  opacity: .58;
}

@media (prefers-reduced-motion: reduce) {
  .dealer-demo-panel,
  .dealer-demo-launcher,
  .dealer-demo-msg,
  .dealer-demo-typing span,
  .dealer-demo-typewriter::after {
    animation: none;
    transition-duration: .01ms;
  }
}

.demo-widget {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 40;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: min(430px, calc(100vw - 28px));
}

.demo-launcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 6px 12px 6px 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(18, 36, 58, 0.22);
  font-weight: 850;
  transform-origin: bottom right;
  transition:
    opacity 0.3s ease,
    transform 0.36s cubic-bezier(.18, .86, .22, 1),
    box-shadow 0.3s ease,
    background 0.2s ease;
}

.demo-launcher:hover,
.demo-launcher:focus-visible {
  background: #0d1a2a;
  box-shadow: 0 22px 58px rgba(18, 36, 58, 0.28);
  transform: translateY(-1px);
}

.demo-launcher.demo-launcher-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(5px, 5px) scale(.76);
  box-shadow: 0 8px 22px rgba(18, 36, 58, 0.14);
}

.demo-launcher[hidden],
.demo-panel[hidden],
.quick-prompts[hidden] {
  display: none !important;
}

.demo-launcher-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(.18, .86, .22, 1);
}

.demo-launcher-mark img,
.mini-launcher img {
  transform-origin: center;
}

.demo-launcher-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  transform-origin: left center;
  transition: opacity 0.2s ease, transform 0.26s cubic-bezier(.18, .86, .22, 1);
}

.demo-launcher-copy strong {
  font-size: 0.8rem;
  line-height: 1.1;
}

.demo-launcher-copy small {
  max-width: 90px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  line-height: 1.1;
}

.demo-launcher.demo-launcher-hidden .demo-launcher-mark {
  opacity: 0;
  transform: scale(.74);
}

.demo-launcher.demo-launcher-hidden .demo-launcher-copy {
  opacity: 0;
  transform: translateX(8px) scale(.82);
}

.demo-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(398px, calc(100vw - 28px));
  max-height: min(640px, calc(100vh - 42px));
  max-height: min(640px, calc(100dvh - 42px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 28px 80px rgba(18, 36, 58, 0.24);
  opacity: 0;
  transform: translate(14px, 14px) scale(.08);
  transform-origin: bottom right;
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(.18, .86, .2, 1),
    border-radius 0.38s cubic-bezier(.18, .86, .2, 1),
    box-shadow 0.3s ease;
  will-change: transform, opacity, border-radius;
}

.demo-panel.is-open {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  border-radius: 20px;
}

.demo-panel.demo-panel-opening {
  animation: none;
}

@keyframes demoPanelDrawOpen {
  0% {
    opacity: 0;
    transform: translate(14px, 14px) scale(.08);
    border-radius: 999px;
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    border-radius: 20px;
  }
}

@keyframes demoPanelDrawClose {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    border-radius: 20px;
  }
  100% {
    opacity: 0;
    transform: translate(14px, 14px) scale(.08);
    border-radius: 999px;
  }
}

.demo-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 124, 114, 0.28), rgba(255, 255, 255, 0)),
    var(--navy);
}

.demo-header strong,
.demo-header span {
  display: block;
}

.demo-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.demo-header-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.demo-header span {
  color: #c7d6e3;
  font-size: 0.8rem;
  line-height: 1.25;
}

.demo-header .logo-mark {
  display: inline-grid;
  background: #fff;
}

.demo-header-actions {
  display: flex;
  gap: 8px;
  align-items: start;
}

.demo-header-actions button {
  min-height: 36px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.demo-close {
  min-width: 36px;
  font-size: 1.1rem;
  line-height: 1;
}

.demo-note {
  padding: 9px 14px;
  color: var(--muted);
  background: #f5faf8;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.35;
}

.demo-messages {
  display: grid;
  flex: 1 1 auto;
  gap: 10px;
  min-height: 210px;
  max-height: 285px;
  overflow-y: auto;
  padding: 16px;
  background: var(--soft-2);
}

.demo-msg {
  align-self: start;
  justify-self: start;
  max-width: 88%;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.25;
  box-shadow: 0 8px 22px rgba(18, 36, 58, 0.06);
}

.demo-msg.bot {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.demo-msg.user {
  justify-self: end;
  color: #fff;
  background: var(--brand);
  border-bottom-right-radius: 6px;
}

.demo-msg.is-thinking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-width: 54px;
  min-height: 40px;
}

.thinking-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.45;
  animation: demoThinkingDot 0.82s ease-in-out infinite;
}

.thinking-dot:nth-child(2) {
  animation-delay: 0.12s;
}

.thinking-dot:nth-child(3) {
  animation-delay: 0.24s;
}

.demo-msg.is-typing::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  border-right: 2px solid rgba(20, 70, 62, 0.62);
  vertical-align: -0.15em;
  animation: demoTypingCaret 0.74s steps(1) infinite;
}

@keyframes demoThinkingDot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes demoTypingCaret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: var(--soft-2);
}

.quick-prompts button {
  min-height: 36px;
  padding: 8px 11px;
  color: var(--brand-dark);
  background: #e4f4f0;
  border: 1px solid #c9e6df;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.quick-prompts button:hover,
.quick-prompts button:focus-visible {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.demo-body-chooser {
  display: grid;
  gap: 8px;
  width: 100%;
}

.demo-body-chooser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.demo-select-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.demo-body-chooser-back {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9e6df;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.demo-body-select {
  width: 100%;
  min-height: 42px;
  padding: 9px 34px 9px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9e6df;
  border-radius: 10px;
  font: inherit;
  outline: none;
}

.demo-body-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 129, 119, 0.18);
}

.demo-inputbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.demo-inputbar input {
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.demo-inputbar button {
  min-height: 44px;
  padding: 10px 15px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
}

.demo-inputbar button:disabled,
.demo-inputbar input:disabled {
  opacity: 0.62;
  cursor: wait;
}

body.js-ready .reveal {
  transform: translateY(14px);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

body.js-ready .reveal.is-visible {
  transform: none;
  opacity: 1;
}

body.js-ready .workflow-bubble {
  opacity: 0;
  transform: translateY(10px);
}

body.js-ready .qualifier-row {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

body.js-ready .workflow-bubble.is-active,
body.js-ready .qualifier-row.is-active {
  opacity: 1;
  transform: none;
}

body.js-ready .workflow-dashboard dl div {
  opacity: 0;
  transform: translateY(10px);
}

body.js-ready .workflow-dashboard-top {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

body.js-ready .workflow-dashboard.is-active .workflow-dashboard-top {
  opacity: 1;
  transform: none;
}

body.js-ready .workflow-dashboard dl div.is-active {
  opacity: 1;
  transform: none;
}

body.js-ready .workflow-actions span.is-active::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .demo-launcher,
  .workflow-bubble,
  .qualifier-row,
  .workflow-dashboard-top,
  .workflow-dashboard dl div,
  .workflow-actions span,
  .workflow-card,
  .workflow-cursor {
    transition: none;
  }

  .workflow-flow::after,
  .workflow-bubble.is-typing::after,
  .stock-strip i,
  .notify-mark span,
  .embed-code span,
  .test-status i,
  .demo-launcher-mark img,
  .mini-launcher img {
    animation: none;
  }

  .workflow-bubble,
  .qualifier-row,
  .workflow-dashboard-top,
  .workflow-dashboard dl div,
  .workflow-cursor,
  body.js-ready .workflow-bubble,
  body.js-ready .qualifier-row,
  body.js-ready .workflow-dashboard-top,
  body.js-ready .workflow-dashboard dl div {
    opacity: 1;
    transform: none;
  }

  .workflow-cursor {
    display: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-showcase {
    max-width: 900px;
  }

  .visual-stage {
    min-height: 520px;
  }

  .smart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-callouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 980px) {
  .story-grid,
  .workflow-track,
  .smart-grid,
  .industry-grid,
  .dashboard-callouts,
  .calendar-mini,
  .smart-comparison,
  .dashboard-sell,
  .whatsapp-card,
  .example-layout,
  .dashboard-mock,
  .install-section,
  .pricing-support-grid,
  .demo-request,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .workflow-track {
    gap: 0;
  }

  .workflow-flow {
    justify-self: center;
    width: 46px;
    height: 64px;
    margin: 9px 0;
  }

  .workflow-flow::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .workflow-flow::after {
    top: -72%;
    left: 50%;
    width: 4px;
    height: 72%;
    background: linear-gradient(180deg, transparent, rgba(13, 129, 119, 0.36), var(--brand), transparent);
    transform: translateX(-50%);
  }

  .workflow-flow.is-flowing::after {
    animation-name: workflowLineTravelDown;
  }

  .workflow-card {
    min-height: 0;
  }

  .install-test-card {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-tiles,
  .workspace-row,
  .dashboard-feature-grid,
  .followup-actions,
  .workflow-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-fields {
    grid-template-columns: 1fr;
  }

  .stock-grid {
    grid-template-columns: 1fr;
  }

  .stock-tile {
    min-height: 0;
  }

  .car-silhouette {
    height: 58px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 0 4vw;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .hero {
    gap: 32px;
    padding: 46px 4vw 58px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .section {
    padding: 58px 4vw;
  }

  .workflow-section {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .showcase-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-tiles,
  .workspace-row,
  .comparison-grid,
  .industry-grid,
  .dashboard-callouts,
  .calendar-mini,
  .dashboard-feature-grid,
  .install-grid,
  .pricing-grid,
  .followup-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .showcase-tabs button,
  .story-step,
  .example-card {
    min-height: 48px;
  }

  .visual-stage,
  .example-phone,
  .workflow-panel {
    padding: 10px;
  }

  .visual-stage,
  .showroom-preview,
  .lead-preview,
  .transcript-preview,
  .stock-preview,
  .example-phone,
  .example-flow {
    min-height: auto;
  }

  .showroom-preview {
    padding: 18px;
  }

  .showroom-preview::after {
    display: none;
  }

  .showroom-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .mini-chat {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .story-detail {
    min-height: auto;
    padding: 22px;
  }

  .story-detail h3,
  .example-flow h3 {
    font-size: 1.55rem;
  }

  .story-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-map span:not(:last-child)::after {
    display: none;
  }

  .dashboard-topline {
    display: grid;
  }

  .workflow-benefits {
    grid-template-columns: 1fr;
  }

  .demo-widget {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    width: auto;
    max-width: none;
  }

  .demo-launcher {
    justify-self: end;
  }

  .demo-panel {
    width: 100%;
    height: min(560px, calc(100vh - 54px));
    height: min(560px, calc(100dvh - 54px));
    max-height: calc(100vh - 54px);
    max-height: calc(100dvh - 54px);
  }

  .demo-header {
    padding: 12px;
  }

  .demo-header-actions button {
    min-height: 34px;
    padding: 6px 9px;
  }

  .demo-messages {
    min-height: 0;
    max-height: none;
    padding: 12px;
  }

  .quick-prompts {
    flex: 0 0 auto;
    max-height: 96px;
    overflow-y: auto;
    padding: 10px 12px 12px;
    margin-bottom: 8px;
  }

  .quick-prompts button {
    min-height: 32px;
    padding: 7px 10px;
  }

  .demo-inputbar {
    padding: 10px 12px 12px;
  }

  .dealer-site-header,
  .dealer-site-nav,
  .dealer-split-section,
  .dealer-demo-note-section {
    align-items: stretch;
  }

  .dealer-site-header {
    position: relative;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dealer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .dealer-mobile-back {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 850;
  }

  .dealer-site-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .dealer-site-nav::-webkit-scrollbar { display: none; }

  .dealer-site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .dealer-hero,
  .dealer-split-section,
  .dealer-demo-note-section {
    grid-template-columns: 1fr;
  }

  .dealer-hero {
    min-height: auto;
    padding: 46px 4vw 58px;
  }

  .dealer-hero h1 {
    font-size: 2.75rem;
  }

  .dealer-section {
    padding: 58px 4vw;
  }

  .dealer-stock-grid,
  .dealer-spec-list {
    grid-template-columns: 1fr;
  }

  .dealer-demo-widget {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    width: auto;
  }

  .dealer-demo-panel {
    width: 100%;
    height: min(600px, calc(100vh - 54px));
    height: min(600px, calc(100dvh - 54px));
    max-height: calc(100vh - 54px);
    max-height: calc(100dvh - 54px);
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .dealer-hero h1 {
    font-size: 2.35rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-wordmark {
    max-width: 168px;
    font-size: 1rem;
  }

  .showroom-copy strong {
    font-size: 1.48rem;
  }

  .stock-preview h2 {
    font-size: 1.45rem;
  }

  .showroom-preview,
  .lead-preview,
  .transcript-preview,
  .stock-preview,
  .example-flow,
  .workflow-card,
  .smart-card,
  .smart-comparison,
  .dashboard-sell,
  .whatsapp-card,
  .dashboard-main,
  .dashboard-side,
  .demo-request-copy,
  .demo-request-form {
    padding: 14px;
  }

  .demo-launcher {
    max-width: calc(100vw - 20px);
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 2.12rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .trust-list li,
  .story-tags span {
    font-size: 0.84rem;
  }

  .showcase-tabs button {
    padding: 8px;
  }

  .demo-launcher {
    min-height: 46px;
    padding-right: 14px;
  }
}
