:root {
  --navy-950: #051225;
  --navy-900: #071a33;
  --navy-800: #0b284b;
  --blue-700: #084bbd;
  --blue-600: #1260df;
  --blue-500: #2f7bf5;
  --blue-100: #dbeaff;
  --blue-50: #edf5ff;
  --ink: #091426;
  --muted: #5f7088;
  --line: #dfe8f2;
  --surface: #f6f9fd;
  --white: #fff;
  --shadow-sm: 0 10px 32px rgba(7, 32, 64, 0.08);
  --shadow-lg: 0 24px 70px rgba(4, 27, 60, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 82px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

[data-phone-link][aria-disabled="true"] {
  cursor: default;
}

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

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

:focus-visible {
  outline: 3px solid #73aaff;
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

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

.section {
  padding: 116px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #a9ccff;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 14px 34px rgba(18, 96, 223, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(18, 96, 223, 0.38);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(5, 18, 37, 0.22);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.2);
}

.button-full {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  isolation: isolate;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 26, 51, 0.08);
  box-shadow: 0 8px 32px rgba(5, 25, 51, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.menu-active {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  background: #f3f7fb;
  border-color: #dce6f0;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.site-header.menu-active .header-inner {
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

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

.brand-name {
  color: currentColor;
  font-size: 1.58rem;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.brand-name strong {
  color: #71a8ff;
  font-weight: 820;
}

.site-header.is-scrolled .brand-name strong,
.site-header.menu-active .brand-name strong {
  color: var(--blue-600);
}

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

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.94rem;
  font-weight: 650;
  opacity: 0.9;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-header.is-scrolled .header-call {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.header-call svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.site-header.menu-active .menu-toggle {
  background: #e4eefb;
}

.mobile-menu {
  position: absolute;
  z-index: 1;
  inset: var(--header-height) 0 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  padding: 28px 24px max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: #f3f7fb;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  margin: 0 0 32px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid #dbe6f1;
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(7, 34, 68, 0.09);
}

.mobile-menu-label {
  margin: 0 0 13px 4px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-size: clamp(1.25rem, 5vw, 1.55rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 35, 0.97) 0%, rgba(5, 25, 50, 0.91) 34%, rgba(5, 25, 50, 0.46) 63%, rgba(5, 20, 39, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 15, 31, 0.34), transparent 46%);
}

.hero-grid {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 46px);
  padding-bottom: 74px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.5rem, 7.4vw, 7.2rem);
  font-weight: 830;
  letter-spacing: -0.072em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 span {
  color: #77aaff;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #d9e6f7;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.58;
}

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

.hero-proof {
  display: flex;
  gap: 28px;
  margin: 32px 0 0;
  padding: 0;
  color: #dbe8f8;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #73aaff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transform: rotate(90deg);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 136px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 16px;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item div {
  display: grid;
  gap: 6px;
}

.trust-item strong {
  font-size: 1rem;
}

.trust-item div span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(47, 123, 245, 0.1), transparent 25rem),
    var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.66fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.why h2,
.pricing h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 33px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 64, 119, 0.11);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 0 rgba(9, 52, 106, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -95px;
  bottom: -105px;
  background: radial-gradient(circle, rgba(47, 123, 245, 0.15), transparent 68%);
  content: "";
  transition: transform 0.3s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(47, 123, 245, 0.38);
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.service-card:hover::before {
  transform: scale(1.35);
}

.service-card-featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-800), #0d4a8d);
  border-color: transparent;
}

.service-card-featured p,
.service-card-featured .service-number {
  color: #bfd0e6;
}

.service-number {
  position: absolute;
  top: 27px;
  right: 29px;
  color: #92a4ba;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: 17px;
}

.service-card-featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

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

.service-card h3 {
  margin: 34px 0 14px;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.67;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 780;
}

.service-card-featured a {
  color: #9fc5ff;
}

.service-card a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.service-card a:hover svg {
  transform: translateX(4px);
}

.why {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 30%, rgba(47, 123, 245, 0.22), transparent 29rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.why::after {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: -250px;
  border: 1px solid rgba(122, 175, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
}

.circuit-art {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(125, 178, 255, 0.28);
  stroke-width: 1.5;
}

.circuit-art circle:not(:first-child) {
  stroke-dasharray: 4 8;
}

.visual-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(47, 123, 245, 0.28);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.visual-core img {
  width: 126px;
  height: 126px;
}

.orbit-label {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 118px;
  padding: 14px 17px;
  color: #dceaff;
  background: rgba(9, 38, 74, 0.74);
  border: 1px solid rgba(133, 181, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.orbit-label strong {
  color: #73aaff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.orbit-label span {
  font-size: 0.83rem;
  font-weight: 700;
}

.orbit-label-one {
  top: 6%;
  left: 9%;
}

.orbit-label-two {
  right: 0;
  top: 47%;
}

.orbit-label-three {
  bottom: 4%;
  left: 16%;
}

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

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

.why-intro {
  max-width: 620px;
  margin: 30px 0 42px;
  color: #b9cbe0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.why-points {
  display: grid;
}

.why-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-points article > span {
  padding-top: 4px;
  color: #71a8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-points h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
}

.why-points p {
  margin: 0;
  color: #aebfd3;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(13, 65, 126, 0.055) 50%, transparent 50.1%),
    var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 110px;
  align-items: center;
}

.pricing-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 35px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.pricing-card {
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.pricing-badge {
  padding: 8px 12px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card-top svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-card li > span {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.pricing-card li div {
  display: grid;
  gap: 6px;
}

.pricing-card li strong {
  font-size: 1.04rem;
}

.pricing-card li small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 17%, rgba(47, 123, 245, 0.24), transparent 30rem),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 0.85fr);
  gap: 100px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 38px;
  color: #b9cbe0;
  font-size: 1.04rem;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-methods > a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(113, 168, 255, 0.5);
}

.contact-methods > a > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: #9cc2ff;
  background: rgba(47, 123, 245, 0.17);
  border-radius: 14px;
}

.contact-methods svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods div {
  display: grid;
  gap: 5px;
}

.contact-methods small {
  color: #9fb3cb;
}

.contact-methods strong {
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.24);
}

.form-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
}

.form-heading > span {
  font-size: 1.3rem;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #29374b;
  font-size: 0.82rem;
  font-weight: 740;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid #d9e2ed;
  border-radius: 12px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 15px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(47, 123, 245, 0.12);
}

.contact-form .is-invalid {
  border-color: #d43535;
  box-shadow: 0 0 0 4px rgba(212, 53, 53, 0.1);
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.is-error {
  color: #b12626;
}

.site-footer {
  color: #c5d3e4;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.brand-footer {
  color: var(--white);
}

.footer-main > div:first-child > p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #8298b3;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 70px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #91a5bd;
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 28px;
  color: #6f849e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.mobile-actions {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

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

  .hero {
    min-height: 740px;
  }

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

  .why-grid {
    grid-template-columns: minmax(350px, 0.78fr) 1fr;
    gap: 54px;
  }

  .pricing-grid,
  .contact-grid {
    gap: 58px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 84px 0;
  }

  .header-call {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 35, 0.96), rgba(5, 25, 50, 0.72)),
      linear-gradient(0deg, rgba(4, 15, 31, 0.5), transparent 55%);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: 0;
    padding: 17px 2px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-visual {
    width: min(100%, 500px);
    margin-inline: auto;
    order: 2;
  }

  .why-copy {
    order: 1;
  }

  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-card,
  .contact-form {
    max-width: 650px;
  }

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

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

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

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    gap: 8px;
  }

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

  .brand-name {
    font-size: 1.35rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 700px;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 16, 33, 0.56) 0%, rgba(5, 22, 44, 0.64) 35%, rgba(4, 17, 35, 0.97) 82%),
      linear-gradient(90deg, rgba(4, 17, 35, 0.72), rgba(5, 25, 50, 0.28));
  }

  .hero-grid {
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black, transparent 62%);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 74px);
    padding-bottom: 62px;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(3.25rem, 16vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 29px;
  }

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

  .hero-proof {
    display: grid;
    gap: 11px;
    margin-top: 26px;
    font-size: 0.84rem;
  }

  .scroll-cue {
    display: none;
  }

  .trust-strip {
    box-shadow: var(--shadow-sm);
  }

  .trust-icon {
    width: 46px;
    height: 46px;
  }

  .section-heading h2,
  .why h2,
  .pricing h2,
  .contact h2 {
    font-size: clamp(2.4rem, 12vw, 3.35rem);
  }

  .section-heading > p,
  .pricing-copy > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow),
  .why-intro {
    font-size: 0.98rem;
  }

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

  .service-card {
    min-height: 325px;
    padding: 27px;
  }

  .service-card h3 {
    margin-top: 28px;
    font-size: 1.35rem;
  }

  .why-visual {
    margin-top: 12px;
  }

  .visual-core {
    width: 130px;
    height: 130px;
  }

  .visual-core img {
    width: 94px;
    height: 94px;
  }

  .orbit-label {
    min-width: 102px;
    padding: 11px 13px;
  }

  .orbit-label span {
    font-size: 0.72rem;
  }

  .why-points article {
    grid-template-columns: 38px 1fr;
  }

  .pricing {
    background: var(--white);
  }

  .pricing-card,
  .contact-form {
    padding: 26px 22px;
    border-radius: 24px;
  }

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

  .contact-methods strong {
    font-size: 0.98rem;
  }

  .footer-main {
    padding-top: 52px;
    gap: 42px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 7px;
    padding-bottom: 23px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(7, 26, 51, 0.12);
    box-shadow: 0 -10px 34px rgba(6, 27, 54, 0.13);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy-900);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 790;
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--blue-600);
    border-color: var(--blue-600);
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@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;
  }

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

@media print {
  .site-header,
  .mobile-actions,
  .hero-media,
  .hero-grid,
  .scroll-cue,
  .contact-form {
    display: none !important;
  }

  .hero,
  .why,
  .contact,
  .site-footer {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .section,
  .hero-content {
    padding: 32px 0;
  }
}
