:root {
  --ink: #0b1220;
  --ink-soft: #172033;
  --text: #1c2940;
  --muted: #66738a;
  --line: #dfe5ee;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --blue: #2f6df6;
  --blue-dark: #1d4ed8;
  --cyan: #31c6f5;
  --green: #2ccf94;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 30px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 36px 90px rgba(11, 18, 32, 0.18);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

::selection {
  color: #fff;
  background: var(--blue);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

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

.brand-mark rect {
  fill: rgba(255, 255, 255, 0.12);
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.2;
}

.brand-mark path {
  fill: #fff;
}

.brand-dot {
  color: var(--cyan);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  position: relative;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible {
  color: #fff;
}

.nav-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-linkedin svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 14px;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 13px 30px rgba(47, 109, 246, 0.25);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(47, 109, 246, 0.34);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(49, 198, 245, 0.55);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
  box-shadow: none;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(11, 18, 32, 0.16);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: rgba(11, 18, 32, 0.28);
  box-shadow: var(--shadow-sm);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 13px 30px rgba(11, 18, 32, 0.16);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--ink);
  background: #edf5ff;
  border-color: #edf5ff;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 160px 0 100px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 20%, rgba(49, 198, 245, 0.12), transparent 30%),
    radial-gradient(circle at 8% 75%, rgba(47, 109, 246, 0.18), transparent 36%),
    linear-gradient(132deg, #080e19 0%, #0b1425 52%, #0b1830 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -150px;
  background: rgba(47, 109, 246, 0.14);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  bottom: -190px;
  left: 16%;
  background: rgba(49, 198, 245, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span:not(.eyebrow-dot) {
  color: var(--cyan);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(49, 198, 245, 0.12);
}

.eyebrow-light {
  color: var(--blue);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.25vw, 76px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  color: #a8d8ff;
}

.hero-lead {
  max-width: 700px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-top: 48px;
  padding-top: 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust div {
  padding-right: 18px;
}

.hero-trust div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.hero-trust span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  padding: 20px 20px 8px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.visual-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: -160px;
  background: rgba(49, 198, 245, 0.12);
  border-radius: 50%;
  filter: blur(5px);
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 5px 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #bdfbe3;
  background: rgba(44, 207, 148, 0.09);
  border: 1px solid rgba(44, 207, 148, 0.18);
  border-radius: 999px;
  font-size: 9px;
}

.status-pill i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(44, 207, 148, 0.1);
}

.diagnostic-illustration {
  width: 100%;
  height: auto;
}

.network-line {
  fill: none;
  stroke: rgba(105, 182, 255, 0.44);
  stroke-width: 1.8;
}

.network-line-dashed {
  stroke-dasharray: 8 8;
}

.node rect {
  fill: rgba(17, 34, 59, 0.84);
  stroke: rgba(135, 195, 255, 0.35);
  stroke-width: 1.2;
}

.node path,
.node circle {
  fill: none;
  stroke: #8bc7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.monitor-shadow {
  fill: rgba(0, 0, 0, 0.22);
}

.monitor-body {
  fill: #eaf2f9;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2;
}

.monitor-screen {
  stroke: rgba(93, 162, 226, 0.23);
  stroke-width: 1.2;
}

.scan-panel {
  fill: rgba(5, 11, 20, 0.42);
  stroke: rgba(129, 192, 250, 0.21);
}

.scan-glow {
  fill: rgba(87, 169, 247, 0.55);
}

.scan-mid {
  fill: rgba(31, 71, 112, 0.82);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
}

.scan-detail {
  fill: rgba(226, 241, 253, 0.45);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.2;
}

.scan-mark {
  fill: #fff;
}

.scan-cross {
  fill: none;
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 1;
}

.scan-data rect,
.scan-data circle {
  fill: rgba(131, 195, 255, 0.42);
}

.scan-data path {
  stroke: rgba(131, 195, 255, 0.38);
  stroke-width: 4;
  stroke-linecap: round;
}

.monitor-led {
  fill: var(--green);
}

.monitor-stand,
.monitor-base {
  fill: #d8e4ee;
}

.floating-chip rect {
  fill: rgba(11, 24, 43, 0.9);
  stroke: rgba(132, 193, 252, 0.32);
}

.floating-chip circle {
  fill: var(--green);
}

.floating-chip path {
  fill: none;
  stroke: #80bffd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chip-one,
.node-a,
.node-d {
  animation: float 5.5s ease-in-out infinite;
}

.chip-two,
.node-b,
.node-c {
  animation: float 6.4s ease-in-out -1.5s infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-heading h2,
.process-copy h2,
.about-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 810;
  letter-spacing: -0.047em;
  line-height: 1.08;
}

.section-heading > p,
.process-copy > p,
.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.section-services {
  background: #fff;
}

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

.service-card {
  position: relative;
  min-height: 590px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid #e7ebf1;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #d4dce8;
  box-shadow: var(--shadow-sm);
}

.service-card-featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 2%, rgba(49, 198, 245, 0.16), transparent 26%),
    linear-gradient(145deg, #0b1425, #122643);
  border-color: #1e3657;
}

.service-card-featured::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  bottom: -100px;
  background: rgba(47, 109, 246, 0.17);
  border-radius: 50%;
}

.service-number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: rgba(11, 18, 32, 0.18);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.35);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid #e2e8f1;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
}

.service-card-featured .service-icon {
  color: #a8d8ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-featured .service-kicker {
  color: var(--cyan);
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  font-weight: 790;
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.service-card-featured h3 {
  color: #fff;
}

.service-card > p:not(.service-kicker) {
  margin: 19px 0 0;
  color: var(--muted);
}

.service-card-featured > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.65);
}

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

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: #445269;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.service-card-featured .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-featured .check-list li::before {
  border-color: var(--cyan);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 33px;
}

.tag-list span {
  padding: 7px 10px;
  color: #43536b;
  background: #fff;
  border: 1px solid #e1e7ef;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.service-card-featured .text-link {
  color: #fff;
}

.section-process {
  background: var(--surface-soft);
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 94px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-copy > p {
  margin: 25px 0 32px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-top: 1px solid #dce3ec;
}

.process-list li:last-child {
  border-bottom: 1px solid #dce3ec;
}

.process-list > li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.05);
}

.process-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.section-about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 94px;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 470px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(49, 198, 245, 0.19), transparent 28%),
    radial-gradient(circle at 20% 86%, rgba(47, 109, 246, 0.24), transparent 35%),
    linear-gradient(145deg, #0b1220, #122745);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.about-mark {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 860;
  letter-spacing: -0.075em;
  line-height: 1;
  text-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.about-mark span {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 0.2em;
  letter-spacing: 0.16em;
  text-align: right;
}

.about-signal {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.about-signal i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 207, 148, 0.12);
}

.about-copy > p {
  margin-top: 23px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link-dark {
  color: var(--ink);
}

.section-cta {
  padding-top: 10px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 62px;
  align-items: center;
  padding: 62px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 13%, rgba(49, 198, 245, 0.3), transparent 26%),
    linear-gradient(120deg, #2359d2, #2f6df6 52%, #168fca);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 70px rgba(47, 109, 246, 0.24);
}

.cta-card .eyebrow {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-card h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}

.cta-card p {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.site-footer {
  margin-top: 100px;
  padding: 58px 0 34px;
  color: rgba(255, 255, 255, 0.6);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 54px;
  align-items: start;
}

.brand-footer {
  color: #fff;
}

.footer-grid > div:first-child > p {
  margin: 14px 0 0;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  font-size: 13px;
}

.footer-links a,
.footer-meta a {
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.3vw, 66px);
  }

  .service-card {
    padding: 29px;
  }

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

  .process-grid,
  .about-grid {
    gap: 60px;
  }
}

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

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

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

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

  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.26);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav .button {
    margin-top: 14px;
    border-bottom: 0;
  }

  .hero {
    padding-top: 135px;
  }

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

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

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

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

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-copy {
    position: static;
  }

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

  .about-panel {
    min-height: 400px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .primary-nav {
    inset: 74px 0 auto;
  }

  .hero {
    min-height: 0;
    padding: 118px 0 78px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

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

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

  .hero-actions {
    display: grid;
  }

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

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-trust div,
  .hero-trust div + div {
    padding: 0;
    border: 0;
  }

  .visual-card {
    padding: 14px 10px 2px;
    border-radius: 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .about-copy h2,
  .cta-card h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .section-heading > p,
  .process-copy > p,
  .about-copy > p {
    font-size: 16px;
  }

  .service-card {
    padding: 27px 23px;
    border-radius: 20px;
  }

  .service-icon {
    margin-bottom: 34px;
  }

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

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .process-list > li > span {
    width: 42px;
    height: 42px;
  }

  .about-panel {
    min-height: 320px;
    border-radius: 25px;
  }

  .about-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-card {
    padding: 36px 24px;
    border-radius: 24px;
  }

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

  .site-footer {
    margin-top: 60px;
  }

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

  .footer-meta {
    align-items: flex-start;
  }
}

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

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

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

/* Contact form */
.section-contact {
  background: #f4f7fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
  margin: 18px 0 22px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.contact-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.contact-direct {
  display: grid;
  gap: 5px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 14px;
}

.contact-direct a {
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid rgba(18, 34, 55, .1);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(25, 48, 80, .1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label:not(.form-consent) {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 34, 55, .18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .11);
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.form-consent span,
.form-note {
  color: var(--muted);
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -5px 0 0;
}

.form-status {
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #09643c;
  background: #eaf8f1;
  border: 1px solid #b8e7cf;
}

.form-status.is-error {
  color: #932323;
  background: #fff0f0;
  border: 1px solid #f0c2c2;
}

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

@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-form .button {
    width: 100%;
  }
}
