@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #08253a;
  --ink-2: #173e57;
  --muted: #527086;
  --blue: #1769e0;
  --blue-dark: #0e55bd;
  --cyan: #0faebc;
  --ice: #eefaff;
  --line: #cfe2ee;
  --white: #ffffff;
  --orange: #ff6b2c;
  --orange-dark: #df4e16;
  --navy: #062a42;
  --shadow: 0 24px 70px rgba(8, 46, 73, 0.13);
  --shadow-soft: 0 14px 40px rgba(8, 46, 73, 0.09);
  --radius: 26px;
  --radius-small: 15px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.38);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility-bar {
  background: var(--navy);
  color: #dff7ff;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #36d5a6;
  box-shadow: 0 0 0 5px rgba(54, 213, 166, 0.15);
}

.language-switcher {
  display: flex;
  align-items: center;
  color: #7596a9;
}

.lang-button {
  border: 0;
  padding: 6px 8px;
  color: #9fc0d1;
  background: transparent;
  font-size: inherit;
  font-weight: 700;
}

.lang-button.active {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(180, 209, 224, 0.75);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.22);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue);
  transition: transform 0.2s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(23, 105, 224, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(23, 105, 224, 0.28);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover {
  border-color: #9cc6dc;
  background: white;
}

.button-orange {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.22);
}

.button-orange:hover {
  background: var(--orange-dark);
}

.button-small {
  min-height: 44px;
  padding: 11px 15px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 72px 0 80px;
  background:
    linear-gradient(90deg, rgba(236, 250, 255, 0.88) 0%, rgba(248, 253, 255, 0.97) 45%, white 100%);
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  width: 370px;
  height: 370px;
  top: 65px;
  left: -160px;
  background: rgba(68, 200, 225, 0.12);
}

.hero-orb-two {
  width: 300px;
  height: 300px;
  right: -130px;
  bottom: 30px;
  background: rgba(23, 105, 224, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 98px);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #087f95;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.eyebrow.light {
  color: #66e0e9;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.99;
}

h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.07;
}

h3 {
  font-size: 26px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

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

.hero-pills {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.check {
  color: #098b83;
  font-weight: 900;
}

.hero-visual {
  padding-inline: 14px;
}

.photo-frame {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid #c5dfea;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.photo-frame > img {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  object-fit: cover;
}

.photo-shade {
  position: absolute;
  inset: auto 10px 10px;
  height: 34%;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(transparent, rgba(3, 33, 51, 0.2));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  border: 1px solid rgba(199, 222, 233, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.demo-ready {
  top: 25px;
  right: -14px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.three-steps {
  top: 40%;
  right: -38px;
  width: 170px;
  flex-direction: column;
  padding: 18px;
  border-radius: 18px;
}

.three-steps strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.three-steps span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.mobile-card {
  right: auto;
  bottom: -24px;
  left: -28px;
  max-width: 230px;
  flex-direction: column;
  padding: 16px 18px;
  border-color: var(--navy);
  border-radius: 18px;
  color: white;
  background: var(--navy);
}

.mobile-card span {
  color: #62dce7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.mobile-card strong {
  margin-top: 4px;
  line-height: 1.35;
}

.quick-path {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}

.quick-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 38px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 75% 30%, rgba(26, 155, 181, 0.32), transparent 36%),
    var(--navy);
  box-shadow: 0 20px 50px rgba(5, 39, 61, 0.2);
}

.quick-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(27px, 3.1vw, 40px);
}

.quick-panel p:last-child {
  max-width: 680px;
  margin: 0;
  color: #bcd5e2;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 290px;
  position: relative;
  overflow: hidden;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  box-shadow: 0 8px 30px rgba(6, 42, 66, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -60px;
  right: -50px;
  border-radius: 50%;
  background: rgba(23, 105, 224, 0.06);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #a5cee1;
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: var(--ice);
  border: 1px solid rgba(23, 105, 224, 0.1);
}

.service-icon svg,
.service-icon-small svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.service-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card-actions button,
.service-card-actions a {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 800;
}

.service-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-actions a:hover span:first-child,
.service-card-actions a:focus-visible span:first-child {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-2) !important;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}

.service-card.open .service-detail {
  max-height: 110px;
  margin-top: -7px;
  opacity: 1;
}

.service-spotlight {
  margin-top: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.service-spotlight img {
  min-height: 330px;
  height: 100%;
  object-fit: cover;
}

.service-spotlight > div {
  padding: clamp(30px, 4.5vw, 54px);
  color: white;
}

.service-spotlight > div > span {
  color: #62dce7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.service-spotlight h3 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 39px);
}

.service-spotlight p {
  color: #b9d2df;
}

.service-spotlight a {
  display: inline-flex;
  margin-top: 9px;
  color: #68e2e9;
  font-weight: 800;
}

.process-section {
  background: linear-gradient(180deg, #f1faff, #fbfdff);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.process-photo {
  position: relative;
}

.process-photo img {
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: -28px;
  bottom: -28px;
  max-width: 270px;
  padding: 20px 22px;
  border-radius: 17px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-note span,
.mini-label {
  display: block;
  margin-bottom: 5px;
  color: #65dce5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.image-note strong {
  display: block;
  line-height: 1.38;
}

.steps {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 19px;
  padding-bottom: 27px;
}

.steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 1px;
  top: 48px;
  bottom: 5px;
  left: 26px;
  background: #a9d8e6;
}

.steps li > span {
  width: 54px;
  height: 54px;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid #b9dbe8;
  border-radius: 15px;
  color: var(--blue);
  background: white;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin: 2px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

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

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
}

.areas-copy {
  padding: 35px 0;
}

.areas-copy > p:not(.eyebrow):not(.legal-note) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.area-tags {
  margin: 30px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: white;
  font-weight: 700;
}

.legal-note {
  color: var(--muted);
  font-size: 13px;
}

.benefit-card {
  padding: 42px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(33, 169, 196, 0.27), transparent 42%),
    var(--navy);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  max-width: 420px;
  margin-bottom: 28px;
  font-size: clamp(30px, 3vw, 42px);
}

.benefit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit-card li > span {
  color: #65dce5;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.benefit-card strong {
  display: block;
  margin-bottom: 2px;
}

.benefit-card p {
  margin: 0;
  color: #b7d2df;
  font-size: 14px;
}

.quote-section {
  background: linear-gradient(180deg, #eff9fd 0%, #f9fcfe 100%);
}

.quote-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.quote-intro .eyebrow {
  justify-content: center;
}

.quote-intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.quote-card {
  max-width: 940px;
  min-height: 540px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.quote-top > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-top strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 3vw, 31px);
}

.demo-chip {
  padding: 7px 11px;
  border-radius: 999px;
  color: #087f74;
  background: #e4fbf5;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.progress-track {
  height: 7px;
  margin: 25px 0 34px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5f0f5;
}

.progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.3s ease;
}

.form-step {
  display: none;
  min-height: 300px;
}

.form-step.active {
  display: block;
  animation: step-in 0.25s ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.option-card,
.choice-card {
  position: relative;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfdff;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.option-card {
  min-height: 118px;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
}

.option-card:hover,
.choice-card:hover {
  transform: translateY(-2px);
  border-color: #8fc7dc;
}

.option-card.selected,
.choice-card:has(input:checked) {
  border-color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.09);
}

.option-card input,
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:has(input:focus-visible),
.choice-card:has(input:focus-visible) {
  outline: 3px solid rgba(23, 105, 224, 0.38);
  outline-offset: 3px;
}

.option-grid[aria-invalid="true"],
.choice-list[aria-invalid="true"] {
  padding: 8px;
  border: 2px solid #d53e37;
  border-radius: 18px;
}

.option-card .service-icon-small {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.option-card strong {
  line-height: 1.3;
}

.field-title {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.choice-list {
  display: grid;
  gap: 12px;
}

.choice-card {
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.choice-card::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid #a4bdcb;
  border-radius: 50%;
}

.choice-card:has(input:checked)::before {
  border: 6px solid var(--blue);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small {
  color: var(--muted);
  font-size: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-grid.compact {
  gap: 12px;
}

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

label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.field-hint {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.dynamic-service-field {
  padding: 15px;
  border: 1px solid #c7e1ed;
  border-radius: 14px;
  background: #f4fbff;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcd5e1;
  border-radius: 11px;
  color: var(--ink);
  background: white;
}

input,
select {
  height: 49px;
  padding: 0 13px;
}

textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 105, 224, 0.12);
}

.invalid {
  border-color: #d53e37 !important;
  background: #fffafa !important;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #d53e37 !important;
}

.upload-box {
  min-height: 90px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px dashed #9abfd0;
  border-radius: 14px;
  background: #f7fcff;
}

.upload-box > span {
  margin: 0;
}

.upload-box strong,
.upload-box small {
  display: block;
}

.upload-box small {
  max-width: 500px;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
}

.upload-box input {
  width: auto;
  max-width: 210px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-preview img {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
}

.summary-box {
  margin-bottom: 23px;
  padding: 17px 19px;
  border-radius: 14px;
  background: var(--ice);
}

.summary-box strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
}

.summary-box p {
  margin: 0;
  color: var(--muted);
}

.summary-box dl {
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.summary-box dl > div {
  padding: 11px 12px;
  border: 1px solid #d1e8f2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.summary-box dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-box dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.scope-box {
  margin-top: 20px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 10px;
  background: #f3fbfc;
}

.scope-box span {
  color: #087f74;
  font-weight: 800;
}

.scope-box p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

#prev-step {
  visibility: hidden;
}

#submit-quote {
  display: none;
  margin-left: auto;
}

.form-alert {
  display: none;
  margin: -15px 0 24px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.form-alert.visible {
  display: block;
}

.form-alert.error {
  border: 1px solid #f3b9b6;
  color: #8a2824;
  background: #fff3f2;
}

.form-alert.success {
  border: 1px solid #9edaca;
  color: #176557;
  background: #effbf7;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.otmatech-section {
  background: #f9fcfe;
}

.otmatech-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(29, 162, 194, 0.25), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow);
}

.otmatech-copy {
  padding: clamp(38px, 6vw, 76px);
}

.otmatech-copy h2 {
  max-width: 650px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.otmatech-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #bad3df;
  font-size: 18px;
}

.otmatech-benefits {
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.otmatech-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.otmatech-benefits li span:first-child {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #5fdccc;
  font-size: 12px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: #6ce1eb;
  font-weight: 800;
}

.contact-card {
  margin: 18px;
  padding: clamp(25px, 3vw, 38px);
  border-radius: 22px;
  color: var(--ink);
  background: white;
}

.contact-card h3 {
  margin-bottom: 22px;
  font-size: 29px;
}

.contact-card > label {
  display: block;
  margin-bottom: 12px;
}

.contact-card .form-alert {
  margin-top: 0;
}

.button.full {
  width: 100%;
}

.light-note {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-button {
  width: 100%;
  min-height: 74px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.faq-button span:last-child {
  color: var(--blue);
  font-size: 24px;
  transition: transform 0.2s ease;
}

.faq-button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  padding: 64px 0 28px;
  color: #c3d8e2;
  background: #031f31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr;
  gap: 60px;
}

.footer-brand {
  color: white;
}

.footer-brand small {
  color: #91afbd;
}

.footer-grid > div:first-child > p {
  max-width: 440px;
  color: #8fabba;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid strong {
  color: white;
}

.footer-grid a {
  font-size: 14px;
}

.footer-grid a:hover {
  color: #63dce6;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7897a7;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  max-width: 800px;
}

.privacy-copy {
  margin-top: 8px !important;
  color: #8ba5b3;
}

.mobile-action-bar {
  display: none;
}

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

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

@media (max-width: 1080px) {
  nav {
    gap: 17px;
  }

  nav a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.84fr;
    gap: 45px;
  }

  .three-steps {
    right: -18px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

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

  nav {
    position: fixed;
    top: 114px;
    right: 15px;
    left: 15px;
    max-height: 0;
    margin: 0;
    padding: 0 22px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0 solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
  }

  nav.open {
    max-height: 470px;
    padding: 12px 22px;
    border-width: 1px;
    opacity: 1;
  }

  nav a {
    padding: 13px 2px;
    border-bottom: 1px solid #edf3f6;
    font-size: 16px;
  }

  .hero {
    min-height: 0;
    padding-top: 58px;
  }

  .hero-grid,
  .process-grid,
  .areas-grid,
  .service-spotlight,
  .otmatech-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-pills {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .process-photo {
    max-width: 650px;
  }

  .process-grid {
    gap: 75px;
  }

  .areas-grid,
  .faq-grid {
    gap: 38px;
  }

  .otmatech-panel {
    gap: 0;
  }

  .contact-card {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 67px;
  }

  .utility-inner {
    min-height: 32px;
  }

  .utility-inner p {
    max-width: 72%;
    font-size: 12px;
    line-height: 1.3;
  }

  .nav-row {
    min-height: 67px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 12px;
  }

  nav {
    top: 101px;
  }

  .hero {
    padding: 42px 0 70px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

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

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

  .hero-pills li {
    justify-content: center;
  }

  .hero-grid {
    gap: 43px;
  }

  .hero-visual {
    padding-inline: 0;
  }

  .photo-frame {
    border-radius: 25px;
  }

  .photo-frame > img {
    border-radius: 19px;
  }

  .photo-shade {
    border-radius: 0 0 19px 19px;
  }

  .demo-ready {
    top: 20px;
    right: 18px;
    font-size: 12px;
  }

  .three-steps {
    top: auto;
    right: 18px;
    bottom: 54px;
    width: 150px;
  }

  .mobile-card {
    bottom: -26px;
    left: 18px;
    max-width: 200px;
  }

  .quick-path {
    margin-top: 0;
  }

  .quick-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 27px 22px;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading > p,
  .quote-intro > p:last-child {
    font-size: 16px;
  }

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

  .service-spotlight img {
    min-height: 245px;
  }

  .service-card {
    min-height: 255px;
  }

  .image-note {
    right: 13px;
    bottom: -35px;
    left: 13px;
    max-width: none;
  }

  .areas-copy {
    padding: 0;
  }

  .benefit-card {
    padding: 30px 23px;
  }

  .quote-card {
    min-height: 0;
    padding: 23px 17px;
    border-radius: 20px;
  }

  .quote-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .progress-track {
    margin-top: 20px;
  }

  .form-step {
    min-height: 0;
  }

  .option-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .summary-box dl {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: 96px;
  }

  .scope-box {
    grid-template-columns: 1fr;
  }

  .scope-box p {
    grid-column: auto;
  }

  .upload-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions {
    flex-wrap: wrap;
  }

  .form-actions .button {
    flex: 1;
  }

  #submit-quote {
    width: 100%;
  }

  .otmatech-copy {
    padding: 38px 23px;
  }

  .contact-card {
    margin: 0 10px 10px;
    padding: 25px 18px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    height: 67px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 30px rgba(5, 37, 58, 0.1);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
  }

  .mobile-action-bar a + a {
    color: white;
    background: var(--navy);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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