:root {
  --navy-950: #04131f;
  --navy-900: #071c2c;
  --navy-800: #0b2a3e;
  --navy-700: #123d56;
  --cyan-500: #00d9e8;
  --cyan-400: #38edf2;
  --cyan-100: #d9fbfc;
  --blue-500: #1686ec;
  --orange-500: #ff7a1a;
  --orange-400: #ff923d;
  --ice-50: #f7fbfc;
  --ice-100: #eef6f7;
  --ice-200: #ddebed;
  --slate-500: #647786;
  --slate-700: #344b5c;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(6, 32, 48, 0.12);
  --shadow-card: 0 16px 40px rgba(6, 32, 48, 0.08);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ice-50);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button:active,
.button:active,
.floating-call:active {
  transform: scale(0.97);
}

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

::selection {
  background: var(--cyan-500);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(7, 28, 44, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(4, 19, 31, 0.08);
  color: var(--navy-900);
  backdrop-filter: blur(16px);
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 34px rgba(4, 19, 31, 0.13);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: 230px;
  flex: 0 0 auto;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(14px, 1.5vw, 26px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 160ms var(--ease-out);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan-500);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--navy-900);
}

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

.header-phone {
  display: flex;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(8, 124, 139, 0.3);
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.header-phone:hover {
  border-color: var(--navy-900);
  background: var(--navy-800);
}

.header-phone strong {
  display: block;
  font-size: 0.82rem;
}

.header-phone svg,
.hero-actions svg,
.floating-call svg,
.submit-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(7, 28, 44, 0.18);
  border-radius: 6px;
  background: var(--ice-50);
  color: var(--navy-900);
}

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

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

.mobile-nav {
  position: fixed;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 24px 40px;
  overflow-y: auto;
  background: var(--navy-950);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.mobile-nav .mobile-menu-phone {
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  background: var(--orange-500);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 830px;
  padding: 148px 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 25%, rgba(0, 217, 232, 0.15), transparent 28%),
    linear-gradient(115deg, var(--navy-950) 0%, var(--navy-900) 62%, #0a3041 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 45%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -140px;
  width: 60%;
  height: 260px;
  transform: rotate(-8deg);
  background: var(--cyan-500);
  content: "";
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.hero-grid,
.section-shell,
.value-strip-inner,
.cta-inner,
.final-cta-inner,
.footer-main,
.footer-disclaimer,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: clamp(44px, 6vw, 94px);
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow.dark {
  color: #087c8b;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

h1 em {
  color: var(--cyan-400);
  font-style: italic;
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: 1.7rem;
}

.hero-lede {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button-hot {
  background: var(--orange-500);
  box-shadow: 0 10px 28px rgba(255, 122, 26, 0.22);
  color: var(--white);
}

.button-hot:hover {
  background: var(--orange-400);
  box-shadow: 0 14px 32px rgba(255, 122, 26, 0.3);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--cyan-500);
  background: rgba(0, 217, 232, 0.08);
  transform: translateY(-2px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.compact {
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.76rem;
}

.hero-values {
  display: flex;
  margin: 30px 0 20px;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero-values span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-values svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 2;
}

.text-link,
.inline-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 217, 232, 0.3);
  color: var(--cyan-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: gap 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.text-link:hover,
.inline-arrow:hover {
  gap: 16px;
  border-color: currentColor;
}

.hero-visual {
  position: relative;
  padding: 28px 0 54px 36px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 160px 6px 6px 6px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 19, 31, 0.58), transparent 48%);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 62% center;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  align-items: center;
  gap: 10px;
  background: rgba(4, 19, 31, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 6px rgba(56, 237, 242, 0.14);
}

.weather-card {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 10px;
  left: 0;
  display: flex;
  max-width: 420px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  align-items: center;
  gap: 14px;
  background: rgba(7, 28, 44, 0.94);
  box-shadow: var(--shadow-soft);
}

.weather-card div {
  flex: 1;
}

.weather-card strong,
.weather-card span {
  display: block;
}

.weather-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.weather-card div span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.weather-icon {
  color: var(--cyan-400);
  font-size: 1.55rem;
}

.weather-icon.hot {
  color: var(--orange-400);
}

.crystal {
  position: absolute;
  z-index: -1;
  background: linear-gradient(145deg, rgba(56, 237, 242, 0.36), rgba(22, 134, 236, 0.03));
  clip-path: polygon(50% 0, 100% 45%, 70% 100%, 14% 78%, 0 28%);
}

.crystal-one {
  top: -22px;
  right: -60px;
  width: 180px;
  height: 240px;
  transform: rotate(18deg);
}

.crystal-two {
  bottom: 0;
  left: -22px;
  width: 110px;
  height: 150px;
  transform: rotate(-20deg);
  opacity: 0.48;
}

.value-strip {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.value-strip-inner {
  display: grid;
  border: 1px solid var(--ice-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(3, 1fr);
}

.value-strip article {
  display: flex;
  min-height: 146px;
  padding: 32px;
  align-items: flex-start;
  gap: 18px;
}

.value-strip article + article {
  border-left: 1px solid var(--ice-200);
}

.value-strip article > span {
  color: var(--cyan-500);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.value-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.value-strip p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.78rem;
  line-height: 1.6;
}

.section {
  padding: 128px 0;
}

.about-section {
  padding-top: 154px;
  background: var(--ice-50);
}

.about-grid,
.area-grid,
.contact-grid,
.faq-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(60px, 8vw, 116px);
}

.about-visual {
  position: relative;
  padding-right: 34px;
  padding-bottom: 44px;
}

.image-cutout {
  position: relative;
  overflow: hidden;
  border-radius: 8px 110px 8px 8px;
  box-shadow: var(--shadow-soft);
}

.image-cutout::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 28, 44, 0.38), transparent 48%);
  content: "";
}

.image-cutout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-chip {
  position: absolute;
  right: -12px;
  bottom: 0;
  display: flex;
  padding: 20px 24px;
  border-radius: 6px;
  align-items: center;
  gap: 14px;
  background: var(--navy-900);
  box-shadow: var(--shadow-card);
  color: var(--white);
}

.location-chip svg,
.address-block svg,
.contact-copy address svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 1.7;
}

.location-chip span,
.address-block span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-copy h2,
.area-copy h2,
.why-heading h2 {
  color: var(--navy-900);
}

.section-copy .lead,
.area-copy .lead {
  color: var(--navy-700);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.75;
}

.section-copy p,
.area-copy p,
.why-heading > p,
.why-intro-side p {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.inline-arrow {
  margin-top: 14px;
  color: #087c8b;
}

.services-section {
  position: relative;
  background: var(--ice-100);
}

.services-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background: linear-gradient(135deg, transparent 0 44%, rgba(0, 217, 232, 0.04) 44% 55%, transparent 55% 100%);
  background-size: 90px 90px;
  content: "";
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-eye {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate-500);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 332px;
  padding: 30px 26px 26px;
  overflow: hidden;
  border: 1px solid #d9e7e9;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(6, 32, 48, 0.04);
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.service-card.has-image {
  padding-top: 0;
}

.service-card-media {
  position: relative;
  height: 146px;
  margin: 0 -26px 24px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: var(--ice-200);
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 19, 31, 0.3), transparent 58%);
  content: "";
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.service-card:hover .service-card-media img {
  transform: scale(1.035);
}

.service-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: var(--cyan-500);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0.06;
  transition: opacity 180ms var(--ease-out);
}

.service-card:hover,
.service-card:target {
  z-index: 2;
  border-color: rgba(0, 217, 232, 0.65);
  box-shadow: 0 20px 44px rgba(6, 32, 48, 0.12);
  transform: translateY(-6px);
}

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

.service-card.feature-card {
  background: var(--navy-900);
  color: var(--white);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 5px;
  place-items: center;
  background: var(--cyan-100);
  color: #078596;
}

.service-icon.cool {
  background: #e6f2ff;
  color: var(--blue-500);
}

.service-icon.warm {
  background: #fff0e6;
  color: var(--orange-500);
}

.feature-card .service-icon {
  background: rgba(0, 217, 232, 0.14);
  color: var(--cyan-400);
}

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

.service-number {
  position: absolute;
  top: 30px;
  right: 26px;
  color: #a3b2ba;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--slate-500);
  font-size: 0.77rem;
  line-height: 1.7;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.58);
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: #0b7784;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card a {
  color: var(--cyan-400);
}

.service-card a span {
  transition: transform 160ms var(--ease-out);
}

.service-card a:hover span {
  transform: translateX(5px);
}

.service-detail {
  display: grid;
  margin-top: 70px;
  padding: 54px;
  border-radius: 8px 90px 8px 8px;
  background: var(--navy-900);
  color: var(--white);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
}

.service-detail h3 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  text-transform: uppercase;
}

.service-detail-image {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px 48px 6px 6px;
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-detail-copy p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
}

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

.why-heading {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
}

.why-heading h2 {
  margin-bottom: 0;
}

.why-intro-side {
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr;
  gap: 22px;
}

.why-intro-side img {
  width: 150px;
  height: 118px;
  border-radius: 5px 34px 5px 5px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.why-intro-side p {
  margin: 0;
}

.why-grid {
  display: grid;
  border-top: 1px solid var(--ice-200);
  border-left: 1px solid var(--ice-200);
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid var(--ice-200);
  border-bottom: 1px solid var(--ice-200);
  background: var(--white);
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.why-card:hover {
  z-index: 2;
  background: var(--ice-50);
  transform: translateY(-3px);
}

.why-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #adc0c8;
  font-family: var(--font-display);
  font-weight: 700;
}

.why-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: #0694a3;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.cta-band {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: linear-gradient(110deg, #072234 0%, #0a3549 100%);
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(135deg, transparent 45%, var(--cyan-500) 45% 47%, transparent 47%);
  background-size: 70px 70px;
  content: "";
}

.cta-crystal {
  position: absolute;
  top: -120px;
  right: 8%;
  width: 320px;
  height: 390px;
  transform: rotate(15deg);
  background: linear-gradient(140deg, rgba(0, 217, 232, 0.24), transparent 65%);
  clip-path: polygon(48% 0, 100% 42%, 76% 100%, 15% 78%, 0 27%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner p {
  margin: 0 0 8px;
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-inner h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
}

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

.area-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
}

.address-block {
  display: flex;
  margin: 34px 0;
  padding: 22px;
  border-radius: 7px;
  align-items: center;
  gap: 18px;
  background: var(--navy-900);
  color: var(--white);
}

.area-photo {
  margin: 28px 0 30px;
  overflow: hidden;
  border-radius: 6px 54px 6px 6px;
  box-shadow: var(--shadow-card);
}

.area-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.address-block strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
}

.area-list {
  padding: 22px 0;
  border-top: 1px solid var(--ice-200);
  border-bottom: 1px solid var(--ice-200);
}

.area-list h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.area-list ul {
  margin: 0;
  padding-left: 20px;
  color: var(--slate-500);
}

.map-frame {
  position: relative;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-frame::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--cyan-500);
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.16;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border-radius: 5px;
  filter: saturate(0.75) contrast(1.03);
}

.map-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--cyan-500);
  border-radius: 4px;
  background: rgba(7, 28, 44, 0.92);
  box-shadow: 0 10px 30px rgba(4, 19, 31, 0.2);
  color: var(--white);
}

.map-label span,
.map-label strong {
  display: block;
}

.map-label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.faq-section {
  background: var(--navy-900);
  color: var(--white);
}

.faq-grid {
  align-items: start;
  grid-template-columns: minmax(300px, 0.67fr) minmax(0, 1.33fr);
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.thermostat-image {
  max-width: 320px;
  margin: 30px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px 55px 6px 6px;
}

.thermostat-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item summary {
  display: flex;
  min-height: 84px;
  padding: 20px 6px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

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

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

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

.faq-item[open] summary {
  color: var(--cyan-400);
}

.faq-item p {
  max-width: 720px;
  margin: 0;
  padding: 0 58px 28px 6px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.83rem;
}

.faq-item p a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: #061826;
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(30deg, transparent 47%, var(--cyan-500) 48% 49%, transparent 50%);
  background-size: 100px 100px;
  content: "";
}

.contact-glow {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 217, 232, 0.1);
  filter: blur(100px);
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.contact-phone {
  display: block;
  margin: 40px 0 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-phone span,
.contact-phone strong {
  display: block;
}

.contact-phone span {
  color: var(--cyan-400);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.contact-copy address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-style: normal;
}

.form-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field label span {
  color: var(--orange-400);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.field input {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 136px;
  padding: 13px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan-500);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

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

.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #ff9b8b;
  font-size: 0.66rem;
}

.consent-field {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}

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

.consent-field label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  line-height: 1.6;
}

.consent-error {
  margin-left: 32px;
}

.submit-button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  cursor: pointer;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-status.visible {
  display: block;
}

.form-status.notice {
  border: 1px solid rgba(56, 237, 242, 0.32);
  background: rgba(0, 217, 232, 0.1);
  color: #adf8fa;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.final-cta {
  padding: 38px 0;
  background: var(--cyan-500);
  color: var(--navy-950);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 2px 0 0;
  font-size: 2.8rem;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.footer-main {
  display: grid;
  padding: 80px 0 58px;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 0.9fr;
  gap: 56px;
}

.footer-brand img {
  width: 260px;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-contact address {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-style: normal;
}

.footer-phone {
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}

.footer-main h2 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.footer-links a:hover {
  color: var(--cyan-400);
  transform: translateX(3px);
}

.footer-contact .button {
  margin-top: 18px;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.58rem;
  line-height: 1.65;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  padding: 22px 0 92px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-call {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: 16px;
  display: none;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: var(--orange-500);
  box-shadow: 0 14px 30px rgba(4, 19, 31, 0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), opacity 160ms var(--ease-out);
}

.floating-call.hidden-near-form {
  pointer-events: none;
  opacity: 0;
}

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

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

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

  .reveal-delay {
    transition-delay: 90ms;
  }
}

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

  .brand {
    margin-right: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 110px;
  }

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

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

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

  .value-strip-inner {
    grid-template-columns: 1fr;
  }

  .value-strip article {
    min-height: auto;
  }

  .value-strip article + article {
    border-top: 1px solid var(--ice-200);
    border-left: 0;
  }

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

  .why-heading,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .area-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }

  .map-frame {
    width: 100%;
  }

  .faq-intro {
    position: static;
  }

  .thermostat-image {
    max-width: 420px;
  }

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

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

  .nav-shell,
  .hero-grid,
  .section-shell,
  .value-strip-inner,
  .cta-inner,
  .final-cta-inner,
  .footer-main,
  .footer-disclaimer,
  .footer-bottom {
    width: min(100% - 32px, 1240px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    width: 190px;
  }

  .header-phone {
    display: none;
  }

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

  .mobile-nav {
    top: 72px;
  }

  .hero {
    padding: 116px 0 96px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

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

  .hero-values {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 18px 0 50px 12px;
  }

  .hero-image-wrap {
    border-radius: 90px 6px 6px 6px;
  }

  .hero-image-wrap img {
    min-height: 360px;
  }

  .weather-card {
    right: 0;
    left: 0;
    padding: 16px;
  }

  .weather-card strong {
    font-size: 1.05rem;
  }

  .value-strip {
    margin-top: -42px;
  }

  .value-strip article {
    padding: 24px;
  }

  .section {
    padding: 92px 0;
  }

  .about-section {
    padding-top: 120px;
  }

  .about-visual {
    padding-right: 16px;
  }

  .location-chip {
    right: 0;
    padding: 16px 18px;
  }

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

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

  .service-card-media {
    height: 210px;
  }

  .service-detail {
    margin-top: 42px;
    padding: 30px 24px;
    border-radius: 7px 56px 7px 7px;
  }

  .why-heading {
    margin-bottom: 38px;
  }

  .why-intro-side {
    grid-template-columns: 112px 1fr;
  }

  .why-intro-side img {
    width: 112px;
    height: 98px;
  }

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

  .why-card {
    min-height: 240px;
  }

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

  .map-frame iframe {
    min-height: 420px;
  }

  .faq-item summary {
    min-height: 74px;
    padding: 18px 2px;
    font-size: 1.24rem;
  }

  .faq-item p {
    padding: 0 10px 24px 2px;
  }

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

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

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

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

  .floating-call {
    display: flex;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand {
    width: 170px;
  }

  .hero-grid,
  .section-shell,
  .value-strip-inner,
  .cta-inner,
  .final-cta-inner,
  .footer-main,
  .footer-disclaimer,
  .footer-bottom {
    width: calc(100% - 26px);
  }

  h1 {
    font-size: 3.1rem;
  }

  .weather-icon {
    display: none;
  }

  .image-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .location-chip {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -22px 10px 0;
  }

  .about-visual {
    padding-right: 0;
    padding-bottom: 0;
  }

  .contact-phone strong {
    font-size: 2rem;
  }

  .why-intro-side {
    grid-template-columns: 1fr;
  }

  .why-intro-side img {
    width: 100%;
    height: 170px;
  }
}

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