:root {
  --navy-950: #091524;
  --navy-900: #10253c;
  --navy-800: #163452;
  --blue-600: #1f6fae;
  --blue-500: #2f86c8;
  --steel-500: #66768a;
  --steel-300: #a1b1c0;
  --paper: #f6f2ec;
  --paper-deep: #efe7dc;
  --white: #ffffff;
  --ink: #13212f;
  --copy: #47586b;
  --copy-soft: #6c7a88;
  --line: rgba(16, 37, 60, 0.1);
  --line-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 60px rgba(9, 21, 36, 0.12);
  --shadow-card: 0 14px 34px rgba(9, 21, 36, 0.08);
  --shadow-lift: 0 22px 44px rgba(9, 21, 36, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --site-width: 1440px;
  --content-width: 1320px;
  --section-space: clamp(72px, 9vw, 124px);
  --side-pad: clamp(18px, 4vw, 72px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--copy);
  background: linear-gradient(180deg, #f8f4ee 0%, #f3efe8 100%);
  line-height: 1.6;
}

body.intro-lock {
  overflow: hidden;
}

html:not(.js-enabled) [data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal] {
  opacity: 1;
}

html.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.js-enabled [data-hero] {
  opacity: 0;
  transform: translateY(18px);
}

html.js-enabled [data-hero].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

iframe {
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.container,
.section-header,
.page-intro,
.content-header,
.footer-shell,
.header-shell {
  width: min(calc(100% - (var(--side-pad) * 2)), var(--content-width));
  margin: 0 auto;
}

.section-header,
.page-intro,
.content-header {
  max-width: 1180px;
}

.section-header h2,
.page-intro h2,
.content-header h2 {
  max-width: 1100px;
}

.section-header p,
.page-intro p,
.content-header p {
  max-width: 1050px;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(47, 134, 200, 0.2), transparent 38%),
    linear-gradient(160deg, rgba(9, 21, 36, 0.98), rgba(9, 21, 36, 0.92));
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.brand-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-intro-mark {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  color: var(--white);
  animation: introPulse 1.55s ease both;
}

.brand-intro-mark img {
  width: min(460px, 72vw);
  height: auto;
}

.brand-intro-mark strong {
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.22em;
  font-weight: 700;
}

.brand-intro-mark span {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
}

@keyframes introPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  55% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding 0.35s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 32px rgba(9, 21, 36, 0.1);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-link img {
  width: min(190px, 35vw);
  height: auto;
}

.brand-fallback {
  display: none;
  color: var(--navy-900);
}

.brand-fallback strong,
.footer-wordmark strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.brand-fallback span,
.footer-wordmark span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copy-soft);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), #d76343);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.header-phone {
  font-size: 0.9rem;
  color: var(--navy-900);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--navy-900);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.button,
.button-secondary,
.ghost-link,
.floating-call,
.hero-card a,
.contact-card a {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
}

.button {
  background: linear-gradient(135deg, var(--blue-500), #105487);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(31, 111, 174, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.is-dark {
  background: var(--navy-900);
  box-shadow: 0 14px 28px rgba(9, 21, 36, 0.16);
}

.button-secondary.is-dark {
  border-color: var(--line);
  background: rgba(16, 37, 60, 0.04);
  color: var(--navy-900);
}

.button:hover,
.button-secondary:hover,
.floating-call:hover,
.hero-card a:hover,
.contact-card a:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  padding: clamp(42px, 6vw, 78px) 0 48px;
  min-height: clamp(720px, 90vh, 940px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 21, 36, 0.1) 0%, rgba(9, 21, 36, 0.34) 54%, rgba(9, 21, 36, 0.74) 82%, rgba(9, 21, 36, 0.92) 100%),
    linear-gradient(135deg, rgba(9, 21, 36, 0.86), rgba(16, 37, 60, 0.56)),
    var(--hero-image, linear-gradient(135deg, #123252, #425466));
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: clamp(28px, 5vw, 56px);
  border-bottom-right-radius: clamp(28px, 5vw, 56px);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 38px);
  min-height: clamp(680px, 82vh, 860px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  color: var(--white);
  padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 6vw, 58px);
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 7vw, 5.9rem);
  max-width: 14ch;
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-note strong {
  color: var(--white);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 18px;
  padding-bottom: clamp(24px, 5vw, 44px);
}

.hero-card,
.contact-card,
.map-shell,
.form-shell,
.guide-callout,
.service-card,
.process-step,
.info-strip,
.insight-card,
.dual-panel,
.highlight-card,
.footer-column,
.trust-band,
.feature-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-card:hover img,
.image-card:hover img,
.media-panel:hover img {
  transform: scale(1.04);
}

.hero-card-copy {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--copy);
}

.hero-card-copy h2,
.hero-card-copy h3 {
  font-size: 1.45rem;
}

.hero-card-copy p {
  color: var(--copy);
  max-width: none;
}

.info-strip {
  margin-top: -26px;
  position: relative;
  z-index: 2;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 236, 0.98));
  border: 1px solid rgba(16, 37, 60, 0.08);
}

.info-strip strong,
.service-card strong,
.process-step strong,
.contact-card strong,
.guide-list strong,
.insight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1rem;
}

.section {
  padding: var(--section-space) 0;
}

.section.surface-dark {
  background:
    radial-gradient(circle at top left, rgba(47, 134, 200, 0.18), transparent 35%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.section.surface-dark h2,
.section.surface-dark h3,
.section.surface-dark strong,
.section.surface-dark .section-header,
.section.surface-dark .card-title {
  color: var(--white);
}

.section.surface-dark p,
.section.surface-dark li,
.section.surface-dark .section-header p,
.section.surface-dark .card-copy {
  color: rgba(255, 255, 255, 0.82);
}

.section.surface-warm {
  background: linear-gradient(180deg, rgba(239, 231, 220, 0.65), rgba(246, 242, 236, 0.92));
}

.section-header,
.page-intro,
.content-header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.section-header h2,
.page-intro h2,
.content-header h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.section-header p,
.page-intro p,
.content-header p {
  margin: 0;
  font-size: 1.04rem;
}

.grid-3,
.grid-2,
.services-grid,
.process-grid,
.guide-grid,
.contact-grid,
.footer-inner,
.stats-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.grid-3,
.services-grid,
.guide-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.service-card,
.process-step,
.insight-card,
.contact-card,
.highlight-card,
.feature-panel,
.form-shell,
.guide-callout {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 37, 60, 0.08);
  padding: 28px;
}

.section.surface-dark .service-card,
.section.surface-dark .process-step,
.section.surface-dark .guide-callout {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card,
.process-step,
.insight-card,
.contact-card,
.feature-panel {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.process-step:hover,
.insight-card:hover,
.contact-card:hover,
.feature-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.service-card p,
.process-step p,
.insight-card p,
.contact-card p,
.feature-panel p,
.guide-callout p,
.form-shell p {
  margin: 0;
}

.card-kicker,
.step-number {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-500);
  font-weight: 700;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 134, 200, 0.12);
}

.dual-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
}

.media-panel,
.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-panel img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.media-panel.tall img {
  aspect-ratio: 4 / 5;
}

.media-panel.wide img {
  aspect-ratio: 16 / 10;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list-clean li {
  position: relative;
  padding-left: 20px;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), #d76343);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 37, 60, 0.94), rgba(22, 52, 82, 0.94));
  color: var(--white);
}

.quote-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.map-shell {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(16, 37, 60, 0.08);
}

.map-shell iframe {
  width: 100%;
  min-height: 420px;
}

.contact-grid {
  align-items: start;
}

.form-shell form {
  display: grid;
  gap: 14px;
}

.form-shell label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 600;
}

.form-shell input,
.form-shell textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 60, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.form-shell textarea {
  min-height: 150px;
  resize: vertical;
}

.cta-section {
  padding: clamp(30px, 4vw, 36px);
  border-radius: calc(var(--radius-lg) + 4px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(130deg, rgba(9, 21, 36, 0.96), rgba(16, 37, 60, 0.9)),
    var(--cta-image, none);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  max-width: 20ch;
}

.cta-section p {
  margin: 14px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 28px 0 38px;
  background: linear-gradient(180deg, #0a1524, #10253c);
  color: rgba(255, 255, 255, 0.82);
}

.footer-shell {
  display: grid;
  gap: 20px;
}

.footer-inner {
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-column {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-column p,
.footer-column li {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-wordmark {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-wordmark img {
  width: min(220px, 100%);
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.floating-call {
  position: fixed;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 26px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #123252, #215f94);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(9, 21, 36, 0.24);
}

.floating-call::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: #67e48d;
  box-shadow: 0 0 0 6px rgba(103, 228, 141, 0.14);
}

.page-home .hero {
  --hero-image: url("assets/hero/mesa-desert-home-hero.png");
}

.page-services .hero {
  --hero-image: url("assets/service/commercial-ac-unit-detail.jpg");
}

.page-process .hero {
  --hero-image: url("assets/team/inspector-with-clipboard.jpg");
}

.page-guide .hero {
  --hero-image: url("assets/service/thermostat-control.jpg");
}

.page-contact .hero {
  --hero-image: url("assets/fleet/generic-service-van.png");
}

.page-home .cta-section {
  --cta-image: url("assets/background/tucson-cactus-garden-home.png");
}

.page-services .cta-section {
  --cta-image: url("assets/background/scottsdale-desert-neighborhood.png");
}

.page-process .cta-section {
  --cta-image: url("assets/background/palm-desert-street.png");
}

.page-guide .cta-section {
  --cta-image: url("assets/hero/desert-cactus-home-hero.png");
}

.page-contact .cta-section {
  --cta-image: url("assets/hero/mesa-desert-home-hero.png");
}

@media (max-width: 1180px) {
  .hero-grid,
  .dual-layout,
  .split-layout,
  .cta-section,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .info-strip,
  .grid-3,
  .services-grid,
  .process-grid,
  .guide-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .header-nav,
  .header-actions .header-phone,
  .header-actions .button {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.is-menu-open .header-shell {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .header-nav {
    position: absolute;
    left: var(--side-pad);
    right: var(--side-pad);
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 37, 60, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-header.is-menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .info-strip,
  .grid-2,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
    min-height: 420px;
  }

  .hero::before {
    inset: 0;
    border-radius: 0 0 28px 28px;
  }

  .hero .container {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .info-strip,
  .grid-3,
  .grid-2,
  .services-grid,
  .process-grid,
  .guide-grid,
  .contact-grid,
  .stats-grid,
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .header-shell {
    padding: 12px 14px;
  }

  .brand-link img {
    width: min(160px, 46vw);
  }

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

  .button,
  .button-secondary,
  .floating-call {
    width: 100%;
  }

  .cta-section {
    padding: 24px;
  }

  .floating-call {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .process-step:hover,
  .insight-card:hover,
  .contact-card:hover,
  .feature-panel:hover,
  .button:hover,
  .button-secondary:hover,
  .floating-call:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
