:root {
  --ink: #071121;
  --navy: #061126;
  --navy-2: #0a1d3e;
  --panel: #0d2347;
  --blue: #087eff;
  --blue-bright: #25b8ff;
  --blue-soft: #eaf5ff;
  --silver: #d8e2ed;
  --white: #ffffff;
  --text: #172235;
  --muted: #66758b;
  --line: #dce5ef;
  --shadow: 0 24px 70px rgba(4, 18, 43, 0.14);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--text);
  background: #f4f8fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  transition: transform .2s ease;
}

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

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(4, 15, 35, .78);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(4, 15, 35, .95);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}

.nav-shell {
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand { width: 176px; }
.brand img { width: 100%; filter: drop-shadow(0 5px 12px rgba(0,0,0,.35)); }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue-bright);
  transition: right .2s ease;
}

.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 22px;
  color: var(--white);
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(37,184,255,.42);
  outline-offset: 3px;
}

.button svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .9rem; }
.button-primary { background: linear-gradient(135deg, #087eff, #20b8ff); box-shadow: 0 12px 30px rgba(8,126,255,.28); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(8,126,255,.38); }
.button-ghost { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.button-ghost:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.1); }

.menu-toggle { display: none; }

.hero {
  min-height: 820px;
  position: relative;
  isolation: isolate;
  padding: 160px 0 136px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(3,11,28,.98) 10%, rgba(6,26,59,.94) 57%, rgba(5,16,36,.99)),
    radial-gradient(circle at 80% 20%, #0b79ff, transparent 32%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -42% 35%;
  height: 620px;
  background: linear-gradient(115deg, transparent 15%, rgba(9,124,255,.18), transparent 65%);
  transform: rotate(-9deg);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -180px; top: 60px; background: radial-gradient(circle, rgba(12,128,255,.25), transparent 68%); }
.hero-glow-two { width: 430px; height: 430px; left: 28%; bottom: -300px; background: radial-gradient(circle, rgba(0,184,255,.2), transparent 70%); }

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6fd0ff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.eyebrow-dark { color: #0877eb; }

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: .005em;
  line-height: .98;
  text-transform: uppercase;
}

h1 { font-size: clamp(4.25rem, 7.2vw, 7rem); text-shadow: 0 10px 40px rgba(0,0,0,.35); }
h1 span { color: transparent; background: linear-gradient(180deg, #4cd5ff 0%, #0677ff 86%); background-clip: text; -webkit-background-clip: text; }

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px rgba(37,184,255,.9); }

.hero-brand-panel {
  position: relative;
  border: 1px solid rgba(113,196,255,.25);
  border-radius: 22px;
  padding: 42px 32px 24px;
  background: linear-gradient(145deg, rgba(13,42,88,.7), rgba(4,14,31,.72));
  box-shadow: 0 30px 80px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.hero-brand-panel::before,
.hero-brand-panel::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--blue-bright);
}

.hero-brand-panel::before { left: -1px; top: -1px; border-top: 3px solid; border-left: 3px solid; border-radius: 22px 0 0; }
.hero-brand-panel::after { right: -1px; bottom: -1px; border-right: 3px solid; border-bottom: 3px solid; border-radius: 0 0 22px; }

.panel-kicker, .panel-tag {
  margin: 0;
  color: #75d2ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}

.hero-brand-panel > img { width: 100%; margin: 20px auto 15px; filter: drop-shadow(0 14px 20px rgba(0,0,0,.45)); }
.panel-tag { color: rgba(255,255,255,.65); letter-spacing: .16em; }

.panel-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.panel-services a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  transition: border-color .2s ease, background .2s ease;
}

.panel-services a:hover { border-color: rgba(37,184,255,.6); background: rgba(20,126,255,.1); }
.service-mini-icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--blue-bright); background: rgba(20,126,255,.15); }
.service-mini-icon svg { width: 24px; height: 24px; }
.panel-services strong { display: block; font-size: .9rem; line-height: 1.2; }
.panel-services small { display: block; margin-top: 3px; color: rgba(255,255,255,.55); font-size: .7rem; line-height: 1.25; }

.service-switcher {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateX(-50%);
  box-shadow: 0 -10px 50px rgba(0,0,0,.18);
}

.service-switcher a {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  color: var(--white);
  background: #0b326d;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s ease;
}

.service-switcher a:last-child { background: #087cf3; }
.service-switcher a:hover { background: #1050a6; }
.service-switcher a:last-child:hover { background: #1699ff; }
.service-switcher span { color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .12em; }
.service-switcher b { margin-left: auto; font-size: .78rem; }

.services { background: #f4f8fc; }

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -105px auto;
  width: 250px;
  height: 250px;
  border: 42px solid rgba(8,126,255,.06);
  border-radius: 50%;
}

.service-card-blue {
  color: var(--white);
  border-color: rgba(46,148,255,.34);
  background: linear-gradient(145deg, #0a2148, #061126);
}

.service-card-blue::after { border-color: rgba(31,167,255,.12); }
.card-number { position: absolute; right: 30px; top: 22px; color: rgba(5,43,89,.08); font-size: 5.2rem; font-weight: 950; line-height: 1; }
.service-card-blue .card-number { color: rgba(255,255,255,.06); }

.card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8,126,255,.2);
  border-radius: 18px;
  color: #087df8;
  background: #eaf5ff;
}

.service-card-blue .card-icon { color: #62ceff; border-color: rgba(98,206,255,.28); background: rgba(8,126,255,.15); }
.card-icon svg { width: 42px; height: 42px; }
.card-kicker { margin: 30px 0 6px; color: #0877eb; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.service-card-blue .card-kicker { color: #63cdff; }

.service-card h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.service-card > p:not(.card-kicker) { max-width: 470px; margin: 18px 0 0; color: var(--muted); }
.service-card-blue > p:not(.card-kicker) { color: rgba(255,255,255,.68); }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.service-list li { position: relative; padding-left: 22px; font-weight: 750; }
.service-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: #0b8cff; box-shadow: 0 0 0 4px rgba(11,140,255,.12); }

.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 12px; color: #0877eb; font-weight: 900; }
.service-card-blue .text-link { color: #61ceff; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.why-us {
  color: var(--white);
  background: linear-gradient(130deg, #051125, #0a2854 60%, #061126);
}

.centered-heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.centered-heading h2 { color: var(--white); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-grid article { border: 1px solid rgba(255,255,255,.11); border-radius: 14px; padding: 30px 24px; background: rgba(255,255,255,.04); }
.value-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 12px; color: var(--blue-bright); background: rgba(10,133,255,.15); }
.value-icon svg { width: 27px; height: 27px; }
.value-grid h3 { margin: 0; font-size: 1.12rem; text-transform: uppercase; letter-spacing: .04em; }
.value-grid p { margin: 9px 0 0; color: rgba(255,255,255,.63); font-size: .92rem; line-height: 1.55; }

.service-area { color: var(--white); background: #087df8; overflow: hidden; }
.area-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.area-copy h2 { color: var(--white); font-size: clamp(3rem, 5vw, 5.2rem); }
.area-copy > p:not(.eyebrow) { max-width: 660px; margin: 26px 0 32px; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.area-copy .eyebrow { color: #d7f3ff; }
.area-copy .button-primary { color: #0877eb; background: var(--white); box-shadow: 0 15px 35px rgba(2,43,96,.2); }

.area-visual { position: relative; min-height: 390px; display: grid; place-items: center; }
.map-ring { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.map-ring-one { width: 280px; height: 280px; }
.map-ring-two { width: 390px; height: 390px; }
.area-visual::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,255,255,.1); box-shadow: 0 0 80px rgba(255,255,255,.16); }
.location-pin { position: relative; z-index: 2; width: 90px; height: 90px; display: grid; place-items: center; border-radius: 50%; color: #087df8; background: var(--white); box-shadow: 0 20px 40px rgba(0,38,92,.25); }
.location-pin svg { width: 44px; height: 44px; fill: currentColor; stroke: none; }
.area-label { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); white-space: nowrap; padding: 8px 14px; border-radius: 999px; color: #076fd9; background: var(--white); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,37,86,.18); }

.contact { background: #f4f8fc; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy h2 { color: var(--ink); font-size: clamp(3rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 1.04rem; }
.contact-methods { display: grid; gap: 12px; margin-top: 36px; }
.contact-methods a { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 13px; padding: 15px; background: var(--white); transition: border-color .2s ease, transform .2s ease; }
.contact-methods a:hover { transform: translateY(-2px); border-color: #86c9ff; }
.contact-methods span { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 11px; color: #087ef8; background: #eaf5ff; }
.contact-methods svg { width: 24px; height: 24px; }
.contact-methods small { color: var(--muted); font-weight: 700; }
.contact-methods strong { min-width: 0; font-size: .88rem; overflow-wrap: anywhere; }

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 5px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--ink); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; }
.form-heading small { color: var(--muted); }
.request-form label { display: grid; gap: 7px; color: #2c3b50; font-size: .82rem; font-weight: 850; }
.full-width { grid-column: 1 / -1; }

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #ced9e6;
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfe;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.request-form textarea { resize: vertical; min-height: 118px; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: #148cff; box-shadow: 0 0 0 4px rgba(20,140,255,.1); outline: none; }
.request-form .button { border: 0; }
.form-status { grid-column: 1 / -1; min-height: 24px; margin: -5px 0 0; color: #0875e8; font-size: .86rem; font-weight: 750; text-align: center; }

.site-footer { padding: 58px 0 28px; color: rgba(255,255,255,.72); background: #040d1d; }
.footer-layout { display: grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 44px; align-items: center; }
.footer-brand img { width: 210px; }
.footer-brand p { margin: 12px 0 0; font-size: .88rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-size: .88rem; font-weight: 700; }
.footer-links a:hover, .footer-contact a:hover { color: var(--blue-bright); }
.footer-contact { display: grid; justify-items: end; gap: 8px; font-size: .86rem; font-weight: 750; }
.footer-contact a:last-child { overflow-wrap: anywhere; text-align: right; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.mobile-call { display: none; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 160px 1fr auto; gap: 18px; }
  .site-nav { gap: 20px; }
  .hero-layout { gap: 45px; }
  .hero-brand-panel { padding-inline: 22px; }
  .split-heading, .contact-layout { gap: 50px; }
  .area-layout { gap: 48px; }
  .service-card { padding: 38px; }
}

@media (max-width: 880px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section-pad { padding: 84px 0; }
  .nav-shell { min-height: 72px; grid-template-columns: 155px 1fr auto; }
  .nav-call { display: none; }
  .menu-toggle { width: 42px; height: 42px; justify-self: end; display: grid; place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; color: var(--white); background: rgba(255,255,255,.05); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 12px 16px 20px; background: rgba(4,15,35,.98); border-bottom: 1px solid rgba(255,255,255,.1); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; padding: 126px 0 112px; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-brand-panel { max-width: 620px; margin-inline: auto; }
  .service-switcher { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .area-layout { grid-template-columns: 1fr; text-align: center; }
  .area-visual { order: 2; min-height: 340px; }
  .area-copy > p:not(.eyebrow) { margin-inline: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { text-align: center; }
  .contact-methods { max-width: 560px; margin-inline: auto; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; justify-items: start; }
  .footer-contact a:last-child { text-align: left; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 68px; }
  .section-pad { padding: 70px 0; }
  .hero { padding: 112px 0 72px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .section-heading h2, .area-copy h2, .contact-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lede { font-size: 1rem; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 12px 17px; }
  .hero-brand-panel { padding: 32px 18px 18px; }
  .panel-services { grid-template-columns: 1fr; }
  .service-card { padding: 31px 24px; }
  .service-card h3 { font-size: 2.2rem; }
  .service-list { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; align-items: start; }
  .value-icon { grid-row: 1 / 3; margin: 0; }
  .value-grid h3 { align-self: end; }
  .value-grid p { align-self: start; }
  .map-ring-one { width: 230px; height: 230px; }
  .map-ring-two { width: 310px; height: 310px; }
  .area-visual { min-height: 310px; }
  .request-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .request-form label, .full-width, .form-heading, .form-status { grid-column: 1; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-call { position: fixed; z-index: 110; inset: auto 0 0; min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); background: linear-gradient(90deg, #0879f2, #19aefd); font-weight: 900; box-shadow: 0 -8px 30px rgba(0,0,0,.25); }
  .mobile-call svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
}

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