:root {
  --ink: #142033;
  --muted: #58677d;
  --line: #dce3ec;
  --soft: #f5f8fb;
  --white: #ffffff;
  --blue: #1f66e5;
  --blue-dark: #174fb3;
  --mint: #13866f;
  --coral: #e86f5c;
  --amber: #b37516;
  --shadow: 0 18px 50px rgba(20, 32, 51, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(220, 227, 236, 0.78);
  background: rgba(255, 255, 255, 0.94);
  padding: 14px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(14px);
  max-width: 100vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand img {
  height: 34px;
  width: 34px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  white-space: nowrap;
}

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

.nav-links a.is-active {
  color: var(--blue);
}

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

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-action,
.primary-button {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

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

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero-silvercare-ipad-screening.webp");
  background-position: center right;
  background-size: cover;
  padding: 124px clamp(22px, 5vw, 72px) 88px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.67);
}

.hero-content {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.03;
  font-weight: 880;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #243247;
  font-size: 19px;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-kpis span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(31, 102, 229, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 850;
}

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

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

.proof-strip div {
  padding: 22px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-size: 18px;
}

.proof-icon,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.proof-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #e8f0ff;
}

.proof-icon svg,
.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.service-banner-section {
  background: var(--white);
}

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

.service-banner-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 0.78fr);
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(20, 32, 51, 0.09);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.service-banner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 102, 229, 0.38);
  box-shadow: var(--shadow);
}

.service-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  background: #f8fafc;
}

.service-banner-card img.service-card-image {
  object-position: center 34%;
}

.service-banner-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
}

.service-banner-card span {
  width: fit-content;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.service-banner-card h3 {
  margin-top: 16px;
  font-size: clamp(22px, 2.1vw, 30px);
}

.service-banner-card p {
  color: var(--muted);
  font-size: 16px;
}

.service-banner-card strong {
  margin-top: 12px;
  color: var(--blue);
  font-size: 17px;
}

.image-brief-placeholder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(31, 102, 229, 0.28);
  background:
    radial-gradient(circle at 22% 18%, rgba(31, 102, 229, 0.13), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(24, 148, 122, 0.12), transparent 28%),
    linear-gradient(135deg, #f8fbff, #eef5ff 54%, #f7fffb);
  color: var(--ink);
  padding: 24px;
  text-align: center;
}

.image-brief-placeholder span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.07);
}

.image-brief-placeholder strong {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
}

.image-brief-placeholder small {
  max-width: 460px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.55;
}

.card-placeholder {
  min-height: 300px;
}

.feature-placeholder {
  min-height: 430px;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 32, 51, 0.08);
}

.screening-visual img {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

.joymotion-placeholder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 112, 67, 0.22), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(31, 102, 229, 0.22), transparent 32%),
    linear-gradient(135deg, #fff7ed, #eef5ff 52%, #f5fff9);
  color: var(--ink);
  padding: 24px;
  text-align: center;
}

.joymotion-placeholder span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.08);
}

.joymotion-placeholder strong {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
}

.joymotion-placeholder small {
  color: var(--muted);
  font-weight: 800;
}

.joymotion-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(20, 32, 51, 0.1);
}

.joymotion-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.joymotion-placeholder.large {
  min-height: 520px;
}

.section {
  padding: 86px clamp(22px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading p:not(.eyebrow),
.impact-copy > p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
}

.proof-message {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: var(--white);
}

.proof-message p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 28px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.36;
  font-weight: 760;
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.06);
}

.about-intro {
  background: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.credibility-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.06);
}

.credibility-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.credibility-grid h3 {
  margin: 26px 0 12px;
  font-size: 23px;
}

.credibility-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.partner-ecosystem-section {
  background: #fbfcfe;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.partner-logo-grid article {
  display: flex;
  min-height: 122px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(20, 32, 51, 0.05);
}

.partner-logo-grid img {
  width: 100%;
  max-width: 170px;
  max-height: 72px;
  object-fit: contain;
}

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

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
}

.team-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.team-column h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

.team-card-list {
  display: grid;
  gap: 14px;
}

.team-card-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 20px;
}

.team-card-list h4 {
  margin: 0 0 6px;
  font-size: 20px;
}

.team-card-list p {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 850;
}

.team-card-list span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.recognition-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.recognition-copy {
  max-width: 720px;
}

.recognition-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.recognition-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #071831;
  box-shadow: var(--shadow);
}

.recognition-card img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  object-fit: contain;
  object-position: center;
}

.recognition-card figcaption {
  padding: 14px 18px;
  color: #dbeafe;
  font-weight: 800;
}

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

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 38px;
  align-items: center;
  padding: 132px clamp(22px, 5vw, 72px) 72px;
  background: var(--soft);
}

.page-hero-copy {
  min-width: 0;
  max-width: 780px;
}

.page-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(38px, 5.2vw, 68px);
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top left;
}

.platform-people-hero img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.page-hero-image.no-crop-image {
  padding: 0;
  background: transparent;
}

.page-hero-image.no-crop-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.demo-hero .page-hero-image img {
  max-height: 640px;
  object-fit: contain;
  background: #f8fafc;
}

.audience-grid,
.plan-family-grid,
.decision-grid,
.governance-grid,
.role-grid,
.demo-grid {
  display: grid;
  gap: 18px;
}

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

.audience-grid article,
.family-card,
.decision-grid a,
.governance-grid article,
.role-grid article,
.demo-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.audience-grid span,
.plan-tag,
.decision-grid span,
.role-grid span,
.timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.audience-grid p,
.family-card p,
.decision-grid strong,
.decision-grid em,
.governance-grid p,
.role-grid p,
.demo-grid p {
  color: var(--muted);
}

.audience-grid a,
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 850;
}

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

.family-card {
  min-height: 220px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.family-card strong {
  display: block;
  font-size: 28px;
}

.family-card span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
}

.path-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.path-flow b {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue-dark);
  padding: 6px 10px;
  font-size: 13px;
}

.planner-section {
  background: var(--white);
}

.kpi-section {
  background: var(--white);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kpi-grid article {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(20, 32, 51, 0.06);
}

.kpi-grid span {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 850;
}

.kpi-grid h3 {
  margin-top: 18px;
}

.kpi-grid p {
  color: var(--muted);
}

.kpi-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--mint);
  font-size: 14px;
}

.value-icon-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

.value-icon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.value-icon-card,
.capability-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 32px rgba(20, 32, 51, 0.06);
}

.value-icon-card {
  min-height: 240px;
}

.capability-grid article {
  min-height: 210px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #e8f0ff;
}

.value-icon-card h3,
.capability-grid h3 {
  margin-top: 22px;
}

.value-icon-card p,
.capability-grid p {
  color: var(--muted);
  font-size: 16px;
}

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

.decision-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.decision-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
}

.decision-grid em {
  margin-top: auto;
  font-style: normal;
  font-weight: 850;
  color: var(--blue);
}

.service-fit-section {
  background: #fbfcfe;
}

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

.service-fit-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(20, 32, 51, 0.06);
}

.service-fit-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.service-fit-grid dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.service-fit-grid div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.service-fit-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-fit-grid dd {
  margin: 4px 0 0;
  color: #26364b;
  font-weight: 720;
}

.service-fit-grid p {
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.plan-card {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.plan-card.is-featured {
  border-color: rgba(31, 102, 229, 0.55);
  box-shadow: var(--shadow);
}

.plan-card h3 {
  font-size: 30px;
}

.plan-card p {
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 18px;
  color: #2a3a50;
}

.plan-card strong {
  display: block;
  margin-top: auto;
  color: var(--blue-dark);
}

.complete-panel,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.complete-panel p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
}

.comparison-section {
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.comparison-table.simple-table {
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 260px;
  background: var(--white);
  text-align: left;
  font-weight: 780;
}

.comparison-table thead th {
  background: #eaf2ff;
  color: var(--ink);
  font-weight: 850;
}

.comparison-table tbody td:not(:first-child) {
  color: var(--blue);
  font-size: 18px;
  font-weight: 850;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.feature-showcase.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
}

.feature-showcase.reverse .feature-copy {
  order: 2;
}

.feature-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(31, 102, 229, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  padding: 6px 11px;
  font-size: 13px;
  font-weight: 850;
}

.centre-screening-showcase {
  align-items: stretch;
}

.centre-screening-showcase .feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(232, 240, 255, 0.92), rgba(255, 255, 255, 0.94)),
    var(--soft);
}

.dashboard-product-frame {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: visible;
  border: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 102, 229, 0.13), transparent 30%),
    linear-gradient(135deg, #f7fbff, #eef5ff);
  padding: clamp(16px, 2.3vw, 28px);
  box-shadow: none;
}

.dashboard-product-frame::before {
  content: "";
  position: absolute;
  inset: 7% 4% 9% 8%;
  border: 1px solid rgba(31, 102, 229, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(20, 32, 51, 0.13);
}

.dashboard-product-frame img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(195, 208, 225, 0.85);
  border-radius: 12px;
  box-shadow: 0 24px 62px rgba(20, 32, 51, 0.16);
  transform: translateX(4%);
}

.dashboard-insights {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 44px);
  right: clamp(22px, 3vw, 44px);
  bottom: clamp(20px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.dashboard-insights span {
  min-width: 0;
  border: 1px solid rgba(220, 227, 236, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.1);
}

.dashboard-insights b {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.dashboard-insights small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.home-monitor-frame {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
  box-shadow: 0 22px 60px rgba(20, 32, 51, 0.1);
}

.home-monitor-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.home-monitor-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 35, 0.04), rgba(7, 18, 35, 0.16));
}

.home-monitor-panel {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  top: clamp(14px, 2vw, 22px);
  z-index: 2;
  width: min(270px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(7, 18, 35, 0.18);
  backdrop-filter: blur(12px);
}

.monitor-label {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.home-monitor-grade {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.home-monitor-grade b {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff3bf;
  color: #9a6700;
  font-size: 30px;
  line-height: 1;
}

.home-monitor-grade small {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.home-monitor-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 10px 0 0;
}

.home-monitor-panel div {
  min-width: 0;
  border-radius: 10px;
  background: #f5f8fc;
  padding: 8px;
}

.home-monitor-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.home-monitor-panel dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.home-monitor-panel .wide {
  grid-column: 1 / -1;
}

.phone-gallery.wide {
  max-width: 900px;
  margin: 0 auto;
}

.process-section {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.timeline p {
  color: var(--muted);
}

.governance-grid,
.role-grid,
.demo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-section {
  background: var(--white);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #26364b;
  font-weight: 760;
}

.demo-form label.full {
  grid-column: 1 / -1;
}

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

.demo-form textarea {
  resize: vertical;
}

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

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  gap: 22px;
  margin-top: 8px;
}

.workflow::before {
  content: none;
  position: absolute;
  top: 31px;
  right: 12%;
  left: 12%;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f66e5, #13866f);
}

.workflow-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 86px 22px 24px;
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.07);
}

.workflow-step::before {
  content: none;
  position: absolute;
  top: 28px;
  right: -18px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: rotate(45deg);
  background: var(--white);
}

.workflow-step:last-child::before {
  display: none;
}

.workflow-step span {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 8px solid var(--white);
  background: #e8f0ff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 880;
  box-shadow: 0 12px 26px rgba(31, 102, 229, 0.16);
}

.workflow-step h3 {
  margin-top: 0;
}

.workflow-step p,
.module-card p,
.product-copy p,
.calculator p,
figcaption,
.site-footer p {
  color: var(--muted);
}

.split-section {
  background: var(--white);
}

.product-switcher {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.switcher-controls {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #eef3f8;
  padding: 8px;
}

.switcher-tab {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 18px;
  font-weight: 800;
}

.switcher-tab.is-active {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.product-panel {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.product-panel.is-active {
  display: grid;
}

.product-copy p {
  margin: 14px 0 0;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #29394f;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
}

.screenshot-frame,
.phone-gallery,
.screenshot-grid figure,
.module-card {
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

figure.dashboard-product-frame {
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 102, 229, 0.13), transparent 30%),
    linear-gradient(135deg, #f7fbff, #eef5ff);
}

figure.dashboard-product-frame img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  transform: none;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  border: 0;
  background: transparent;
}

.phone-gallery img {
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #f8fafc;
  box-shadow: 0 14px 35px rgba(20, 32, 51, 0.12);
}

.evidence-section {
  background: #fbfcfe;
}

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

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.platform-proof-card img,
.module-card img.platform-module-image {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.platform-banner-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 32, 51, 0.08);
}

.platform-banner-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
}

figcaption {
  padding: 14px 16px 18px;
  font-size: 14px;
}

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

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

.module-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.module-card h3,
.module-card p {
  padding-right: 20px;
  padding-left: 20px;
}

.module-card h3 {
  margin-top: 20px;
}

.module-card p {
  margin-top: 10px;
  padding-bottom: 24px;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: start;
  background: var(--white);
}

.impact-copy {
  max-width: 760px;
}

.impact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.impact-points div {
  border-left: 4px solid var(--blue);
  background: #f8fbff;
  padding: 16px 18px;
}

.impact-points strong {
  display: block;
  font-size: 17px;
}

.impact-points span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.calculator {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
}

.calculator label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #2b3a50;
  font-weight: 750;
}

.calculator input[type="number"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
}

.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

#riskRateLabel {
  color: var(--blue);
  font-weight: 850;
}

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

.calculator-output div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
}

.calculator-output span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.calculator-output strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #102139;
  color: var(--white);
}

.cta-section .eyebrow,
.cta-section p {
  color: #bcd2ee;
}

.cta-section > div:first-child {
  max-width: 780px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7fafd;
  padding: 48px clamp(22px, 5vw, 72px) 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 36px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-brand p + p {
  margin-top: 7px;
}

.footer-brand strong {
  color: var(--ink);
  font-weight: 760;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
}

.footer-column a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.footer-contact p {
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(220, 227, 236, 0.9);
  margin-top: 42px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 10px;
  font-family: inherit;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 18px;
  box-shadow: 0 16px 40px rgba(31, 102, 229, 0.3);
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
}

.chat-toggle-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.chat-toggle-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 32, 51, 0.22);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #0d2341;
  color: var(--white);
  padding: 14px 16px;
}

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

.chat-header span {
  color: #bfd2ee;
  font-size: 12px;
  font-weight: 700;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.chat-messages {
  display: grid;
  max-height: 330px;
  gap: 10px;
  overflow-y: auto;
  background: #f6f9fd;
  padding: 14px;
}

.chat-message {
  max-width: 88%;
  border-radius: 12px;
  padding: 10px 12px;
  color: #27364b;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.chat-message.is-assistant {
  justify-self: start;
  border: 1px solid var(--line);
  background: var(--white);
}

.chat-message.is-user {
  justify-self: end;
  background: var(--blue);
  color: var(--white);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px 14px 0;
}

.chat-quick button {
  border: 1px solid rgba(31, 102, 229, 0.2);
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--blue-dark);
  padding: 7px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 14px;
}

.chat-form textarea {
  min-height: 42px;
  max-height: 112px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 11px;
  color: var(--ink);
}

.chat-form button {
  min-height: 42px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  padding: 0 13px;
  cursor: pointer;
  font-weight: 820;
}

.chat-form button:disabled,
.chat-form textarea:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.chat-note {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 14px 12px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 12px;
    overflow: visible;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(16px, 4vw, 56px);
    left: clamp(16px, 4vw, 56px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(220, 227, 236, 0.95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 8px;
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

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

  .nav-links a {
    border: 0;
    border-radius: 6px;
    background: transparent;
    padding: 12px 14px;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    background: var(--soft);
    color: var(--blue);
  }

  .nav-demo-link {
    display: flex;
    justify-content: center;
    border: 1px solid var(--blue) !important;
    background: var(--blue) !important;
    color: var(--white) !important;
    font-weight: 750;
  }

  .header-action {
    display: none;
  }

  .proof-strip,
  .service-banner-grid,
  .workflow,
  .module-grid,
  .audience-grid,
  .credibility-grid,
  .partner-logo-grid,
  .plan-family-grid,
  .service-fit-grid,
  .decision-grid,
  .proof-message,
  .value-icon-grid,
  .capability-grid,
  .kpi-grid,
  .plan-grid,
  .plan-grid.three,
  .timeline,
  .governance-grid,
  .role-grid,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workflow-step {
    padding-inline: 18px;
  }

  .product-panel.is-active,
  .service-banner-card,
  .impact-section,
  .page-hero,
  .team-layout,
  .recognition-section,
  .complete-panel,
  .contact-card,
  .feature-showcase,
  .feature-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .feature-showcase.reverse .feature-copy {
    order: 0;
  }

  .dashboard-product-frame {
    min-height: 460px;
  }

  figure.dashboard-product-frame img {
    width: 100%;
    transform: none;
  }

  .calculator {
    position: static;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
  }

  main {
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: min(86vh, 760px);
    padding: 156px 20px 64px;
    background-position: 78% center;
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.76);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    word-break: break-all;
  }

  .hero-copy,
  .hero-content {
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .hero-kpis {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
    word-break: break-all;
  }

  h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  h3,
  p,
  .decision-grid strong,
  .decision-grid em,
  .plan-card li,
  .plan-card strong,
  .service-fit-grid dt,
  .service-fit-grid dd {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

  .proof-strip,
  .service-banner-grid,
  .workflow,
  .screenshot-grid,
  .module-grid,
  .demo-form,
  .phone-gallery,
  .calculator-output,
  .audience-grid,
  .credibility-grid,
  .partner-logo-grid,
  .plan-family-grid,
  .service-fit-grid,
  .decision-grid,
  .proof-message,
  .value-icon-grid,
  .capability-grid,
  .kpi-grid,
  .plan-grid,
  .plan-grid.three,
  .timeline,
  .governance-grid,
  .role-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid article {
    min-height: 0;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-grid article {
    min-height: 104px;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .workflow {
    gap: 0;
    padding-left: 4px;
  }

  .workflow::before {
    content: "";
    top: 8px;
    bottom: 8px;
    left: 34px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #1f66e5, #13866f);
  }

  .workflow-step {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 30px;
    box-shadow: none;
  }

  .workflow-step:last-child {
    padding-bottom: 0;
  }

  .workflow-step::before {
    display: none;
  }

  .workflow-step span {
    position: relative;
    top: auto;
    left: auto;
    grid-row: 1 / span 2;
    width: 62px;
    height: 62px;
  }

  .workflow-step h3,
  .workflow-step p {
    grid-column: 2;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .workflow-step h3 {
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 18px 18px 4px;
  }

  .workflow-step p {
    margin: 0;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 4px 18px 18px;
    box-shadow: 0 12px 28px rgba(20, 32, 51, 0.07);
  }

  .section {
    width: 100%;
    max-width: 100vw;
    padding: 62px 20px;
  }

  .section-heading {
    max-width: 100%;
  }

  .decision-grid a,
  .service-banner-card,
  .service-fit-grid article,
  .plan-card {
    min-height: auto;
  }

  .service-banner-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .service-banner-card img {
    max-width: 100%;
    height: 220px;
  }

  .feature-placeholder.screening-visual {
    min-height: 0;
  }

  .screening-visual img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
    background: #f8fafc;
  }

  .service-banner-card h3 {
    font-size: 24px;
  }

  .page-hero {
    width: 100%;
    max-width: 100vw;
    padding: 156px 20px 54px;
  }

  .page-hero-copy h1 {
    font-size: 34px;
  }

  .page-hero-copy p:not(.eyebrow) {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .page-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .dashboard-product-frame {
    min-height: 0;
    padding: 14px;
  }

  .dashboard-product-frame::before {
    inset: 0;
  }

  .dashboard-insights {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .home-monitor-frame {
    min-height: 0;
  }

  .home-monitor-frame img {
    min-height: 340px;
  }

  .home-monitor-frame::after {
    display: none;
  }

  .home-monitor-panel {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: -26px 14px 14px;
  }

  .home-monitor-panel dl {
    grid-template-columns: 1fr;
  }

  .product-panel {
    padding: 18px;
  }

  .switcher-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
