@import url("./css/header.css");
@import url("./css/hero.css");
@import url("./css/services.css");
@import url("./css/why.css");
@import url("./css/maintenance.css");
@import url("./css/how.css");
@import url("./css/reviews.css");
@import url("./css/cta.css");
@import url("./css/contact.css");
@import url("./css/legal.css");
@import url("./css/footer.css");

:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Manrope", sans-serif;

  --bg: #f3f5f8;
  --bg-rgb: 243, 245, 248;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);

  --theme-accent: #334155;
  --theme-accent-2: #64748b;
  --theme-accent-rgb: 51, 65, 85;
  --theme-accent-2-rgb: 100, 116, 139;

  --accent: var(--theme-accent);
  --accent-2: var(--theme-accent-2);
  --accent-rgb: var(--theme-accent-rgb);

  --hero-temp-pct: 60%;
  --hero-flow-speed: 1.55s;
  --hero-flow-alpha: 0.55;
  --hero-flow-blur: 0.25px;

  --max-w: 1920px;
  --gutter: 60px;
  --radius: 16px;

  --header-offset: 88px;
  --header-offset-scrolled: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0 auto;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: var(--header-offset);
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

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

.service-page {
  position: relative;
  isolation: isolate;
  --service-hero-height: clamp(380px, 62vh, 640px);
  --service-hero-image: url("img/services/hero-bg.jpg");
  --service-hero-position: center;
  padding: calc(var(--header-offset) + clamp(20px, 3vw, 36px)) 0
    clamp(48px, 6vw, 84px);
}

.service-page::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--service-hero-height);
  pointer-events: none;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.12) 44%,
      rgba(var(--bg-rgb), 0.92) 82%,
      rgba(var(--bg-rgb), 1) 100%
    ),
    var(--service-hero-image);
  background-size: cover, cover;
  background-position:
    var(--service-hero-position), var(--service-hero-position);
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}

.service-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      780px 360px at 12% 10%,
      rgba(var(--theme-accent-rgb), 0.14),
      transparent 64%
    ),
    radial-gradient(
      780px 360px at 88% 6%,
      rgba(var(--theme-accent-2-rgb), 0.1),
      transparent 62%
    );
  z-index: 1;
}

.service-page__inner {
  margin: 0 auto;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.service-page--ac-repair {
  --service-hero-image: url("img/services/ac-repair.jpg");
  --service-hero-position: center right;
}

.service-page--ac-installation {
  --service-hero-image: url("img/services/ac-instalation.jpg");
}

.service-page--heating-repair {
  --service-hero-image: url("img/services/heating.jpg");
}

.service-page--heat-pumps {
  --service-hero-image: url("img/services/heating-pump.jpg");
}

.service-page--ductless-mini-splits {
  --service-hero-image: url("img/services/duct.jpg");
}

.service-page--indoor-air-quality {
  --service-hero-image: url("img/services/iaq.jpg");
}

.service-page--maintenance-plans {
  --service-hero-image: url("img/services/thermo.jpg");
}

.service-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.service-page__back:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--theme-accent-rgb), 0.35);
  color: var(--theme-accent);
  box-shadow: 0 0 0 4px rgba(var(--theme-accent-rgb), 0.08);
}

.service-page__title {
  margin: 8px 0 0;
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(15, 23, 42, 0.95);
  font-size: clamp(28px, 4vw, 44px);
  z-index: 1;
}

.service-page__lead {
  margin: 0;
  max-width: 70ch;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  z-index: 1;
}

.service-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.service-hero {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
  isolation: isolate;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(var(--theme-accent-rgb), 0.62),
    rgba(255, 255, 255, 0.2) 44%,
    rgba(var(--theme-accent-2-rgb), 0.28)
  );
  opacity: 0.82;
  transition: opacity 260ms ease;
  z-index: 1;
}

.service-hero__img {
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  object-fit: cover;
  transform: scale(1.02);
  filter: grayscale(1) contrast(1.04);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
}

.service-hero__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 900;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.service-hero:hover::after,
.service-hero:focus-within::after {
  opacity: 0.18;
}

.service-hero:hover .service-hero__img,
.service-hero:focus-within .service-hero__img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.06);
}

.service-page__list {
  margin: 8px 0 0;
  padding-left: 20px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  display: grid;
  gap: 8px;
}

.service-page__list--expanded {
  padding-left: 18px;
  line-height: 1.75;
  gap: 10px;
}

.service-page__list--expanded strong {
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
}

.service-page__section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.service-page__h2 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(15, 23, 42, 0.94);
  font-size: clamp(18px, 2.2vw, 26px);
}

.service-page__h3 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.94);
  font-size: 16px;
}

.service-page__p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  line-height: 1.75;
  max-width: 78ch;
}

.service-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

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

.service-page__card {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(
      480px 280px at 18% 18%,
      rgba(var(--theme-accent-rgb), 0.08),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.service-page__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  font-size: 13.5px;
  line-height: 1.55;
}

.service-page__bullets li {
  position: relative;
  padding-left: 16px;
}

.service-page__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(var(--theme-accent-rgb), 0.92);
  box-shadow: 0 0 0 3px rgba(var(--theme-accent-rgb), 0.12);
}

.service-page__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-page__step {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.05);
  padding: 14px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.service-page__step-num {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(var(--theme-accent-rgb), 0.2);
  background: rgba(var(--theme-accent-rgb), 0.08);
}

.service-page__step-title {
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.94);
}

.service-faq {
  gap: 10px;
}

.service-faq__item {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
  overflow: clip;
}

.service-faq__summary {
  cursor: pointer;
  padding: 14px 14px;
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  list-style: none;
  position: relative;
}

.service-faq__summary::-webkit-details-marker {
  display: none;
}

.service-faq__summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(var(--theme-accent-rgb), 0.85);
  border-bottom: 2px solid rgba(var(--theme-accent-rgb), 0.85);
  transform: translateY(-58%) rotate(45deg);
  transition: transform 180ms ease;
}

.service-faq__item[open] .service-faq__summary::after {
  transform: translateY(-42%) rotate(-135deg);
}

.service-faq__content {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-page__callout {
  border-radius: 22px;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.22);
  background:
    radial-gradient(
      520px 320px at 22% 18%,
      rgba(var(--theme-accent-rgb), 0.14),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.service-page__link {
  width: fit-content;
  color: var(--theme-accent);
  font-weight: 900;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.service-page__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--theme-accent),
    var(--theme-accent-2)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.9;
}

.service-page__link:hover::after,
.service-page__link:focus-visible::after {
  transform: scaleX(1);
}

:where(
  .header-cta,
  .header-emergency,
  .header-link,
  .hero__cta,
  .header-burger,
  .mobile-menu-cta,
  .mobile-menu-close,
  .mobile-menu-link,
  .mobile-menu-details > summary,
  .mobile-menu-details a,
  .service-showcase__cta,
  .comfort-block__cta,
  .plan__cta,
  .mobile-cta__btn,
  .final-cta__primary,
  .final-cta__secondary,
  .service-page__back,
  .service-page__link,
  button
):focus-visible {
  outline: 2px solid rgba(var(--theme-accent-rgb), 0.55);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  :root {
    --gutter: clamp(16px, 3.5vw, 40px);
  }
}

@media (max-width: 992px) {
  :root {
    --gutter: 20px;
  }
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  z-index: 2400;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.92);
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
  white-space: nowrap;
}

.mobile-cta__icon {
  width: 16px;
  height: 16px;
}

.mobile-cta__icon svg {
  width: 16px;
  height: 16px;
}

.mobile-cta__btn--primary {
  border-color: rgba(var(--theme-accent-rgb), 0.22);
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-2));
  color: #fff;
  box-shadow: 0 14px 34px rgba(var(--theme-accent-rgb), 0.22);
}

.mobile-cta__btn:hover,
.mobile-cta__btn:focus-visible {
  transform: translateY(-1px);
}

.mobile-cta__btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  html.is-mobile-menu-open .mobile-cta,
  html.has-cookie-banner .mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(14px);
  width: min(980px, calc(100% - 32px));
  z-index: 3000;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.18);
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  padding: 14px 14px 12px;
  display: grid;
  gap: 12px;
}

.cookie-banner__title {
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__title-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.18);
  background: rgba(var(--theme-accent-rgb), 0.08);
  box-shadow: 0 12px 28px rgba(var(--theme-accent-rgb), 0.08);
  flex: 0 0 auto;
}

.cookie-banner__title-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(var(--theme-accent-rgb), 0.92);
}

.cookie-banner__text {
  margin: 6px 0 0;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  line-height: 1.6;
  font-size: 13px;
  max-width: 80ch;
}

.cookie-banner__link {
  color: var(--theme-accent);
  font-weight: 900;
  text-decoration: none;
  margin-left: 6px;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  font-family: var(--second-family);
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.cookie-btn__icon {
  width: 16px;
  height: 16px;
}

.cookie-btn--primary {
  border-color: rgba(var(--theme-accent-rgb), 0.22);
  background: linear-gradient(
    135deg,
    var(--theme-accent),
    var(--theme-accent-2)
  );
  color: #fff;
  box-shadow: 0 14px 34px rgba(var(--theme-accent-rgb), 0.22);
}

.cookie-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn:focus-visible {
  outline: 2px solid rgba(var(--theme-accent-rgb), 0.55);
  outline-offset: 3px;
}

.cookie-banner__settings {
  padding: 0 14px 14px;
}

.cookie-settings {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.cookie-settings__row {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.cookie-settings__name {
  font-family: var(--second-family);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-settings__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--theme-accent-rgb), 0.9);
  flex: 0 0 auto;
}

.cookie-settings__icon svg {
  width: 16px;
  height: 16px;
}

.cookie-settings__desc {
  margin-top: 4px;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.55;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__ui {
  width: 46px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  position: relative;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.cookie-switch__ui::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
  transition: transform 160ms ease;
}

.cookie-switch input:checked + .cookie-switch__ui {
  background: rgba(var(--theme-accent-rgb), 0.2);
  border-color: rgba(var(--theme-accent-rgb), 0.28);
}

.cookie-switch input:checked + .cookie-switch__ui::after {
  transform: translateY(-50%) translateX(18px);
}

.cookie-switch input:disabled + .cookie-switch__ui {
  opacity: 0.65;
}

.cookie-settings__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 4px;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-settings__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-settings__actions {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }

  .cookie-btn {
    transition: none;
  }

  .cookie-switch__ui,
  .cookie-switch__ui::after {
    transition: none;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  .service-page__inner {
    isolation: isolate;
  }

  .service-page__inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: min(calc(var(--service-hero-height) + 40px), 520px);
    pointer-events: none;
    border-radius: 26px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.78) 42%,
      rgba(var(--bg-rgb), 0.84) 74%,
      rgba(var(--bg-rgb), 0) 100%
    );
    box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
  }

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

  .service-hero__caption {
    font-size: 12.5px;
  }

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

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

@media (max-width: 480px) {
  :root {
    --gutter: 12px;
  }
}

html.lenis,
html.lenis body,
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
