:root {
  --page: #ffffff;
  --surface: #f5f8fd;
  --surface-strong: #eaf2fc;
  --ink: #10233f;
  --ink-soft: #52657d;
  --navy: #092e5d;
  --navy-deep: #061f40;
  --blue: #1268dc;
  --blue-dark: #0b52b5;
  --blue-light: #dcecff;
  --cyan: #22a9e8;
  --mint: #12a77a;
  --line: #dbe6f2;
  --line-strong: #c8d8ea;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(13, 49, 91, 0.08);
  --shadow-lg: 0 32px 90px rgba(7, 43, 86, 0.17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(18, 104, 220, 0.38);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 760;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.1vw, 4.3rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-deep);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 118px;
}

.section-tint {
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 169, 232, 0.09), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #f2f7fd 100%);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8fd8ff;
}

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

.section-heading > p:last-child,
.showcase-copy > p,
.pricing-copy > p,
.migration-copy > p,
.contact-intro > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #1675ed, var(--blue-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(18, 104, 220, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(18, 104, 220, 0.36);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button-quiet:hover {
  border-color: rgba(18, 104, 220, 0.38);
  background: white;
}

.button-white {
  background: white;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 25, 56, 0.18);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(150%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(200, 216, 234, 0.7);
  box-shadow: 0 8px 30px rgba(12, 47, 89, 0.06);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 150px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-panel {
  flex: 1;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  gap: clamp(15px, 2vw, 30px);
}

.nav-links a {
  color: #425872;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Hero */
.hero {
  display: grid;
  min-height: min(850px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 58px;
  padding-block: 72px 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(115deg, var(--blue) 0%, #129bd0 72%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}

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

.cta-note {
  margin: 12px 0 0 10px;
  color: #718197;
  font-size: 0.84rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 34px 0 0;
  padding: 0;
  color: #425872;
  font-size: 0.86rem;
  font-weight: 650;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e4f7f1;
  color: #087a59;
  font-size: 0.72rem;
}

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

.visual-glow {
  position: absolute;
  inset: 6% 4% 6% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 169, 232, 0.24), rgba(18, 104, 220, 0.08) 48%, transparent 72%);
  filter: blur(6px);
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(190, 211, 235, 0.92);
  background: white;
  box-shadow: var(--shadow-lg);
}

.desktop-frame {
  position: absolute;
  top: 30px;
  right: 0;
  width: 88%;
  height: 575px;
  margin: 0;
  border-radius: 26px;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
  transform-origin: right center;
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4d3e3;
}

.window-bar b {
  margin-left: 8px;
  color: #718197;
  font-size: 0.67rem;
  font-weight: 700;
}

.desktop-frame > img {
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: top center;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: -12px;
  width: 190px;
  height: 390px;
  margin: 0;
  padding: 9px;
  border: 5px solid #0c2647;
  border-radius: 35px;
  background: #0c2647;
  box-shadow: 0 26px 60px rgba(3, 29, 62, 0.34);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  object-fit: cover;
  object-position: top;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 54px;
  height: 13px;
  border-radius: 0 0 10px 10px;
  background: #0c2647;
  transform: translateX(-50%);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 178px;
  gap: 1px;
  padding: 13px 16px;
  border: 1px solid rgba(200, 216, 234, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.floating-note b {
  color: var(--navy);
  font-size: 0.83rem;
}

.floating-note span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.floating-note-top {
  top: 80px;
  left: 0;
}

.floating-note-bottom {
  bottom: 46px;
  left: 20px;
}

/* Proof */
.proof-strip {
  border-block: 1px solid var(--line);
  background: #fbfdff;
}

.proof-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.proof-inner p {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.proof-points {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 18px;
  color: #6f8197;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-points i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

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

.feature-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 1px 0 rgba(11, 46, 93, 0.02);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: #b9d2ec;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-card-emphasis {
  background: linear-gradient(145deg, #eaf4ff, #ffffff 72%);
}

.feature-card-dark {
  border-color: var(--navy);
  background: linear-gradient(145deg, #0b376d, #071f41);
}

.feature-card-dark h3,
.feature-card-dark p,
.feature-card-dark .feature-tag {
  color: white;
}

.feature-card-dark p {
  opacity: 0.72;
}

.feature-card-dark .feature-number {
  background: rgba(255, 255, 255, 0.11);
  color: #9ddeff;
}

.feature-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-strong);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-card h3 {
  font-size: 1.36rem;
}

.feature-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.feature-tag {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Feature showcases */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.showcase-copy h2 {
  max-width: 650px;
}

.check-list,
.pricing-features {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
}

.check-list li span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #ddf5ed;
  color: #087d5b;
  font-size: 0.8rem;
}

.supporting-copy {
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem !important;
}

.radiograph-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid #bdd1e7;
  border-radius: 28px;
  background: #0d1724;
  box-shadow: var(--shadow-lg);
}

.radiograph-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.asset-slot {
  overflow: hidden;
  min-height: 510px;
  border: 1px solid #bdd1e7;
  border-radius: 28px;
  background:
    linear-gradient(rgba(18, 104, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 220, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #eaf3fd);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow-lg);
}

.asset-slot-chrome {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  padding-inline: 17px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.asset-slot-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bfd0e2;
}

.asset-slot-content {
  display: grid;
  min-height: 460px;
  place-content: center;
  justify-items: center;
  padding: 38px;
  text-align: center;
}

.asset-slot-label {
  margin-bottom: 15px;
  padding: 6px 10px;
  border: 1px solid #bfd5ec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-slot-content strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.asset-slot-content p {
  max-width: 360px;
  margin: 8px 0 20px;
  color: var(--ink-soft);
}

.asset-slot-content small {
  color: #788a9e;
}

/* Questionnaire */
.questionnaire-section {
  overflow: hidden;
}

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

.questionnaire-flow::before {
  position: absolute;
  z-index: -1;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.questionnaire-flow li {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--navy);
  text-align: center;
}

.questionnaire-flow li span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #bfd4eb;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(14, 61, 113, 0.07);
  font-size: 0.76rem;
  font-weight: 850;
}

.questionnaire-flow li:last-child span {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.questionnaire-flow li b {
  font-size: 0.88rem;
}

.benefit-stack {
  display: grid;
  gap: 12px;
  width: min(100%, 900px);
  margin-inline: auto;
}

.benefit-stack article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-stack article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
}

.benefit-stack h3 {
  margin-bottom: 5px;
}

.benefit-stack p {
  margin: 0;
  color: var(--ink-soft);
}

/* Devices */
.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(27, 135, 226, 0.26), transparent 33%),
    radial-gradient(circle at 5% 100%, rgba(10, 185, 179, 0.13), transparent 28%),
    var(--navy-deep);
}

.section-heading-light h2,
.section-heading-light > p:last-child {
  color: white;
}

.section-heading-light > p:last-child {
  opacity: 0.68;
}

.device-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.72fr;
  align-items: end;
  gap: 22px;
}

.device-card {
  margin: 0;
}

.device-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: white;
  box-shadow: 0 28px 70px rgba(0, 12, 31, 0.35);
}

.device-desktop .device-screen {
  height: 440px;
  border-radius: 20px 20px 10px 10px;
}

.device-tablet .device-screen {
  height: 360px;
  border: 8px solid #142d4e;
  border-radius: 24px;
}

.device-phone {
  max-width: 245px;
  justify-self: center;
}

.device-phone .device-screen {
  height: 440px;
  border: 7px solid #152b49;
  border-radius: 32px;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.device-tablet .device-screen img {
  object-fit: cover;
  object-position: left top;
}

.device-card figcaption {
  padding: 23px 4px 0;
}

.device-card figcaption span {
  color: #8fd8ff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.device-card figcaption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* Migration */
.migration-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 78px;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f5f9fe);
  box-shadow: var(--shadow-sm);
}

.migration-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

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

.migration-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 62px;
}

.migration-steps li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: -20px;
  left: 20px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.migration-steps span {
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.migration-steps p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

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

.step-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.step-card > span {
  display: block;
  margin-bottom: 66px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.pricing-card {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #b9d4ee;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow-lg);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-topline span {
  color: var(--navy);
  font-size: 1.23rem;
  font-weight: 800;
}

.pricing-topline b {
  padding: 7px 11px;
  border-radius: 999px;
  background: #dff4ee;
  color: #087858;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 34px 0;
}

.price small,
.price span {
  color: var(--ink-soft);
}

.price strong {
  color: var(--navy);
  font-size: clamp(3.7rem, 7vw, 5.8rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-bottom: 34px;
}

.pricing-features li {
  position: relative;
  padding-left: 25px;
  color: #344c68;
  font-size: 0.92rem;
}

.pricing-features li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 850;
}

.price-note {
  margin: 13px 0 0;
  color: #74869a;
  font-size: 0.78rem;
  text-align: center;
}

/* CTAs */
.mid-cta-section {
  padding-top: 16px;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(36px, 6vw, 66px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 5%, rgba(71, 195, 244, 0.34), transparent 35%),
    linear-gradient(135deg, #0b5bc5, #082d63);
  box-shadow: 0 28px 70px rgba(7, 48, 98, 0.24);
}

.mid-cta h2 {
  max-width: 730px;
  margin-bottom: 12px;
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
}

.mid-cta p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mid-cta .button {
  flex: 0 0 auto;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 54px 25px 0;
  color: var(--ink-soft);
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.contact-intro h2 span {
  display: block;
  color: var(--blue);
}

.contact-direct {
  display: grid;
  gap: 2px;
  margin-top: 40px;
}

.contact-direct small {
  color: #74869a;
}

.contact-direct a {
  color: var(--navy);
  font-weight: 780;
}

.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading span {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-bottom: 22px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 49px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(18, 104, 220, 0.11);
}

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

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-message {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.form-message.is-success,
.form-message.is-error {
  display: block;
}

.form-message.is-success {
  border: 1px solid #b9e3d7;
  background: #eaf8f4;
  color: #08684d;
}

.form-message.is-error {
  border: 1px solid #efc9c9;
  background: #fff2f2;
  color: #9b3030;
}

.form-privacy {
  margin: 12px 0 0;
  color: #7d8da0;
  font-size: 0.74rem;
  text-align: center;
}

/* Product depth and trust */
.capability-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
  margin-top: 64px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f8fbff, #edf5ff);
}

.capability-intro h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
}

.capability-intro > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.capability-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(190, 211, 235, 0.82);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
}

.capability-list strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.capability-list span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.48;
}

.trust-section {
  padding-block: 104px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 80px;
}

.trust-layout h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.trust-layout > div:first-child > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #bfd0e5;
  font-size: 1.05rem;
}

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

.trust-points article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(174, 210, 245, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-points article > span {
  color: #7fd2ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-points strong {
  color: white;
}

.trust-points p {
  margin: 5px 0 0;
  color: #b9cce2;
  font-size: 0.86rem;
}

/* Footer */
.footer {
  padding-top: 72px;
  border-top: 1px solid var(--line);
  background: #f7fafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.footer-brand-block img {
  width: 150px;
  height: auto;
}

.footer-brand-block p {
  max-width: 280px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer nav,
.footer-contact-block,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.footer strong {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.88rem;
}

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

.footer-legal span {
  color: #8795a6;
}

.footer-cookie-button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #66788d;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #7d8da0;
  font-size: 0.76rem;
}

/* Analytics consent */
.cookie-consent {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 24px;
  border: 1px solid #bdd1e7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(3, 36, 76, 0.2);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  color: var(--navy);
  font-size: 1rem;
}

.cookie-consent p {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent .button {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.button-cookie-secondary {
  border: 1px solid #c9d8e8;
  background: white;
  color: var(--navy);
}

.button-cookie-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Reveal motion */
body.is-enhanced .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

body.is-enhanced .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

body.is-enhanced .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 28px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .desktop-frame {
    height: 520px;
  }

  .floating-note-bottom {
    display: none;
  }

  .feature-card {
    min-height: 280px;
    padding: 25px;
  }

  .showcase {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 45px;
  }

  .device-desktop .device-screen,
  .device-phone .device-screen {
    height: 390px;
  }

  .device-tablet .device-screen {
    height: 320px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(100% - 36px, 760px);
  }

  .section {
    padding-block: 88px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    max-height: 0;
    gap: 22px;
    overflow: hidden;
    padding: 0 18px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms var(--ease), padding 260ms var(--ease), opacity 160ms ease, visibility 160ms ease;
  }

  .nav-panel.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 22px 28px;
    border-color: var(--line);
    box-shadow: 0 22px 45px rgba(7, 43, 86, 0.12);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-action {
    width: 100%;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 70px 80px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .desktop-frame {
    left: 2%;
    width: 88%;
  }

  .phone-frame {
    right: 2%;
  }

  .floating-note-top {
    left: 0;
  }

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

  .showcase,
  .migration-card,
  .pricing-layout,
  .faq-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .showcase {
    gap: 54px;
  }

  .asset-slot {
    min-height: 460px;
  }

  .asset-slot-content {
    min-height: 410px;
  }

  .device-gallery {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .device-phone {
    grid-column: 1 / -1;
    width: 230px;
    margin-top: 24px;
  }

  .migration-card {
    gap: 45px;
  }

  .pricing-layout {
    gap: 44px;
  }

  .pricing-card {
    width: min(100%, 680px);
    justify-self: center;
  }

  .mid-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-layout {
    gap: 46px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .contact-section {
    gap: 48px;
  }

  .capability-panel,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-layout {
    gap: 46px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 28px, 600px);
  }

  .section {
    padding-block: 68px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand {
    width: 130px;
  }

  .hero {
    gap: 30px;
    padding-block: 52px 62px;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cta-note {
    margin-left: 0;
    text-align: center;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .desktop-frame {
    top: 8px;
    left: 0;
    width: 94%;
    height: 370px;
    border-radius: 18px;
    transform: none;
  }

  .phone-frame {
    right: -4px;
    bottom: 0;
    width: 118px;
    height: 245px;
    padding: 5px;
    border-width: 3px;
    border-radius: 24px;
  }

  .phone-frame img {
    border-radius: 17px;
  }

  .phone-speaker {
    top: 4px;
    width: 34px;
    height: 8px;
  }

  .floating-note {
    min-width: 150px;
    padding: 10px 12px;
  }

  .floating-note-top {
    top: 45px;
    left: -5px;
  }

  .floating-note-bottom {
    display: none;
  }

  .proof-inner {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding-block: 20px;
    text-align: center;
  }

  .proof-points {
    gap: 10px;
    font-size: 0.68rem;
  }

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

  .feature-grid,
  .steps-grid,
  .device-gallery {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .capability-panel {
    gap: 30px;
    margin-top: 42px;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .trust-section {
    padding-block: 72px;
  }

  .trust-points article {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .asset-slot {
    min-height: 390px;
    border-radius: 20px;
  }

  .radiograph-shot {
    border-radius: 20px;
  }

  .asset-slot-content {
    min-height: 345px;
    padding: 24px;
  }

  .questionnaire-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 45px;
  }

  .questionnaire-flow::before {
    top: 24px;
    bottom: 24px;
    left: 26px;
    width: 1px;
    height: auto;
  }

  .questionnaire-flow li {
    grid-template-columns: 54px 1fr;
    align-items: center;
    justify-items: start;
    gap: 16px;
    min-height: 72px;
    text-align: left;
  }

  .device-card,
  .device-phone {
    width: 100%;
    max-width: none;
    grid-column: auto;
    margin-top: 0;
  }

  .device-desktop .device-screen,
  .device-tablet .device-screen {
    height: 310px;
  }

  .device-phone .device-screen {
    width: min(210px, 70%);
    height: 410px;
    margin-inline: auto;
  }

  .migration-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .step-card {
    min-height: auto;
    padding: 26px;
  }

  .step-card > span {
    margin-bottom: 35px;
  }

  .pricing-card {
    padding: 27px 22px;
    border-radius: 24px;
  }

  .pricing-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .price {
    flex-wrap: wrap;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .mid-cta {
    gap: 28px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .mid-cta .button {
    width: 100%;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 1rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-form {
    padding: 25px 19px;
    border-radius: 24px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer {
    padding-top: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 18px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 18px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent .button {
    width: 100%;
    padding-inline: 12px;
  }
}

@media (max-width: 375px) {
  .shell {
    width: calc(100% - 22px);
  }

  .hero-visual {
    min-height: 390px;
  }

  .desktop-frame {
    height: 335px;
  }

  .phone-frame {
    width: 105px;
    height: 218px;
  }

  .floating-note-top {
    display: none;
  }

  .proof-points span {
    font-size: 0.62rem;
  }
}

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

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

  body.is-enhanced .reveal {
    opacity: 1;
    transform: none;
  }
}
