:root {
  --navy: #071826;
  --navy-2: #0b2a3d;
  --blue: #17bdf4;
  --cyan: #00c7f2;
  --aqua: #22d3c5;
  --ice: #ddf7ff;
  --royal: #2563eb;
  --orange: #ff9f43;
  --white: #ffffff;
  --soft: #f5fbfe;
  --text: #17212b;
  --muted: #5b6b76;
  --line: #dbeaf0;
  --shadow: 0 24px 60px rgba(7, 24, 38, 0.12);
  --shadow-soft: 0 14px 35px rgba(7, 24, 38, 0.08);
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--aqua) 100%);
  --gradient-deep: linear-gradient(135deg, #093856 0%, #071826 72%);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button:active,
.button:active,
.need-card:active {
  transform: scale(0.97);
}

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

::selection {
  background: var(--aqua);
  color: var(--navy);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.2vw, 5.25rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.8vw, 3.75rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 750;
}

p {
  color: var(--muted);
}

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

.section {
  padding: 116px 0;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(7, 24, 38, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 24px rgba(7, 24, 38, 0.04);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 9px 30px rgba(7, 24, 38, 0.1);
}

.header-shell {
  display: flex;
  width: min(1400px, calc(100% - 44px));
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: block;
  width: clamp(190px, 18vw, 260px);
  flex: 0 0 auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.55vw, 28px);
}

.desktop-nav a {
  position: relative;
  color: #334652;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease-out);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: grid;
  padding: 11px 18px;
  border-radius: 15px;
  background: var(--navy);
  color: var(--white);
  grid-template-columns: 22px auto;
  grid-template-rows: auto auto;
  line-height: 1.05;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.header-call:hover {
  background: #0d3147;
  box-shadow: 0 10px 24px rgba(7, 24, 38, 0.22);
  transform: translateY(-2px);
}

.header-call svg {
  grid-row: 1 / 3;
  margin-right: 10px;
  align-self: center;
  color: var(--aqua);
}

.header-call span {
  color: #a8c1cd;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  padding: calc(var(--header-height) + 82px) 0 48px;
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 211, 197, 0.2), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(23, 189, 244, 0.18), transparent 36%),
    linear-gradient(180deg, #f7fdff 0%, #eefaff 74%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(7, 24, 38, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 24, 38, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 120px;
  left: -110px;
  width: 280px;
  height: 280px;
  border: 55px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 80px rgba(23, 189, 244, 0.14);
}

.hero-orb-two {
  right: 17%;
  bottom: 100px;
  width: 78px;
  height: 78px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(34, 211, 197, 0.18));
  box-shadow: inset -10px -10px 30px rgba(37, 99, 235, 0.12);
  transform: rotate(24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  color: #087ba5;
  font-family: 'Manrope', sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  margin-right: 12px;
  background: var(--gradient);
}

.section-kicker.light {
  color: #6fe7df;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: #23485c;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.4;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.03rem;
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 159, 67, 0.3);
  color: var(--navy);
}

.button-primary:hover {
  background: #ffad5f;
  box-shadow: 0 17px 32px rgba(255, 159, 67, 0.4);
  transform: translateY(-3px);
}

.button-secondary {
  border: 1px solid #badbe7;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 22px rgba(7, 24, 38, 0.06);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--aqua);
  background: var(--white);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
  color: #087ba5;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  padding: 12px 0 38px 20px;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 0.94;
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px 34px 110px 34px;
  background: var(--white);
  box-shadow: 0 35px 80px rgba(8, 62, 88, 0.22);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 24, 38, 0.2));
  content: '';
  pointer-events: none;
}

.hero-image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.availability-card,
.location-card {
  position: absolute;
  z-index: 3;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.availability-card {
  top: 28px;
  left: 28px;
  padding: 12px 16px;
  border-radius: 15px;
  align-items: center;
  gap: 11px;
}

.availability-card .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #15b77a;
  box-shadow: 0 0 0 7px rgba(21, 183, 122, 0.13);
}

.availability-card strong,
.availability-card small {
  display: block;
}

.availability-card strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
}

.availability-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.location-card {
  right: 22px;
  bottom: 26px;
  padding: 13px 16px;
  border-radius: 16px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.location-card svg {
  flex: 0 0 auto;
  color: #0790b8;
}

.crystal-shard {
  position: absolute;
  z-index: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(34, 211, 197, 0.42));
  box-shadow: inset -10px -12px 25px rgba(37, 99, 235, 0.12), 0 25px 50px rgba(8, 62, 88, 0.12);
  clip-path: polygon(50% 0, 100% 65%, 62% 100%, 0 65%);
}

.shard-one {
  top: -18px;
  right: -20px;
  width: 92px;
  height: 120px;
  transform: rotate(14deg);
}

.shard-two {
  bottom: 2px;
  left: -25px;
  width: 112px;
  height: 140px;
  transform: rotate(-23deg);
}

.trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 72px;
  padding: 22px 26px;
  border: 1px solid rgba(7, 24, 38, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 45px rgba(7, 24, 38, 0.08);
  backdrop-filter: blur(14px);
  grid-template-columns: repeat(4, 1fr);
}

.trust-bar > div {
  display: flex;
  padding: 2px 22px;
  align-items: center;
  gap: 12px;
}

.trust-bar > div + div {
  border-left: 1px solid var(--line);
}

.trust-bar svg {
  flex: 0 0 auto;
  color: #0896be;
}

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

.trust-bar strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
}

.trust-bar span {
  color: #6d7d87;
  font-size: 0.72rem;
  line-height: 1.35;
}

.needs-section {
  padding: 62px 0 104px;
  background: var(--white);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.compact {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading.compact .section-kicker {
  margin: 0 0 11px;
}

.section-heading.compact h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-heading.split {
  display: grid;
  align-items: end;
  gap: 72px;
  grid-template-columns: 1.05fr 0.95fr;
}

.section-heading.split p {
  margin-bottom: 5px;
}

.needs-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.need-card {
  display: grid;
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfeff;
  align-items: center;
  column-gap: 13px;
  grid-template-columns: auto 1fr auto;
  transition: border 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out), background 200ms var(--ease-out);
}

.need-card:hover {
  border-color: rgba(34, 211, 197, 0.5);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.need-icon,
.why-icon,
.service-icon,
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.need-icon {
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: var(--ice);
  color: #078cb3;
}

.need-card strong,
.need-card small {
  display: block;
}

.need-card strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.25;
}

.need-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.card-arrow {
  width: 18px;
  color: #8aa0ac;
  transition: transform 180ms var(--ease-out), color 180ms var(--ease-out);
}

.need-card:hover .card-arrow {
  color: #078cb3;
  transform: translateX(4px);
}

.about-section {
  overflow: hidden;
  background: var(--soft);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 104px;
  grid-template-columns: 1fr 0.92fr;
}

.image-stack {
  position: relative;
  min-height: 590px;
}

.image-main {
  width: 88%;
  height: 545px;
  border-radius: 28px 86px 28px 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-inset {
  position: absolute;
  right: -14px;
  bottom: -28px;
  width: 48%;
  height: 260px;
  border: 8px solid var(--soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.air-quality-chip {
  position: absolute;
  top: 42px;
  right: -25px;
  display: flex;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 20px 45px rgba(7, 24, 38, 0.24);
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.air-quality-chip svg {
  color: var(--aqua);
}

.about-copy p {
  font-size: 1.01rem;
}

.why-section {
  background: var(--white);
}

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

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f8fdff);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border 220ms var(--ease-out);
}

.why-card:hover {
  border-color: rgba(23, 189, 244, 0.36);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.why-card .number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(7, 24, 38, 0.07);
  font-family: 'Manrope', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.why-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 32px;
  border-radius: 15px;
  background: var(--gradient);
  box-shadow: 0 10px 22px rgba(23, 189, 244, 0.18);
  color: var(--navy);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-deep);
  color: var(--white);
}

.services-section::before {
  position: absolute;
  top: -250px;
  right: -140px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.018);
  content: '';
}

.services-header {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 36px;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1fr 0.9fr;
}

.services-header h2,
.process-section h2,
.contact-section h2,
.final-cta h2 {
  color: var(--white);
}

.services-header h2 {
  margin-bottom: 0;
}

.services-header p {
  margin-bottom: 7px;
  color: #bad3de;
}

.service-directory {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 42px;
  flex-wrap: wrap;
  gap: 9px;
}

.service-directory a {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9eef5;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 180ms var(--ease-out), border 180ms var(--ease-out);
}

.service-directory a:hover {
  border-color: var(--aqua);
  background: rgba(34, 211, 197, 0.12);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 345px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border 220ms var(--ease-out);
}

.service-card-image {
  width: 100%;
  height: 164px;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.service-card-image + .service-icon {
  margin-bottom: 20px;
}

.service-card:hover,
.service-card:target {
  border-color: rgba(34, 211, 197, 0.65);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(23, 189, 244, 0.22), rgba(34, 211, 197, 0.16));
  color: #77ede5;
}

.service-icon.warm {
  background: rgba(255, 159, 67, 0.15);
  color: #ffc184;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.22);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 26px;
  color: #b9ced7;
  font-size: 0.88rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #77ede5;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card a svg {
  width: 17px;
  transition: transform 180ms var(--ease-out);
}

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

.climate-section {
  background: var(--soft);
}

.climate-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.8fr 1.2fr;
}

.climate-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.climate-intro .large {
  color: #355160;
  font-size: 1.08rem;
}

.climate-stat {
  margin-top: 42px;
  padding: 24px;
  border-left: 4px solid var(--aqua);
  border-radius: 0 18px 18px 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.climate-stat strong,
.climate-stat span {
  display: block;
}

.climate-stat strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
}

.climate-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.83rem;
}

.climate-content {
  display: grid;
  gap: 18px;
}

.climate-card {
  display: grid;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 24, 38, 0.04);
  gap: 24px;
  grid-template-columns: auto 1fr;
}

.climate-card > span {
  color: #7ac9df;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.climate-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.climate-card p {
  margin-bottom: 12px;
  font-size: 0.91rem;
}

.climate-card p:last-child {
  margin-bottom: 0;
}

.climate-card a,
.faq-answer a {
  color: #087ba5;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 123, 165, 0.25);
  text-underline-offset: 3px;
}

.area-section {
  background: var(--white);
}

.area-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: 0.72fr 1.28fr;
}

.area-list-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
}

.area-list-card {
  padding: 30px;
}

.area-list-heading {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
}

.area-list-heading > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 13px;
  background: var(--ice);
  color: #087ba5;
}

.area-list-heading strong,
.area-list-heading span {
  display: block;
}

.area-list-heading strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}

.area-list-heading span {
  color: var(--muted);
  font-size: 0.75rem;
}

.area-list {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 9px 12px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 18px;
  color: #405762;
  font-size: 0.78rem;
}

.area-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  content: '';
}

.area-list-card .button {
  width: 100%;
}

.map-card {
  overflow: hidden;
  padding: 10px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.service-map {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  border-radius: 19px;
  background: #dcecf0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #264856;
}

.map-placeholder strong {
  margin-top: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
}

.map-placeholder span:last-child {
  margin-top: 4px;
  color: #607780;
  font-size: 0.76rem;
}

.map-radar {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(23, 189, 244, 0.25);
}

.map-radar::before,
.map-radar::after,
.map-radar i {
  position: absolute;
  border: 1px solid rgba(7, 24, 38, 0.22);
  border-radius: 50%;
  content: '';
}

.map-radar::before { inset: 14px; }
.map-radar::after { inset: 25px; background: var(--navy); }
.map-radar i:nth-child(1) { inset: -12px; }
.map-radar i:nth-child(2) { inset: -24px; }
.map-radar i:nth-child(3) { inset: -36px; }

.map-legend {
  display: flex;
  min-height: 64px;
  padding: 13px 16px 5px;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #c7dde6;
  font-size: 0.7rem;
}

.map-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pin-main { background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 159, 67, 0.16); }
.pin-area { background: var(--aqua); box-shadow: 0 0 0 4px rgba(34, 211, 197, 0.12); }
.approximate-label { margin-left: auto; color: #76e8df; font-weight: 700; }

.leaflet-container {
  z-index: 2;
  width: 100%;
  height: 520px;
  font-family: 'DM Sans', sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(7, 24, 38, 0.18);
}

.leaflet-popup-content {
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.4;
}

.leaflet-popup-content strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #082435;
}

.process-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(circle at center, var(--aqua) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  content: '';
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
}

.process-section .section-heading {
  position: relative;
  z-index: 1;
}

.process-section .section-heading p {
  color: #b2cbd5;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: -1;
  top: 46px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 197, 0.55), transparent);
  content: '';
}

.process-step {
  min-height: 266px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.step-number {
  float: right;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(34, 211, 197, 0.08);
}

.process-step h3 {
  min-height: 48px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: #b4cad4;
  font-size: 0.85rem;
}

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 78px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.faq-sidebar p {
  margin-bottom: 26px;
}

.faq-directory {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-directory a {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #49606b;
  font-size: 0.7rem;
  font-weight: 700;
  transition: border 180ms var(--ease-out), color 180ms var(--ease-out);
}

.faq-directory a:hover {
  border-color: var(--aqua);
  color: #087ba5;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.faq-item:target,
.faq-item.open {
  border-color: rgba(23, 189, 244, 0.5);
  box-shadow: 0 12px 28px rgba(7, 24, 38, 0.06);
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.faq-item button {
  display: flex;
  width: 100%;
  padding: 21px 22px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  text-align: left;
  transition: background 180ms var(--ease-out);
}

.faq-item button:hover {
  background: #f8fdff;
}

.faq-item button svg {
  flex: 0 0 auto;
  color: #078cb3;
  transition: transform 220ms var(--ease-out);
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 260ms var(--ease-out);
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 23px;
  font-size: 0.9rem;
  transition: padding 260ms var(--ease-out);
}

.js .faq-answer {
  grid-template-rows: 0fr;
}

.js .faq-answer > p {
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 22px 23px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(34, 211, 197, 0.16), transparent 30%),
    linear-gradient(145deg, #061b2a, #0a3045);
}

.contact-section::after {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: '';
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-info > p {
  max-width: 490px;
  color: #bfd1d9;
  font-size: 1.02rem;
}

.contact-cards {
  display: grid;
  margin-top: 34px;
  gap: 13px;
}

.contact-detail {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  gap: 14px;
}

a.contact-detail {
  transition: transform 180ms var(--ease-out);
}

a.contact-detail:hover {
  transform: translateX(5px);
}

.contact-detail > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(34, 211, 197, 0.12);
  align-items: center;
  justify-content: center;
  color: #67e6dc;
}

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  color: #8faab6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong {
  margin-top: 3px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-note {
  display: flex;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
  gap: 13px;
  color: #adc4cf;
  font-size: 0.8rem;
}

.contact-note svg {
  flex: 0 0 auto;
  color: var(--aqua);
}

.contact-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.form-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.24);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading > span {
  color: #087ba5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 6px;
  font-size: 1.7rem;
}

.form-heading p {
  margin: 0;
  font-size: 0.78rem;
}

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #243945;
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cddfe6;
  border-radius: 12px;
  background: #fbfeff;
  color: var(--text);
  transition: border 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 189, 244, 0.12);
  outline: none;
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: #c83d4e;
  background: #fffafa;
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 4px;
  color: #b42336;
  font-size: 0.68rem;
  line-height: 1.3;
}

.consent-field {
  display: grid;
  margin-top: 3px;
  align-items: start;
  gap: 10px;
  grid-template-columns: auto 1fr;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--royal);
}

.consent-field label {
  color: #60717a;
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-error {
  margin: 3px 0 12px 28px;
}

.button-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--gradient);
  box-shadow: 0 14px 26px rgba(23, 189, 244, 0.22);
  color: var(--navy);
}

.button-submit:hover {
  box-shadow: 0 18px 34px rgba(23, 189, 244, 0.32);
  transform: translateY(-2px);
}

.form-status {
  min-height: 22px;
  margin-top: 11px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-status.notice {
  padding: 10px 12px;
  background: var(--ice);
  color: #0d5872;
}

.form-status.error {
  padding: 10px 12px;
  background: #fff0f2;
  color: #9d2334;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--gradient);
}

.final-cta::before {
  position: absolute;
  top: -140px;
  left: 40%;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: '';
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.final-cta h2 {
  max-width: 690px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.final-cta p {
  margin: 0;
  color: #13445a;
  font-weight: 500;
}

.final-cta .section-kicker {
  color: #0b5d76;
}

.final-cta-actions {
  flex: 0 0 auto;
}

.button-white {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 24, 38, 0.12);
  color: var(--navy);
}

.button-outline-white {
  border: 1px solid rgba(7, 24, 38, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--navy);
}

.button-white:hover,
.button-outline-white:hover {
  transform: translateY(-3px);
}

.site-footer {
  padding: 70px 0 0;
  background: #05141f;
  color: #b8cbd3;
}

.footer-main {
  display: grid;
  padding-bottom: 46px;
  gap: 80px;
  grid-template-columns: 1.5fr 1fr 0.7fr;
}

.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-wordmark span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: #839da9;
  font-size: 0.88rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer-column a,
.footer-column span {
  color: #9bb0ba;
  font-size: 0.78rem;
  line-height: 1.6;
  transition: color 180ms var(--ease-out);
}

.footer-column a:hover {
  color: var(--aqua);
}

.footer-disclaimer {
  padding-top: 26px;
  padding-bottom: 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: #6f8994;
  font-size: 0.65rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #75909b;
  font-size: 0.7rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a9c0c9;
}

.footer-bottom a svg {
  width: 16px;
  transform: rotate(-90deg);
}

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

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

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

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
  }

  .menu-toggle .menu-close {
    display: none;
  }

  .menu-toggle[aria-expanded='true'] .menu-open {
    display: none;
  }

  .menu-toggle[aria-expanded='true'] .menu-close {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-height));
    padding: 20px 22px 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 34px rgba(7, 24, 38, 0.14);
    gap: 3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  }

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

  .mobile-menu a {
    padding: 12px 8px;
    border-bottom: 1px solid #eef5f7;
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
  }

  .mobile-menu .mobile-menu-call {
    margin-top: 12px;
    border: 0;
    border-radius: 13px;
    background: var(--orange);
    text-align: center;
  }

  .hero-grid {
    gap: 44px;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .trust-bar > div {
    padding-inline: 14px;
  }

  .about-grid {
    gap: 65px;
  }

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

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 86px 0;
  }

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

  .brand {
    width: 205px;
  }

  .header-call span,
  .header-call strong {
    display: none;
  }

  .header-call {
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .header-call svg {
    margin: 0;
    color: var(--aqua);
  }

  .hero {
    padding-top: calc(var(--header-height) + 60px);
  }

  .hero-grid,
  .about-grid,
  .climate-grid,
  .area-grid,
  .faq-grid,
  .contact-grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(620px, 100%);
    margin: 0 auto;
    padding-left: 0;
  }

  .hero-image-frame {
    aspect-ratio: 1.25;
    border-radius: 30px 30px 80px 30px;
  }

  .trust-bar {
    margin-top: 52px;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar > div:nth-child(3) {
    border-left: 0;
  }

  .trust-bar > div:nth-child(n+3) {
    margin-top: 20px;
  }

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

  .about-visual {
    width: min(660px, 100%);
  }

  .image-main {
    width: 85%;
  }

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

  .services-header,
  .section-heading.split {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .climate-intro,
  .faq-sidebar {
    position: static;
  }

  .climate-intro {
    max-width: 650px;
  }

  .area-list-card {
    order: 2;
  }

  .map-card {
    order: 1;
  }

  .contact-info {
    max-width: 700px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-main > nav {
    grid-column: 1 / -1;
  }
}

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

  body {
    padding-bottom: 62px;
    font-size: 15px;
  }

  .container {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    width: 170px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-call,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .hero-intro {
    font-size: 0.94rem;
  }

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

  .hero-image-frame {
    aspect-ratio: 0.9;
    border-width: 6px;
    border-radius: 24px 24px 65px 24px;
  }

  .availability-card {
    top: 17px;
    left: 17px;
  }

  .location-card {
    right: 15px;
    bottom: 17px;
  }

  .shard-one {
    right: -32px;
  }

  .trust-bar {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .trust-bar > div {
    padding: 12px 4px;
  }

  .trust-bar > div + div,
  .trust-bar > div:nth-child(3) {
    margin-top: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading.compact {
    display: block;
  }

  .needs-grid,
  .why-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .need-card {
    min-height: 112px;
  }

  .image-stack {
    min-height: 470px;
  }

  .image-main {
    width: 90%;
    height: 420px;
    border-radius: 22px 60px 22px 22px;
  }

  .image-inset {
    right: -6px;
    bottom: -18px;
    width: 52%;
    height: 185px;
    border-width: 6px;
  }

  .air-quality-chip {
    top: 28px;
    right: -7px;
    padding: 12px 14px;
    font-size: 0.68rem;
  }

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

  .services-section::before {
    right: -360px;
  }

  .service-directory {
    gap: 7px;
  }

  .service-directory a {
    padding: 7px 11px;
    font-size: 0.68rem;
  }

  .climate-card {
    padding: 24px;
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .service-map,
  .leaflet-container {
    min-height: 430px;
    height: 430px;
  }

  .map-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .approximate-label {
    margin-left: 0;
  }

  .process-step {
    min-height: auto;
  }

  .faq-grid {
    gap: 36px;
  }

  .faq-item button {
    padding: 18px;
  }

  .faq-item.open .faq-answer > p {
    padding: 0 18px 20px;
  }

  .form-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

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

  .contact-detail strong {
    font-size: 0.78rem;
  }

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

  .footer-main > nav {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 450;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(7, 24, 38, 0.24);
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-call-bar svg {
    width: 19px;
    height: 19px;
  }

  .mobile-call-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(140%);
  }
}

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