:root {
  --blue-900: #07184f;
  --blue-800: #08256f;
  --blue-700: #0a3cbd;
  --blue-600: #0b55df;
  --blue-500: #1684ff;
  --blue-100: #eef7ff;
  --blue-50: #f6fbff;
  --gold: #f6ad14;
  --ink: #091846;
  --muted: #3f4d75;
  --line: #d9e2f0;
  --paper: #ffffff;
  --page: #fbfdff;
  --shadow: 0 16px 45px rgba(10, 39, 101, 0.08);
  --radius: 8px;
  --container: 1220px;
  --gutter: clamp(20px, 5.3vw, 78px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 7% 58%, rgba(22, 132, 255, 0.08) 0 1px, transparent 2px),
    linear-gradient(180deg, #ffffff 0%, var(--page) 64%, #ffffff 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border: 1px solid rgba(22, 132, 255, 0.25);
  border-radius: 999px;
  pointer-events: none;
}

body::before {
  width: 260px;
  height: 260px;
  left: -180px;
  bottom: 12%;
}

body::after {
  width: 180px;
  height: 180px;
  right: -94px;
  bottom: 7%;
}

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

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

svg {
  display: block;
}

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

.site-header {
  max-width: calc(var(--container) + (var(--gutter) * 2));
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 0 auto;
  padding: 22px var(--gutter) 14px;
}

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

.brand-logo {
  display: block;
  width: clamp(190px, 19vw, 270px);
  height: auto;
}

.logo-mark {
  width: 66px;
  height: 58px;
  flex: 0 0 auto;
  color: var(--blue-700);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-mark path,
.logo-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.05;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a,
.nav-menu {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  gap: 7px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 7px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(10, 60, 189, 0.24);
}

.button-light {
  min-width: 252px;
  background: #ffffff;
  color: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue-900);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero-section {
  position: relative;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(26px, 4vw, 62px);
  margin: 0 auto;
  padding: 54px var(--gutter) 58px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy h1 {
  max-width: min(560px, 100%);
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.title-rule {
  width: 178px;
  height: 2px;
  margin: 26px 0 20px;
  background: var(--blue-500);
}

.title-rule::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-1px, -3px);
}

.hero-copy p {
  max-width: 470px;
  margin: 0 0 34px;
  color: var(--blue-900);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.52;
}

.hero-art {
  min-height: 420px;
  display: grid;
  align-items: center;
  min-width: 0;
}

.hero-art svg {
  width: min(100%, 790px);
  margin-left: auto;
  overflow: visible;
  transform-origin: center;
  animation: heroArtFloat 8s ease-in-out infinite;
}

.art-line,
.art-box,
.art-dash,
.art-faint,
.art-dot,
.art-thin,
.art-panel,
.art-bar,
.art-node,
.art-soft-fill {
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-box {
  fill: rgba(255, 255, 255, 0.78);
}

.art-device {
  fill: url("#deviceFill");
}

.art-laptop {
  fill: #f9fcff;
  stroke-width: 2.6;
}

.art-screen {
  fill: url("#screenFill");
}

.art-panel {
  fill: rgba(213, 234, 255, 0.34);
  stroke: rgba(10, 60, 189, 0.26);
  stroke-width: 1.2;
}

.art-soft-fill {
  fill: url("#paleFill");
}

.art-thin {
  stroke: rgba(10, 60, 189, 0.72);
  stroke-width: 1.45;
}

.art-heavy {
  stroke-width: 2.8;
}

.art-accent {
  stroke: var(--blue-500);
  animation: artAccentGlow 3.8s ease-in-out infinite;
}

.hero-art .art-network {
  animation: artNetworkFlow 5.2s linear infinite;
}

.hero-art .art-node,
.hero-art .art-dot,
.hero-art .art-bar {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-art .art-node {
  animation: artNodePulse 4.2s ease-in-out infinite;
}

.hero-art .art-dot {
  animation: artDotPulse 3.6s ease-in-out infinite;
}

.hero-art .art-bar {
  transform-origin: center bottom;
  animation: artBarLift 4.8s ease-in-out infinite;
}

.hero-art .art-faint {
  animation: artFaintBreathe 7s ease-in-out infinite;
}

.art-bar {
  fill: rgba(22, 132, 255, 0.18);
}

.art-dash {
  stroke-dasharray: 2 7;
}

.art-network {
  stroke-width: 2;
}

.art-faint {
  stroke: rgba(22, 132, 255, 0.17);
  stroke-width: 3;
}

.art-city {
  stroke-width: 1.4;
}

.art-dot {
  fill: var(--blue-700);
}

.art-node {
  fill: #ffffff;
  stroke: var(--blue-500);
  stroke-width: 2;
}

.art-ground {
  stroke-width: 2.4;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.decor-dots {
  width: 58px;
  height: 36px;
  opacity: 0.9;
  background-image: radial-gradient(var(--blue-500) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
}

.decor-dots-left {
  left: var(--gutter);
  top: 50px;
}

.decor-dots-right {
  right: calc(var(--gutter) + 6px);
  top: 34px;
}

.decor-ring {
  width: 25px;
  height: 25px;
  border: 1.5px solid rgba(22, 132, 255, 0.45);
  border-radius: 50%;
}

.decor-ring-one {
  top: 28px;
  left: 47%;
}

.decor-ring-two {
  top: 84px;
  left: 44%;
  width: 12px;
  height: 12px;
  border-color: var(--blue-500);
}

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

@keyframes artNetworkFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -36;
  }
}

@keyframes artNodePulse {
  0%, 100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes artDotPulse {
  0%, 100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes artBarLift {
  0%, 100% {
    transform: scaleY(0.92);
  }
  50% {
    transform: scaleY(1.05);
  }
}

@keyframes artAccentGlow {
  0%, 100% {
    stroke-opacity: 0.82;
  }
  50% {
    stroke-opacity: 1;
  }
}

@keyframes artFaintBreathe {
  0%, 100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

.trust-strip {
  max-width: calc(var(--container) + (var(--gutter) * 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  padding: 12px var(--gutter) 42px;
}

.trust-strip article {
  position: relative;
  min-height: 124px;
  overflow: hidden;
  border: 1px solid rgba(10, 60, 189, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.82)),
    #ffffff;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 38px rgba(10, 39, 101, 0.07);
}

.trust-strip article::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -34px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(22, 132, 255, 0.15);
  border-radius: 50%;
}

.trust-strip span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
}

.trust-strip strong {
  display: block;
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 800;
}

.trust-strip p {
  max-width: 290px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.services-section {
  position: relative;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 62px var(--gutter) 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 20%, rgba(22, 132, 255, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(246, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(217, 226, 240, 0.72);
  border-bottom: 1px solid rgba(217, 226, 240, 0.72);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 34px auto auto -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(22, 132, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(30px, 3.1vw, 39px);
  font-weight: 800;
  line-height: 1.18;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 48px;
  height: 2px;
  background: var(--blue-500);
  transform: translateX(-50%);
}

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

.accordion {
  position: relative;
  z-index: 1;
  max-width: 980px;
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(11, 30, 77, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.accordion-item:hover,
.accordion-item.is-open {
  border-color: rgba(10, 60, 189, 0.24);
  box-shadow: 0 16px 34px rgba(11, 30, 77, 0.1);
  transform: translateY(-1px);
}

.accordion-trigger {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  padding: 12px 24px 12px 30px;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger > span:nth-child(2) {
  font-size: 16px;
  font-weight: 800;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.accordion-symbol {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-symbol::before,
.accordion-symbol::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-800);
}

.accordion-symbol::after {
  transform: rotate(90deg);
}

.accordion-item.is-open .accordion-symbol::after {
  opacity: 0;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.accordion-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 72px 0 98px;
  color: var(--muted);
  font-size: 14px;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel > p {
  padding-bottom: 20px;
}

.service-method {
  position: relative;
  z-index: 1;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px auto 0;
}

.service-method article {
  border: 1px solid rgba(10, 60, 189, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(10, 39, 101, 0.06);
}

.service-method span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.service-method span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-method p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.why-section {
  margin-top: 0;
  padding: 66px var(--gutter) 66px;
  background:
    radial-gradient(circle at 95% 8%, rgba(22, 132, 255, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.9));
}

.value-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.value-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow);
}

.value-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  opacity: 0.16;
}

.value-card h3 {
  margin: 0;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.value-card p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.65;
}

.value-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
}

.value-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 38px var(--gutter);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #ffffff;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cta-band > * {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.cta-icon {
  width: 78px;
  height: 78px;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 30px);
  font-weight: 700;
  line-height: 1.24;
}

.cta-band p {
  margin: 7px 0 0;
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: 36px;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 44px var(--gutter) 24px;
  color: var(--blue-900);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-logo-img {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
}

.footer-brand .logo-mark {
  width: 49px;
  height: 44px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-700);
  border-radius: 50%;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.page-main {
  max-width: calc(1000px + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 62px var(--gutter) 88px;
}

.page-hero {
  margin-bottom: 34px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.content-panel h2 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 24px;
}

.content-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-list a,
.contact-list span {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-50);
  padding: 14px 16px;
  color: var(--blue-900);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-page-main {
  max-width: calc(1120px + (var(--gutter) * 2));
}

.contact-hero {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  border: 1px solid rgba(13, 73, 180, 0.14);
  border-radius: 999px;
  background: #ffffff;
  padding: 9px 14px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(10, 47, 112, 0.07);
}

.contact-panel {
  position: relative;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(57, 151, 255, 0.1), transparent 34%),
    #ffffff;
}

.contact-sidebar,
.next-steps {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card {
  border-radius: var(--radius);
  background: var(--blue-50);
  padding: 22px;
}

.contact-list a,
.contact-list span {
  display: grid;
  gap: 4px;
}

.contact-list a small,
.contact-list span small {
  color: #4b7ece;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-steps {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: flex;
  }

  .site-header.is-open .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .site-header.is-open .header-cta {
    width: fit-content;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

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

  .hero-art {
    min-height: 330px;
  }

  .hero-art svg {
    margin: 0;
  }

  .value-grid,
  .trust-strip,
  .service-method,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-band {
    grid-template-columns: 72px 1fr;
  }

  .cta-band .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 88px;
    padding-top: 16px;
  }

  .brand {
    gap: 10px;
  }

  .logo-mark {
    width: 42px;
    height: 38px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .site-header .brand strong {
    font-size: 21px;
  }

  .hero-section {
    display: block;
    padding-bottom: 34px;
  }

  .hero-copy,
  .hero-copy p {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 36px;
  }

  .hero-art {
    margin-top: 44px;
    min-height: 240px;
  }

  .hero-art svg {
    width: 150%;
    max-width: none;
    transform: translateX(-12%);
  }

  .decor-dots-left,
  .decor-dots-right,
  .decor-ring-one,
  .decor-ring-two {
    display: none;
  }

  .services-section {
    padding-inline: 18px;
    padding-top: 46px;
  }

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

  .accordion-trigger {
    grid-template-columns: 38px 1fr 22px;
    gap: 11px;
    padding: 8px 14px;
  }

  .accordion-panel > p {
    padding-inline: 63px 18px;
  }

  .value-grid,
  .service-method,
  .site-footer,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .value-card p {
    grid-column: 1 / -1;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
  }

  .cta-band .button {
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 18px;
  }

  .site-header .brand strong {
    font-size: 20px;
  }

  .site-header {
    --gutter: 18px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-bottom: 12px;
  }

  .site-header .brand {
    max-width: calc(100vw - 96px);
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.08;
  }

  .hero-copy p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-art {
    min-height: 210px;
    margin-top: 28px;
  }

  .hero-art svg {
    width: 132%;
    transform: translateX(-8%);
  }

  .services-section {
    padding-bottom: 34px;
  }

  .trust-strip article,
  .service-method article {
    min-height: 0;
    padding: 18px;
  }

  .service-method {
    margin-top: 16px;
  }

  .accordion-trigger {
    min-height: 64px;
  }

  .accordion-trigger > span:nth-child(2) {
    font-size: 14px;
  }

  .value-card {
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 18px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }

  .cta-band {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .site-footer {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    text-align: left;
  }

  .contact-highlights {
    justify-content: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-art svg,
  .hero-art .art-network,
  .hero-art .art-node,
  .hero-art .art-dot,
  .hero-art .art-bar,
  .hero-art .art-faint,
  .art-accent {
    animation: none;
  }
}
