/*
  BrightEdge Air Solutions visual system
  Brand colors, spacing, and typography can be updated from the custom properties below.
*/
:root {
  --navy-950: #041024;
  --navy-900: #07172f;
  --navy-850: #0a1d39;
  --navy-800: #0d2646;
  --blue-600: #0876e8;
  --blue-500: #0b8cff;
  --cyan-400: #2edbff;
  --green-500: #38d400;
  --green-400: #65ed24;
  --ice-100: #e9f7fb;
  --mist-50: #f4f8f9;
  --white: #ffffff;
  --ink: #0b1b2d;
  --muted: #607086;
  --line: #dce7ec;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 60px rgba(11, 38, 70, 0.1);
  --shadow-deep: 0 30px 90px rgba(0, 10, 28, 0.28);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist-50);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-family: "Manrope", system-ui, sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--cyan-400);
  font-style: normal;
}

.shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 116px 0;
  scroll-margin-top: 110px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--green-400);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.availability-bar {
  height: 32px;
  color: #b8cadd;
  background: rgba(4, 16, 36, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.availability-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.availability-inner span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(101, 237, 36, 0.12);
}

.primary-nav {
  display: grid;
  grid-template-columns: 246px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 86px;
  transition: min-height 220ms var(--ease-out);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 50px rgba(8, 25, 48, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.scrolled .primary-nav {
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  height: 58px;
  padding: 4px 12px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.5vw, 25px);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms var(--ease-out);
}

.nav-links a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--green-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-400);
}

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

.nav-call {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.15;
}

.site-header.scrolled .nav-call {
  border-left-color: var(--line);
}

.nav-call span {
  margin-bottom: 5px;
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-call strong {
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.hero {
  position: relative;
  min-height: 840px;
  padding: 178px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 22%, rgba(11, 140, 255, 0.2), transparent 28%),
    linear-gradient(118deg, var(--navy-950) 0%, #061a36 54%, #09264b 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(83, 159, 232, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 159, 232, 0.28) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.hero-grid-lines::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, transparent 65%, var(--navy-950));
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.hero-orb-one {
  top: 180px;
  right: 28%;
  width: 7px;
  height: 7px;
  background: var(--green-400);
  box-shadow: 0 0 32px 16px rgba(101, 237, 36, 0.16);
}

.hero-orb-two {
  right: 5%;
  bottom: 24%;
  width: 12px;
  height: 12px;
  background: var(--cyan-400);
  box-shadow: 0 0 50px 20px rgba(46, 219, 255, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.83fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  padding: 28px 0 112px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--green-400);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.1vw, 78px);
  font-weight: 800;
}

.hero h1 em {
  display: block;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: #bfd0e2;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.button:active {
  transform: scale(0.97);
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #061228;
  background: linear-gradient(120deg, var(--green-400), #7df548);
  box-shadow: 0 14px 40px rgba(73, 218, 17, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(73, 218, 17, 0.34);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  color: var(--cyan-400);
  background: rgba(255, 255, 255, 0.11);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 30px rgba(7, 23, 47, 0.15);
}

.button-dark:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 22px;
  align-items: center;
}

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

.trust-item strong {
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.trust-item span {
  color: #8299b4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 588px;
}

.hero-image-shell {
  position: absolute;
  top: 6px;
  right: -55px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 180px 20px 0 0;
  box-shadow: var(--shadow-deep);
}

.hero-image-shell::before {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 160px 12px 0 0;
  content: "";
}

.hero-image-shell > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.83) contrast(1.06);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 16, 36, 0.9), transparent 45%),
    linear-gradient(to right, rgba(6, 24, 50, 0.45), transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(46, 219, 255, 0.08), transparent 30%);
}

.hero-status-card {
  position: absolute;
  z-index: 3;
  right: 27px;
  bottom: 34px;
  left: 27px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(5, 21, 43, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.status-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--green-400);
  font-weight: 900;
}

.hero-status-card div {
  display: grid;
  gap: 3px;
}

.hero-status-card strong {
  font-size: 13px;
}

.hero-status-card span:last-child {
  color: #a9bfd5;
  font-size: 11px;
}

.temperature-dial {
  position: absolute;
  z-index: 3;
  top: 62px;
  right: 36px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(6, 26, 54, 0.58);
  box-shadow: inset 0 0 35px rgba(46, 219, 255, 0.08);
  backdrop-filter: blur(10px);
}

.temperature-dial::after {
  position: absolute;
  inset: -6px;
  border-top: 2px solid var(--cyan-400);
  border-right: 2px solid transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.temperature-dial span,
.temperature-dial small {
  color: #9fb9d2;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.temperature-dial strong {
  margin: -1px 0;
  color: var(--white);
  font-size: 30px;
}

.hero-corner-note {
  position: absolute;
  z-index: 5;
  bottom: 41px;
  left: -26px;
  display: flex;
  gap: 12px;
  width: 204px;
  padding: 15px;
  color: var(--navy-950);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.hero-corner-note span {
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 900;
}

.hero-corner-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-bottom-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 16, 36, 0.8);
  backdrop-filter: blur(12px);
}

.strip-items {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #90a8bf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-items i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-400);
}

.intro-band {
  color: var(--navy-950);
  background: var(--green-400);
}

.intro-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 148px;
}

.intro-band-grid > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 620px);
  gap: 36px;
  align-items: center;
}

.section-kicker {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-band-grid p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, 2px);
}

.about {
  background: var(--mist-50);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
}

.section-number {
  display: block;
  margin-bottom: 25px;
  color: var(--blue-600);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-number.light {
  color: var(--cyan-400);
}

.about h2,
.section-header h2,
.why-copy h2,
.details-intro h2,
.faq-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 4.3vw, 61px);
  font-weight: 800;
}

.about h2 em,
.why-copy h2 em,
.faq-heading h2 em {
  color: var(--blue-500);
}

.about-content {
  padding-top: 35px;
}

.lead-copy {
  margin-bottom: 24px;
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.about-content > p:not(.lead-copy) {
  color: var(--muted);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  overflow: hidden;
}

.about-principles > div {
  min-height: 185px;
  padding: 24px;
  background: var(--white);
}

.about-principles span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
}

.about-principles strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 15px;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.services {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 118, 232, 0.22), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
  overflow: hidden;
}

.services::before,
.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(79, 150, 214, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 150, 214, 0.18) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 80% 20%, black, transparent 70%);
}

.services .shell,
.contact .shell {
  position: relative;
  z-index: 2;
}

.section-header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-header > p {
  margin-bottom: 5px;
  color: #93a9be;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 316px;
  padding: 27px 23px 25px;
  flex-direction: column;
  background: rgba(9, 32, 64, 0.87);
  transition: transform 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(145deg, rgba(11, 140, 255, 0.2), rgba(101, 237, 36, 0.07));
  transition: opacity 220ms var(--ease-out);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  z-index: 2;
  background: #0c2e59;
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-index {
  align-self: flex-end;
  color: #59728d;
  font-size: 9px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 24px 0 25px;
  place-items: center;
  border: 1px solid rgba(46, 219, 255, 0.24);
  border-radius: 13px;
  color: var(--cyan-400);
  background: rgba(46, 219, 255, 0.07);
  font-size: 19px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 21px;
  color: #8fa8c0;
  font-size: 12px;
  line-height: 1.62;
}

.learn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #b5c8d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-link b {
  color: var(--green-400);
  font-size: 14px;
}

.field-gallery {
  background: var(--mist-50);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.gallery-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(39px, 4.3vw, 61px);
  font-weight: 800;
}

.gallery-heading h2 em {
  color: var(--blue-500);
}

.gallery-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 205px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-850);
  box-shadow: 0 18px 45px rgba(9, 32, 64, 0.08);
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--ease-out), filter 280ms var(--ease-out);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 16, 36, 0.86), transparent 56%);
}

.gallery-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.gallery-card figcaption span {
  color: var(--green-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-card figcaption strong {
  font-size: 13px;
}

.why-us {
  background: #eef4f6;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 78px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 150px;
}

.why-copy p {
  margin: 28px 0 31px;
  color: var(--muted);
}

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

.benefit-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 38, 70, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(9, 32, 64, 0.05);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.benefit-card::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(11, 140, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.benefit-mark {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 47px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: #e8f4ff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 18px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-details {
  color: var(--white);
  background: var(--navy-950);
}

.details-intro {
  display: grid;
  grid-template-columns: 270px minmax(0, 730px);
  gap: 50px;
  align-items: start;
  margin-bottom: 65px;
}

.details-intro h2 em,
.contact-copy h2 em {
  color: var(--green-400);
}

.details-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 130px;
  gap: 35px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  scroll-margin-top: 120px;
}

.detail-number {
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 800;
}

.detail-row h2 {
  margin-bottom: 11px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.detail-row p {
  max-width: 770px;
  margin: 0;
  color: #8fa5bb;
  font-size: 14px;
}

.detail-row > a {
  justify-self: end;
  color: var(--green-400);
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  transition: color 160ms var(--ease-out);
}

.detail-row > a:hover {
  color: var(--cyan-400);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 140px;
}

.faq-heading p {
  margin: 27px 0;
  color: var(--muted);
}

.phone-inline {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 6px;
  color: var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

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

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

.faq-list summary {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding: 27px 4px;
  color: var(--navy-900);
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--mist-50);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--blue-600);
  transform: translate(-50%, -50%);
  transition: transform 180ms var(--ease-out);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 29px 4px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-area {
  color: var(--white);
  background: linear-gradient(145deg, #082340, var(--navy-950));
}

.area-header {
  margin-bottom: 48px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.6fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.map-frame {
  position: relative;
  min-height: 550px;
  background: #dceaf0;
}

#service-map,
#service-map iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
}

.map-loading {
  display: grid;
  height: 100%;
  min-height: 550px;
  place-content: center;
  color: var(--navy-800);
  text-align: center;
}

.map-loading span {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border: 3px solid rgba(8, 118, 232, 0.15);
  border-top-color: var(--blue-600);
  border-radius: 50%;
}

.map-loading p {
  font-size: 13px;
  font-weight: 700;
}

.map-address {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: 25px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: calc(100% - 50px);
  padding: 15px 18px;
  color: var(--navy-950);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 60px rgba(0, 15, 35, 0.24);
  backdrop-filter: blur(12px);
}

.map-address > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
}

.map-address div {
  display: grid;
  line-height: 1.35;
}

.map-address strong {
  font-size: 12px;
}

.map-address small {
  color: var(--muted);
  font-size: 10px;
}

.map-address b {
  color: var(--green-500);
}

.area-panel {
  display: flex;
  padding: 42px 36px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
}

.area-label {
  margin-bottom: 8px;
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.area-panel > strong {
  margin-bottom: 15px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.area-panel > p {
  color: #92a9c0;
  font-size: 13px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.city-list li {
  position: relative;
  padding: 11px 0 11px 16px;
  color: #d2dfea;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.city-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--green-400);
  transform: translateY(-50%);
}

.light-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--green-400);
}

.contact {
  position: relative;
  color: var(--white);
  background: linear-gradient(120deg, #061a35, #0a315e);
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.contact-copy > p {
  max-width: 500px;
  margin: 28px 0 36px;
  color: #a2b7cb;
}

.contact-cards {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.contact-cards a {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.contact-cards a:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.contact-cards span {
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 16px;
  line-height: 1.45;
}

.lead-form {
  position: relative;
  padding: 38px;
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-deep);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 27px;
}

.form-heading > div > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 4px 0 0;
  font-size: 30px;
}

.form-availability {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  color: #28780e;
  border-radius: 999px;
  background: #ebfce6;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d8e3e8;
  border-radius: 11px;
  color: var(--navy-900);
  background: #f8fbfc;
  outline: 0;
  transition: border-color 170ms var(--ease-out), box-shadow 170ms var(--ease-out), background-color 170ms var(--ease-out);
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 105px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 140, 255, 0.1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d64545;
}

.error-message,
.consent-error {
  min-height: 0;
  color: #b42318;
  font-size: 10px;
  font-weight: 650;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 19px;
  color: #718094;
  font-size: 9px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--blue-600);
}

.consent-error {
  display: block;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
  margin-top: 19px;
  border: 0;
}

.form-note {
  margin: 10px 0 0;
  color: #8090a1;
  text-align: center;
  font-size: 9px;
}

.form-success {
  position: absolute;
  z-index: 4;
  inset: 20px;
  display: grid;
  padding: 35px;
  place-content: center;
  text-align: center;
  border: 1px solid #d8f5ce;
  border-radius: 22px;
  background: rgba(247, 255, 245, 0.98);
}

.form-success[hidden] {
  display: none;
}

.form-success strong {
  color: #1c6711;
  font-size: 22px;
}

.form-success span {
  margin-top: 8px;
  color: #53734e;
  font-size: 13px;
}

.site-footer {
  padding: 72px 0 0;
  color: #94a8bb;
  background: #030c1b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-wordmark {
  display: inline-grid;
  gap: 0;
  color: var(--white);
  line-height: 1;
}

.footer-wordmark strong {
  font-size: 30px;
  font-style: italic;
  letter-spacing: -0.06em;
}

.footer-wordmark strong span {
  color: var(--green-400);
}

.footer-wordmark small {
  margin-top: 7px;
  color: #71859a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-align: right;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  font-size: 13px;
}

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

.footer-links > span,
.footer-contact > span {
  margin-bottom: 9px;
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-400);
}

.footer-contact p {
  margin: 5px 0 2px;
}

.footer-contact strong {
  color: var(--green-400);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-disclaimer {
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  margin: 0;
  color: #64778b;
  font-size: 9px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  font-size: 10px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.mobile-call-button {
  display: none;
}

.service-dialog {
  width: min(92vw, 610px);
  max-height: 92vh;
  padding: 38px;
  overflow-y: auto;
  color: var(--ink);
  border: 0;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 10, 30, 0.44);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete;
}

.service-dialog[open] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@starting-style {
  .service-dialog[open] {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
}

.service-dialog::backdrop {
  background: rgba(2, 12, 29, 0.78);
  backdrop-filter: blur(7px);
}

.dialog-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500), var(--green-400));
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 39px;
  height: 39px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mist-50);
  font-size: 24px;
}

.service-dialog > h2 {
  max-width: 420px;
  margin: 10px 0 12px;
  font-size: 36px;
}

.service-dialog > p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 13px;
}

.service-dialog > p a {
  color: var(--blue-600);
  font-weight: 800;
}

.dialog-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.service-dialog .field + .field {
  margin-top: 14px;
}

.dialog-fields .field + .field {
  margin-top: 0;
}

.consent-row.compact {
  font-size: 8px;
}

.reveal {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal.pending {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
  }

  .reveal.pending.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .map-loading span {
    animation: spin 850ms linear infinite;
  }

  .pulse-dot {
    animation: pulse 1.8s ease-out infinite;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(101, 237, 36, 0.12); }
  50% { box-shadow: 0 0 0 8px rgba(101, 237, 36, 0.03); }
}

@media (max-width: 1120px) {
  .primary-nav {
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .nav-call span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: 30px;
  }

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

  .why-layout {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .shell {
    width: min(100% - 32px, 740px);
  }

  .section {
    padding: 88px 0;
  }

  .availability-bar {
    display: none;
  }

  .primary-nav {
    grid-template-columns: 200px 1fr 46px;
    min-height: 76px;
  }

  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 50px rgba(8, 25, 48, 0.1);
    backdrop-filter: blur(16px);
  }

  .brand {
    height: 54px;
    box-shadow: none;
  }

  .nav-call {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    border-left: 0;
  }

  .nav-call strong {
    color: var(--blue-600);
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .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);
  }

  .nav-links {
    position: fixed;
    z-index: -1;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px max(20px, calc((100vw - 740px) / 2));
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(8, 25, 48, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 190ms var(--ease-out), transform 190ms var(--ease-out);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .nav-links a::after {
    display: none;
  }

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

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 25px 0 55px;
  }

  .hero h1 {
    font-size: clamp(47px, 8vw, 70px);
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-image-shell {
    right: 0;
    border-radius: 120px 20px 0 0;
  }

  .hero-image-shell::before {
    border-radius: 104px 12px 0 0;
  }

  .hero-bottom-strip {
    position: relative;
  }

  .hero-corner-note {
    left: 20px;
  }

  .intro-band-grid {
    min-height: 164px;
  }

  .intro-band-grid > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .about-layout,
  .why-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-content {
    padding-top: 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-copy,
  .faq-heading {
    position: static;
  }

  .details-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 50px;
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 78px;
  }

  .shell {
    width: min(100% - 28px, 540px);
  }

  .section {
    padding: 72px 0;
  }

  .primary-nav {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .brand {
    width: 176px;
    height: 48px;
    padding: 4px 8px;
  }

  .nav-call {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    padding-top: 102px;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.2vw, 57px);
  }

  .hero h1 em {
    display: inline;
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px;
    justify-content: space-between;
  }

  .trust-item strong {
    font-size: 15px;
  }

  .trust-item span {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-shell {
    border-radius: 85px 14px 0 0;
  }

  .hero-image-shell::before {
    inset: 12px;
    border-radius: 75px 9px 0 0;
  }

  .temperature-dial {
    top: 34px;
    right: 24px;
    width: 90px;
    height: 90px;
  }

  .temperature-dial strong {
    font-size: 24px;
  }

  .hero-status-card {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }

  .hero-corner-note {
    display: none;
  }

  .hero-bottom-strip {
    overflow: hidden;
  }

  .strip-items {
    gap: 18px;
    justify-content: flex-start;
    width: max-content;
  }

  .intro-band-grid {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .about h2,
  .section-header h2,
  .gallery-heading h2,
  .why-copy h2,
  .details-intro h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

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

  .about-principles > div {
    min-height: 0;
  }

  .about-principles span {
    margin-bottom: 20px;
  }

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

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .detail-row {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 14px;
  }

  .detail-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .map-frame,
  #service-map,
  #service-map iframe,
  .map-loading {
    min-height: 450px;
  }

  .map-address {
    right: 15px;
    bottom: 15px;
    left: 15px;
    max-width: none;
  }

  .map-address b {
    display: none;
  }

  .area-panel {
    min-height: 0;
    padding: 34px 24px;
  }

  .contact-cards {
    max-width: none;
  }

  .lead-form {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .form-heading {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid,
  .dialog-fields {
    grid-template-columns: 1fr;
  }

  .dialog-fields .field + .field {
    margin-top: 14px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-wordmark strong {
    font-size: 27px;
  }

  .footer-bottom {
    gap: 13px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-call-button {
    position: fixed;
    z-index: 900;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    height: 58px;
    color: var(--navy-950);
    border: 1px solid rgba(4, 16, 36, 0.1);
    border-radius: 16px;
    background: linear-gradient(115deg, var(--green-400), #81f24e);
    box-shadow: 0 16px 40px rgba(7, 23, 47, 0.3);
  }

  .mobile-call-button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .mobile-call-button span {
    display: grid;
    line-height: 1.05;
  }

  .mobile-call-button small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-call-button strong {
    font-size: 16px;
  }

  .service-dialog {
    width: calc(100vw - 20px);
    padding: 32px 20px 24px;
    border-radius: 22px;
  }
}

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