:root {
  color-scheme: light;
  --ink: #101822;
  --muted: #5c6875;
  --navy: #0d1b2a;
  --navy-soft: #16324c;
  --paper: #f6f8fb;
  --white: #ffffff;
  --cyan: #08b8d8;
  --cyan-dark: #047f9f;
  --green: #15946d;
  --amber: #f0a43a;
  --line: #d9e2ea;
  --line-strong: #b9c9d7;
  --shadow: 0 18px 48px rgba(13, 27, 42, 0.12);
  --font: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(32px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(216, 224, 232, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.14);
}

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

.brand strong {
  color: var(--navy);
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: #6b7885;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: #344555;
  font-size: 13.5px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #e8f8fb;
  color: var(--cyan-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(8, 184, 216, 0.4);
  background: var(--cyan);
  color: #03151d;
  box-shadow: 0 10px 24px rgba(8, 184, 216, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: #0fc6e6;
  color: #03151d;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 80px;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/splash-mastercut.png");
  background-position: center;
  background-size: cover;
  transform-origin: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.92) 0%, rgba(5, 14, 25, 0.72) 43%, rgba(5, 14, 25, 0.32) 76%, rgba(5, 14, 25, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 14, 25, 0.24), rgba(5, 14, 25, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: clamp(12.5px, 0.85vw, 14px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 800px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16.5px, 1.35vw, 20px);
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button.is-disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
  pointer-events: none;
  transform: none;
}

.button-primary {
  background: var(--cyan);
  color: #03151d;
  box-shadow: 0 12px 34px rgba(8, 184, 216, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  max-width: 900px;
}

.hero-metrics span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(9, 21, 34, 0.62);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.hero-cad {
  position: absolute;
  right: max(18px, calc((100% - 1180px) / 2));
  bottom: 64px;
  z-index: 1;
  width: min(42%, 540px);
  min-width: 320px;
  opacity: 0.84;
  pointer-events: none;
}

.hero-cad svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.cad-grid {
  fill: none;
  stroke: rgba(189, 215, 231, 0.22);
  stroke-width: 1;
}

.cad-path,
.cad-offset,
.cad-lead {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cad-path {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4;
}

.cad-offset {
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-dasharray: 12 9;
}

.cad-lead {
  stroke: var(--amber);
  stroke-width: 3;
}

.cad-node {
  fill: var(--amber);
  stroke: #fff8e8;
  stroke-width: 3;
}

.cad-node-small {
  fill: var(--cyan);
  stroke-width: 2;
}

.wire-core {
  position: absolute;
  right: 50%;
  top: -50px;
  width: 2px;
  height: 390px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f7f1dc 40%, var(--amber), rgba(255, 255, 255, 0));
  box-shadow: 0 0 22px rgba(240, 164, 58, 0.72);
}

.spark-dot {
  position: absolute;
  right: calc(50% - 8px);
  top: 198px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(240, 164, 58, 0.22), 0 0 32px rgba(240, 164, 58, 0.9);
}

.info-card,
.solution-capabilities article,
.screen-main,
.screen-card,
.conversion-step,
.handover-banner,
.trial-step,
.trial-support,
.trial-cta,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
}

.problem-detail span,
.screen-main figcaption span,
.screen-card figcaption span,
.trial-step span,
.trial-support > span,
.solution-capabilities span {
  color: var(--cyan-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 8vw, 116px) 0;
  background: var(--paper);
}

.section-contrast {
  background: #edf3f7;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 48px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.032em;
}

.section-heading p:not(.eyebrow),
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.section-heading p:not(.eyebrow) {
  max-width: 800px;
  margin: 22px 0 0;
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.75;
}

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

.info-card {
  min-height: 260px;
  padding: 28px;
}

.card-icon {
  min-width: 44px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  background: #e5f8fb;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
}

#problem .section-heading {
  max-width: 960px;
  margin-bottom: 50px;
}

#problem .section-heading h2 {
  max-width: 940px;
}

#problem .section-heading p:not(.eyebrow) {
  max-width: 800px;
}

#problem .info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
  border-color: #cbdbe7;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 26px rgba(13, 27, 42, 0.06);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

#problem .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

#problem .info-card::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(8, 184, 216, 0.1);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

#problem .info-card:hover {
  border-color: rgba(8, 184, 216, 0.62);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fcfe 100%);
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.12);
  transform: translateY(-8px);
}

#problem .info-card:hover::before {
  transform: scaleX(1);
}

#problem .info-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

#problem .card-icon {
  margin-bottom: 4px;
  background: #dcf6fb;
  color: #026c88;
  box-shadow: inset 0 0 0 1px rgba(8, 184, 216, 0.14);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

#problem .info-card:hover .card-icon {
  background: var(--cyan);
  color: #03151d;
  box-shadow: 0 10px 24px rgba(8, 184, 216, 0.28);
  transform: translateY(-2px);
}

#problem .info-card h3 {
  margin-top: 16px;
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.3;
  transition: color 220ms ease;
}

#problem .info-card:hover h3 {
  color: #047f9f;
}

#problem .info-card p {
  font-size: 15.5px;
  line-height: 1.7;
  transition: color 220ms ease;
}

#problem .info-card:hover p {
  color: #435466;
}

h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  line-height: 1.2;
}

.info-card p,
.solution-capabilities p,
.trial-step p,
.conversion-step p,
.trial-support p {
  margin: 0;
  color: var(--muted);
}

.problem-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  margin-top: 32px;
  padding: 34px;
  border: 1px solid rgba(8, 184, 216, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 251, 254, 0.96) 100%);
  box-shadow: 0 22px 56px rgba(13, 27, 42, 0.1);
}

.problem-detail h3 {
  margin: 8px 0 0;
  max-width: 520px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.24;
}

.problem-detail-copy {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 184, 216, 0.18);
}

.problem-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.74;
}

.section-screens {
  background:
    linear-gradient(180deg, #edf3f7 0%, #f6f8fb 100%);
}

#solution .section-heading {
  max-width: 960px;
  margin-bottom: 40px;
}

#solution .section-heading h2 {
  max-width: 940px;
}

#solution .section-heading p:not(.eyebrow) {
  max-width: 820px;
}

.solution-showcase {
  margin-top: 40px;
}

.solution-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.solution-capabilities article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  border-color: #d7e3ea;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.055);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.solution-capabilities article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.solution-capabilities article::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(8, 184, 216, 0.1);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.solution-capabilities article:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.62);
  background: linear-gradient(180deg, #ffffff 0%, #f3fcfe 100%);
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.12);
  transform: translateY(-8px);
}

.solution-capabilities article:is(:hover, :focus-within)::before {
  transform: scaleX(1);
}

.solution-capabilities article:is(:hover, :focus-within)::after {
  opacity: 1;
  transform: scale(1);
}

.solution-capabilities article span,
.solution-capabilities article h3,
.solution-capabilities article p {
  position: relative;
  z-index: 1;
}

.solution-capabilities article span {
  transition: color 220ms ease;
}

.solution-capabilities article:is(:hover, :focus-within) span,
.solution-capabilities article:is(:hover, :focus-within) h3 {
  color: var(--cyan-dark);
}

.solution-capabilities h3 {
  margin-top: 16px;
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.3;
}

.solution-capabilities p {
  font-size: 15.5px;
  line-height: 1.7;
}

.screen-main,
.screen-card {
  margin: 0;
  overflow: hidden;
}

.screen-main img,
.screen-card img {
  width: 100%;
  display: block;
  background: #07111c;
  aspect-ratio: 1440 / 920;
}

.screen-main {
  border-color: #cbdbe7;
  box-shadow: 0 24px 62px rgba(13, 27, 42, 0.13);
}

.screen-main img {
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center top;
}

.screen-card img {
  object-fit: cover;
}

.screen-main figcaption,
.screen-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.screen-main figcaption {
  display: block;
  padding: 14px 20px 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.screen-main figcaption strong,
.screen-card figcaption strong {
  color: var(--navy);
  line-height: 1.35;
}

.solution-difference {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  padding: 32px;
  border: 1px solid rgba(8, 184, 216, 0.36);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #eefbfe 100%);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.07);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.solution-difference:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.58);
  box-shadow: 0 24px 56px rgba(13, 27, 42, 0.1);
  transform: translateY(-4px);
}

.solution-difference span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-difference h3 {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}

.solution-difference p {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.trial-layout {
  display: block;
}

#faq {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #eef4f8 100%);
}

.faq-layout {
  display: block;
}

#faq .section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

#faq .section-heading h2 {
  max-width: 780px;
}

#faq .section-heading p:not(.eyebrow) {
  max-width: 740px;
  margin-inline: auto;
}

.section-legal {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #edf5f8 100%);
}

#legal .section-heading {
  max-width: 960px;
  margin-bottom: 52px;
}

#legal .section-heading h2 {
  max-width: 940px;
}

#legal .section-heading p:not(.eyebrow) {
  max-width: 820px;
}

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

.conversion-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 184, 216, 0), rgba(8, 184, 216, 0.42), rgba(8, 184, 216, 0));
  pointer-events: none;
}

.conversion-step {
  position: relative;
  min-height: 252px;
  padding: 28px;
  overflow: hidden;
  border-color: #d7e3ea;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.07);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.conversion-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.conversion-step::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(8, 184, 216, 0.11);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.conversion-step:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.64);
  background: linear-gradient(180deg, #ffffff 0%, #f3fcfe 100%);
  box-shadow: 0 26px 52px rgba(13, 27, 42, 0.13);
  transform: translateY(-8px);
}

.conversion-step:is(:hover, :focus-within)::before {
  transform: scaleX(1);
}

.conversion-step:is(:hover, :focus-within)::after {
  opacity: 1;
  transform: scale(1);
}

.conversion-step span {
  position: relative;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: #dcf6fb;
  color: #026c88;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(8, 184, 216, 0.16);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.conversion-step:is(:hover, :focus-within) span {
  background: var(--cyan);
  color: #03151d;
  box-shadow: 0 10px 24px rgba(8, 184, 216, 0.28);
  transform: translateY(-2px);
}

.conversion-step h3 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.3;
  transition: color 220ms ease;
}

.conversion-step p {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.conversion-step:is(:hover, :focus-within) h3 {
  color: var(--cyan-dark);
}

.conversion-step:is(:hover, :focus-within) p {
  color: #435466;
}

.handover-banner {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  padding: 34px;
  border-color: rgba(8, 184, 216, 0.34);
  background: linear-gradient(135deg, #ffffff 0%, #eefbfe 100%);
  box-shadow: 0 18px 46px rgba(13, 27, 42, 0.08);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.handover-banner:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.58);
  box-shadow: 0 26px 60px rgba(13, 27, 42, 0.11);
  transform: translateY(-4px);
}

.handover-banner > span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.handover-banner h3 {
  max-width: 920px;
  margin: 12px 0 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.24;
}

.handover-banner p {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.handover-banner ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.handover-banner li {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  padding: 16px 16px 16px 38px;
  border: 1px solid rgba(8, 184, 216, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #344555;
  font-weight: 700;
  line-height: 1.45;
  transform: translateY(0);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
  will-change: transform;
}

.handover-banner li:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.46);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(8, 184, 216, 0.1);
  color: var(--navy);
  transform: translateY(-4px);
}

.handover-banner li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.handover-banner li:is(:hover, :focus-within)::before {
  box-shadow: 0 0 0 6px rgba(8, 184, 216, 0.16);
  transform: scale(1.18);
}

#trial .section-heading {
  max-width: 940px;
  margin-bottom: 48px;
}

#trial .section-heading h2 {
  max-width: 940px;
}

#trial .section-heading p:not(.eyebrow) {
  max-width: 820px;
}

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

.trial-step {
  position: relative;
  min-height: 252px;
  padding: 28px;
  overflow: hidden;
  border-color: #d7e3ea;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.07);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.trial-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.trial-step::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(8, 184, 216, 0.11);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.trial-step:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.64);
  background: linear-gradient(180deg, #ffffff 0%, #f3fcfe 100%);
  box-shadow: 0 26px 52px rgba(13, 27, 42, 0.13);
  transform: translateY(-8px);
}

.trial-step:is(:hover, :focus-within)::before {
  transform: scaleX(1);
}

.trial-step:is(:hover, :focus-within)::after {
  opacity: 1;
  transform: scale(1);
}

.trial-step span,
.trial-step h3,
.trial-step p {
  position: relative;
  z-index: 1;
}

.trial-step span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: #dcf6fb;
  box-shadow: inset 0 0 0 1px rgba(8, 184, 216, 0.16);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.trial-step:is(:hover, :focus-within) span {
  background: var(--cyan);
  color: #03151d;
  box-shadow: 0 10px 24px rgba(8, 184, 216, 0.28);
  transform: translateY(-2px);
}

.trial-step h3 {
  margin-top: 20px;
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.3;
  transition: color 220ms ease;
}

.trial-step p {
  font-size: 15.5px;
  line-height: 1.7;
  transition: color 220ms ease;
}

.trial-step:is(:hover, :focus-within) h3 {
  color: var(--cyan-dark);
}

.trial-step:is(:hover, :focus-within) p {
  color: #435466;
}

.trial-support {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: 34px;
  border-color: rgba(8, 184, 216, 0.34);
  background: linear-gradient(135deg, #ffffff 0%, #eefbfe 100%);
  box-shadow: 0 18px 46px rgba(13, 27, 42, 0.08);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.trial-support:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.58);
  box-shadow: 0 26px 60px rgba(13, 27, 42, 0.11);
  transform: translateY(-4px);
}

.trial-support h3 {
  max-width: 980px;
  margin: 12px 0 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}

.trial-support p {
  max-width: 1010px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.72;
}

.trial-support ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trial-support li {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: flex-start;
  padding: 15px 16px 15px 38px;
  border: 1px solid rgba(8, 184, 216, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #344555;
  font-weight: 700;
  line-height: 1.45;
  transform: translateY(0);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
  will-change: transform;
}

.trial-support li:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.46);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(8, 184, 216, 0.1);
  color: var(--navy);
  transform: translateY(-4px);
}

.trial-support li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.trial-support li:is(:hover, :focus-within)::before {
  box-shadow: 0 0 0 6px rgba(8, 184, 216, 0.16);
  transform: scale(1.18);
}

.trial-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 26px 30px;
  border-color: rgba(8, 184, 216, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.065);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.trial-cta:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.5);
  box-shadow: 0 22px 52px rgba(13, 27, 42, 0.1);
  transform: translateY(-4px);
}

.trial-cta span {
  display: block;
  color: var(--navy);
  font-size: clamp(20px, 1.6vw, 23px);
  font-weight: 900;
  line-height: 1.25;
}

.trial-cta p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.trial-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.trial-cta .button-secondary {
  border-color: rgba(8, 184, 216, 0.36);
  background: #ffffff;
  color: var(--navy);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-color: #d7e3ea;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item:is(:hover, :focus-within) {
  border-color: rgba(8, 184, 216, 0.5);
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.08);
  transform: translateY(-2px);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-item i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(8, 184, 216, 0.34);
  border-radius: 999px;
  background: #eefbfe;
  flex: 0 0 auto;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  background: var(--cyan-dark);
  border-radius: 999px;
}

.faq-item i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item.is-open {
  border-color: rgba(8, 184, 216, 0.52);
}

.faq-item.is-open i {
  border-color: rgba(8, 184, 216, 0.58);
  background: #dff8fc;
}

.faq-item.is-open i::after {
  transform: rotate(0);
}

.faq-panel {
  padding: 0 24px 22px;
}

.js-ready .faq-item:not(.is-open) .faq-panel {
  height: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-panel p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.faq-cta {
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px auto 0;
  padding: 26px;
  border: 1px solid rgba(8, 184, 216, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #eefbfe 100%);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.065);
}

.faq-cta span {
  display: block;
  color: var(--navy);
  font-size: clamp(20px, 1.6vw, 23px);
  font-weight: 900;
  line-height: 1.25;
}

.faq-cta p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.faq-cta .button-secondary {
  border-color: rgba(8, 184, 216, 0.36);
  background: #ffffff;
  color: var(--navy);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(8, 184, 216, 0.16), rgba(8, 184, 216, 0) 34%),
    linear-gradient(135deg, #081522 0%, #0d1b2a 58%, #07111c 100%);
  color: var(--white);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.final-cta-copy {
  max-width: 760px;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.final-cta-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15.5px, 1.15vw, 18px);
  line-height: 1.72;
}

.final-cta-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-checklist li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.5;
}

.final-cta-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 0 5px rgba(8, 184, 216, 0.12);
}

.final-cta-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #03151d;
  border-bottom: 2px solid #03151d;
  transform: rotate(-45deg);
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(8, 184, 216, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.final-cta-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}

.final-cta-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.final-cta-steps li {
  padding: 14px 16px;
  border: 1px solid rgba(8, 184, 216, 0.18);
  border-radius: 12px;
  background: #f5fbfd;
  color: #344555;
  line-height: 1.4;
}

.final-cta-steps span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.final-cta-card .button {
  width: 100%;
}

.final-cta-card .button-secondary {
  border-color: rgba(8, 184, 216, 0.38);
  background: #ffffff;
  color: var(--navy);
}

.final-cta-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.final-contact-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 184, 216, 0.18);
}

.final-contact-line a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.final-contact-line span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-contact-line strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid #1f3349;
  background: #07111c;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.site-footer strong {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
    padding-inline: 24px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .site-nav .nav-cta {
    margin-left: 4px;
  }

  .hero h1 {
    max-width: 840px;
  }
}

@media (max-width: 1080px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #problem .section-heading h2 {
    font-size: clamp(40px, 4.6vw, 46px);
  }

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

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

  .conversion-timeline::before {
    display: none;
  }

  .handover-banner ul {
    grid-template-columns: 1fr;
  }

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

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta-card {
    max-width: 620px;
  }

  .screen-main img {
    height: auto;
    max-height: 680px;
  }

  .hero-cad {
    right: 20px;
    bottom: 48px;
    width: 42%;
    opacity: 0.44;
  }

}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 42px;
    min-width: 42px;
    position: fixed;
    top: 11px;
    right: 16px;
    z-index: 80;
    border-color: rgba(8, 184, 216, 0.42);
    background: #e8f8fb;
    box-shadow: 0 8px 18px rgba(13, 27, 42, 0.16);
  }

  .page-shell {
    width: min(1240px, calc(100% - 40px));
  }

  .hero {
    min-height: 720px;
    padding: 108px 0 64px;
  }

  .hero-content {
    width: min(520px, calc(100% - 40px));
    margin: 0 auto;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 14, 25, 0.94), rgba(5, 14, 25, 0.68)),
      linear-gradient(180deg, rgba(5, 14, 25, 0.18), rgba(5, 14, 25, 0.86));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-cad {
    width: 460px;
    min-width: 0;
    right: -170px;
    bottom: 40px;
    opacity: 0.18;
  }

  .section,
  .final-cta {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  #problem .section-heading h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  #problem .section-heading p:not(.eyebrow) {
    font-size: 15.5px;
  }

  .problem-grid,
  .solution-capabilities,
  .trial-steps,
  .trial-support ul {
    grid-template-columns: 1fr;
  }

  .info-card,
  .solution-capabilities article,
  .trial-step,
  .trial-support li {
    min-height: 0;
  }

  .info-card,
  .solution-capabilities article {
    padding: 22px;
  }

  #problem .info-card {
    min-height: 0;
  }

  #trial .section-heading {
    margin-bottom: 36px;
  }

  #trial .section-heading p:not(.eyebrow) {
    font-size: 15.5px;
  }

  #faq .section-heading {
    margin-bottom: 36px;
  }

  #faq .section-heading p:not(.eyebrow) {
    font-size: 15.5px;
  }

  .faq-item button {
    min-height: 64px;
    padding: 18px;
    font-size: 16px;
  }

  .faq-panel {
    padding: 0 18px 18px;
  }

  .faq-cta {
    display: grid;
    gap: 18px;
    padding: 20px;
  }

  .faq-cta span {
    font-size: 20px;
  }

  .faq-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .trial-step,
  .trial-support,
  .trial-cta {
    padding: 22px;
  }

  .trial-support {
    margin-top: 28px;
  }

  .trial-support h3 {
    font-size: 22px;
  }

  .trial-cta {
    display: grid;
    gap: 18px;
  }

  .trial-cta span {
    font-size: 20px;
  }

  .trial-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-cta-layout {
    gap: 28px;
  }

  .final-cta h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .final-cta-copy > p {
    font-size: 15.5px;
  }

  .final-cta-card {
    max-width: none;
    padding: 22px;
  }

  .final-cta-card h3 {
    font-size: 22px;
  }

  .final-contact-line a {
    display: grid;
    gap: 4px;
  }

  .final-contact-line strong {
    text-align: left;
  }

  .solution-showcase {
    margin-top: 28px;
  }

  .screen-main img {
    height: auto;
    aspect-ratio: 1440 / 920;
    object-fit: contain;
  }

  .screen-main figcaption {
    padding: 12px 14px 14px;
    font-size: 13px;
  }

  .solution-capabilities {
    margin-top: 38px;
    gap: 16px;
  }

  .solution-difference {
    margin-top: 22px;
    padding: 22px;
  }

  .solution-difference h3 {
    font-size: 22px;
  }

  .problem-detail {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 18px;
  }

  .problem-detail h3 {
    font-size: 22px;
  }

  .problem-detail-copy {
    padding-top: 0;
    border-top: 0;
  }

  .conversion-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .conversion-step {
    min-height: 0;
    padding: 22px;
  }

  .handover-banner {
    margin-top: 34px;
    padding: 22px;
  }

  .handover-banner h3 {
    font-size: 22px;
  }

  .handover-banner li {
    min-height: 0;
  }

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

  .site-footer span {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .button {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 15px;
  }
}

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

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

  .solution-capabilities article,
  .solution-capabilities article:is(:hover, :focus-within),
  .solution-difference,
  .solution-difference:is(:hover, :focus-within),
  .conversion-step,
  .conversion-step:is(:hover, :focus-within),
  .handover-banner,
  .handover-banner:is(:hover, :focus-within),
  .handover-banner li,
  .handover-banner li:is(:hover, :focus-within),
  .trial-step,
  .trial-step:is(:hover, :focus-within),
  .trial-support,
  .trial-support:is(:hover, :focus-within),
  .trial-support li,
  .trial-support li:is(:hover, :focus-within),
  .trial-cta,
  .trial-cta:is(:hover, :focus-within),
  .faq-item,
  .faq-item:is(:hover, :focus-within),
  .final-cta-checklist li,
  .final-cta-card {
    transform: none !important;
  }
}
