:root {
  --ink: #13243f;
  --muted: #566474;
  --line: #d9edf1;
  --surface: #ffffff;
  --surface-alt: #f4fbfc;
  --navy: #08245a;
  --navy-soft: #12356f;
  --teal: #19bfc0;
  --teal-dark: #087f8f;
  --green: #0b8f98;
  --green-soft: #e3f8f7;
  --blue: #0f62b4;
  --amber: #f2b52b;
  --coral: #c86a4a;
  --shadow: 0 18px 48px rgba(8, 36, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px 6%;
  background: rgba(251, 254, 255, 0.96);
  border-bottom: 1px solid rgba(217, 237, 241, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.main-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.nav-contact-link {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(8, 127, 143, 0.22);
}

.secondary-button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.primary-button:hover {
  background: #076d7c;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
  padding: 128px 6% 62px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.99) 0%, rgba(251, 254, 255, 0.96) 48%, rgba(225, 248, 249, 0.82) 100%),
    #f1fbfc;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: 60px;
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-claim {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 29px;
  font-weight: 850;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 26px;
  color: #405164;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-strip {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 0;
}

.trust-strip div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 237, 241, 0.96);
  border-radius: 8px;
}

.trust-strip dt {
  margin-bottom: 6px;
  font-weight: 850;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-composition {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 570px;
}

.desktop-shot,
.phone-shot,
.capture {
  background: #f8fbfa;
  border: 1px solid rgba(23, 32, 39, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.desktop-shot {
  width: min(760px, 100%);
  padding: 16px;
}

.shot-bar,
.capture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shot-bar span,
.capture-header strong {
  color: var(--navy);
  font-weight: 850;
}

.shot-bar strong,
.capture-header em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

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

.status-tile {
  min-height: 76px;
  padding: 12px;
  background: #fff;
  border-left: 5px solid currentColor;
  border-radius: 8px;
}

.status-tile span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.status-tile strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.available {
  color: var(--green);
}

.occupied {
  color: var(--coral);
}

.reserved {
  color: var(--blue);
}

.cleaning {
  color: #946200;
}

.maintenance {
  color: #646f79;
}

.room-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.room-card {
  display: grid;
  align-content: center;
  min-height: 86px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid currentColor;
  border-radius: 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.room-card.available {
  border-top-color: var(--green);
}

.room-card.occupied {
  border-top-color: var(--coral);
}

.room-card.cleaning {
  border-top-color: var(--amber);
}

.room-card.reserved {
  border-top-color: var(--blue);
}

.room-card.maintenance {
  border-top-color: #7a8792;
}

.room-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.phone-shot {
  position: absolute;
  right: 0;
  top: 28px;
  width: 232px;
  padding: 10px;
  background: var(--navy);
}

.phone-speaker {
  width: 68px;
  height: 5px;
  margin: 4px auto 10px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.phone-screen {
  display: grid;
  gap: 10px;
  min-height: 360px;
  padding: 12px;
  background: #eef3f8;
  border-radius: 8px;
}

.phone-screen header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phone-screen header button {
  width: 32px;
  height: 32px;
  background: #e6edf8;
  border: 0;
  border-radius: 8px;
}

.phone-screen header button::before {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  content: "<";
}

.phone-screen header strong,
.phone-screen header span {
  display: block;
}

.phone-screen header span {
  color: var(--muted);
  font-size: 12px;
}

.task-card-mini {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.task-card-mini div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.task-card-mini span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.task-card-mini strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.task-card-mini em {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  color: #946200;
  background: #fff2cf;
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.task-card-mini.active em {
  color: var(--green);
  background: var(--green-soft);
}

.task-card-mini dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 10px 0 0;
}

.task-card-mini dl div {
  padding: 7px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.task-card-mini dt {
  color: var(--muted);
  font-size: 11px;
}

.task-card-mini dd {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
}

.task-card-mini textarea {
  width: 100%;
  margin: 10px 0 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  resize: none;
}

.task-card-mini b {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 13px;
}

.section {
  padding: 72px 6%;
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.benefit-item,
.module-card,
.solution-grid article,
.implementation-grid article,
.faq-list details,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-item,
.module-card,
.solution-grid article,
.implementation-grid article {
  padding: 22px;
}

.benefit-item img,
.module-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}

.benefit-item p,
.module-card p,
.solution-grid p,
.implementation-grid p,
.faq-list p {
  color: var(--muted);
}

.problem-section {
  background: #f7fcfd;
}

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

.problem-layout article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 191, 192, 0.2);
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  content: "✓";
}

.muted-list li::before {
  background: var(--coral);
}

.strong-list li::before {
  background: var(--green);
}

.intent-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.intent-cta strong,
.intent-cta span {
  display: block;
}

.intent-cta strong {
  font-size: 20px;
}

.intent-cta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.intent-cta.compact {
  background: #087f8f;
}

.modules-section,
.evidence-section,
.faq-section {
  background: var(--surface-alt);
}

.module-card {
  min-height: 218px;
}

.planned-module {
  border-color: rgba(242, 181, 43, 0.42);
  border-top: 4px solid var(--amber);
}

.module-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 10px;
  padding: 0 9px;
  color: var(--navy);
  background: #fff5d9;
  border: 1px solid rgba(242, 181, 43, 0.48);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.configurable-section {
  background: #fff;
}

.configurable-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: start;
}

.configurable-core,
.configurable-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.configurable-core {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-top: 4px solid var(--green);
  box-shadow: 0 16px 38px rgba(8, 36, 76, 0.08);
}

.configurable-core h3,
.configurable-card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
}

.configurable-core p,
.configurable-card p {
  color: var(--muted);
}

.configurable-core .check-list {
  margin-top: 18px;
}

.module-code {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-right: 6px;
  padding: 0 9px;
  color: var(--navy);
  background: #edf9fb;
  border: 1px solid #c8edf2;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

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

.configurable-card {
  min-height: 180px;
  padding: 20px;
  border-top: 4px solid var(--blue);
}

.configurable-card:nth-child(3n + 2) {
  border-top-color: var(--amber);
}

.configurable-card:nth-child(3n) {
  border-top-color: var(--green);
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.evidence-card {
  display: grid;
  gap: 16px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.evidence-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(23, 32, 39, 0.12);
}

.evidence-card.wide {
  grid-row: span 2;
}

.evidence-card > strong,
.evidence-card > span:not(.capture) {
  display: block;
  padding: 0 20px;
}

.evidence-card > strong {
  font-size: 19px;
}

.evidence-card > span:not(.capture) {
  margin: -10px 0 20px;
  color: var(--muted);
}

.capture {
  display: block;
  min-height: 260px;
  padding: 16px;
  background: #f8fbfa;
  border-width: 0 0 1px;
  box-shadow: none;
}

.evidence-card.wide .capture {
  min-height: 460px;
}

.evidence-visual {
  width: 100%;
  height: 460px;
  min-height: 460px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #effbfc;
}

.evidence-card.wide .evidence-visual {
  min-height: 460px;
}

.evidence-card > .map-commercial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(250px, 0.62fr);
  align-items: stretch;
  gap: 0;
  margin: 0 20px 20px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #eefbfc;
  border: 1px solid rgba(25, 191, 192, 0.18);
  border-radius: 8px;
}

.map-commercial-image {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.map-commercial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(227, 248, 247, 0.78)),
    #ffffff;
}

.map-commercial-copy small,
.map-commercial-copy strong,
.map-commercial-copy em,
.commercial-proof-list,
.commercial-proof-list b {
  display: block;
}

.map-commercial-copy small {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-commercial-copy strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.map-commercial-copy em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.commercial-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.commercial-proof-list b {
  min-height: 32px;
  padding: 8px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 191, 192, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.capture-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.capture-stats i {
  display: grid;
  place-items: center;
  min-height: 68px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.capture-stats small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.capture-rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.capture-rooms b {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid currentColor;
  border-radius: 8px;
  color: var(--ink);
  font-size: 22px;
}

.capture-rooms .available {
  border-top-color: var(--green);
}

.capture-rooms .occupied {
  border-top-color: var(--coral);
}

.capture-rooms .cleaning {
  border-top-color: var(--amber);
}

.capture-rooms .reserved {
  border-top-color: var(--blue);
}

.capture-rooms .maintenance {
  border-top-color: #7a8792;
}

.account-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.85fr;
  gap: 12px;
  margin-top: 14px;
}

.account-layout > span {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-layout i,
.account-layout b {
  display: block;
  font-style: normal;
}

.account-layout i {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.account-layout b {
  color: var(--navy);
  font-size: 13px;
}

.account-total b {
  font-size: 21px;
}

.phone-capture-small {
  display: grid;
  gap: 10px;
  min-height: 380px;
  max-width: 260px;
  margin: 0 auto;
  background: var(--navy);
}

.mobile-top,
.mobile-task {
  display: block;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-top strong,
.mobile-top small,
.mobile-task b,
.mobile-task i,
.mobile-task small,
.mobile-task em {
  display: block;
}

.mobile-top small,
.mobile-task small {
  color: var(--muted);
}

.mobile-task i,
.mobile-task em {
  font-style: normal;
  font-weight: 900;
}

.mobile-task i {
  margin-top: 8px;
  color: #946200;
  font-size: 12px;
}

.mobile-task.progress i {
  color: var(--green);
}

.mobile-task em {
  margin-top: 12px;
  padding: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  text-align: center;
}

.history-table {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.history-table i {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.85fr 0.45fr;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.history-table b,
.history-table span {
  font-size: 12px;
}

.mobile-cleaning-section {
  background: #eef7f3;
}

.cleaning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.cleaning-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cleaning-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cleaning-steps span,
.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 34px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.cleaning-steps span {
  grid-row: span 2;
}

.cleaning-steps strong,
.cleaning-steps p {
  grid-column: 2;
}

.cleaning-steps strong {
  font-size: 18px;
}

.cleaning-steps p {
  margin: 0;
  color: var(--muted);
}

.mobile-stage {
  display: grid;
  gap: 12px;
}

.mobile-stage article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.state-dot {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 18px;
  background: var(--amber);
  border-radius: 8px;
}

.state-dot.progress {
  background: var(--green);
}

.state-dot.done {
  background: var(--blue);
}

.mobile-stage p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-section {
  color: #fff;
  background: var(--navy);
}

.flow-section .eyebrow {
  color: #8ce5df;
}

.flow-section .section-heading {
  max-width: 680px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 198px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.flow-list span {
  margin-bottom: 18px;
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.solutions-section {
  background: #f3fbfb;
}

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

.solution-grid article {
  border-top: 4px solid var(--teal);
}

.implementation-section {
  background: #fff;
}

.demo-script-section {
  background: var(--surface-alt);
}

.demo-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-timeline li {
  min-height: 190px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
}

.demo-timeline span,
.demo-timeline strong {
  display: block;
}

.demo-timeline span {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.demo-timeline strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.demo-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.implementation-grid article strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 19px 22px;
}

.faq-list summary {
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
  color: #fff;
  background: var(--navy);
}

.contact-section .eyebrow {
  color: #9de8e8;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  margin-top: 28px;
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #2d3a42;
  font-size: 14px;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfeff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 127, 131, 0.16);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 24px 6%;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.footer-maker {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
}

.footer-maker strong {
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
}

.gallery-dialog {
  width: min(980px, calc(100% - 32px));
  padding: 24px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(7, 27, 54, 0.62);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.dialog-preview {
  margin-top: 18px;
}

.dialog-preview .capture {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

.legal-page {
  min-height: 100vh;
  background: var(--surface-alt);
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 24px 72px;
}

.legal-shell article {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-shell h1 {
  font-size: 40px;
}

.legal-shell h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .brand {
    width: 158px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 1120px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content,
  .product-composition,
  .trust-strip {
    grid-column: auto;
    grid-row: auto;
  }

  .product-composition {
    min-height: 575px;
  }

  .desktop-shot {
    width: calc(100% - 80px);
  }

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

  .configurable-layout {
    grid-template-columns: 1fr;
  }

  .configurable-core {
    position: static;
  }

  .solution-grid,
  .implementation-grid,
  .demo-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 6%;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-contact-link {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .trust-strip,
  .benefit-grid,
  .module-grid,
  .configurable-grid,
  .problem-layout,
  .evidence-grid,
  .cleaning-layout,
  .contact-section,
  .lead-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intent-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .hero-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    padding-top: 112px;
  }

  .brand {
    width: 148px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-claim {
    font-size: 24px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .product-composition {
    min-height: auto;
  }

  .desktop-shot {
    width: 100%;
  }

  .phone-shot {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 280px);
    margin: 18px auto 0;
  }

  .status-row,
  .capture-stats,
  .capture-rooms,
  .room-board,
  .flow-list,
  .solution-grid,
  .implementation-grid,
  .demo-timeline {
    grid-template-columns: 1fr;
  }

  .evidence-card.wide {
    grid-row: auto;
  }

  .evidence-card.wide .capture,
  .dialog-preview .capture {
    min-height: 360px;
  }

  .evidence-card > .map-commercial-panel {
    grid-template-columns: 1fr;
    margin: 0 14px 18px;
  }

  .map-commercial-image {
    min-height: 220px;
  }

  .map-commercial-copy {
    padding: 20px;
  }

  .map-commercial-copy strong {
    font-size: 21px;
  }

  .account-layout,
  .history-table i {
    grid-template-columns: 1fr;
  }

  .cleaning-steps li {
    grid-template-columns: 1fr;
  }

  .cleaning-steps span,
  .cleaning-steps strong,
  .cleaning-steps p {
    grid-column: auto;
    grid-row: auto;
  }

  .cleaning-steps strong {
    margin-top: 0;
  }
}
