:root {
  --navy: #071b33;
  --navy-2: #0b2748;
  --navy-3: #12385f;
  --blue: #00aeef;
  --blue-2: #087ee8;
  --blue-soft: #e8f7fe;
  --orange: #ff8c42;
  --orange-2: #ff6b2c;
  --green: #50d829;
  --white: #ffffff;
  --off-white: #f7fafc;
  --mist: #edf4f8;
  --ink: #122238;
  --body: #53677d;
  --line: #dce8ef;
  --success: #14804a;
  --shadow-sm: 0 8px 30px rgba(7, 27, 51, 0.08);
  --shadow-md: 0 20px 60px rgba(7, 27, 51, 0.15);
  --shadow-lg: 0 32px 80px rgba(0, 10, 25, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font-body: "Manrope", sans-serif;
  --font-display: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.48);
  outline-offset: 4px;
}

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

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

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

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

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

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(7, 27, 51, 0.1);
  color: var(--navy);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, 1360px);
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: block;
  min-width: 0;
}

.brand-surface {
  display: flex;
  align-items: center;
  width: 230px;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.brand:hover .brand-surface {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 25px);
}

.nav-link {
  position: relative;
  padding: 32px 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

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

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  line-height: 1.1;
}

.site-header.scrolled .header-call,
.site-header.menu-active .header-call {
  color: var(--navy);
}

.header-call svg {
  width: 21px;
  height: 21px;
  color: var(--orange);
}

.header-call span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}

.header-call small {
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 18%, rgba(0, 174, 239, 0.24), transparent 24%),
    radial-gradient(circle at 12% 78%, rgba(8, 126, 232, 0.13), transparent 25%),
    linear-gradient(118deg, #051426 0%, #071b33 55%, #0a2b4d 100%);
  color: white;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(0, 174, 239, 0.26);
  box-shadow: inset 0 0 100px rgba(0, 174, 239, 0.07), 0 0 120px rgba(0, 174, 239, 0.1);
}

.hero-glow-two {
  bottom: 80px;
  left: 42%;
  width: 220px;
  height: 220px;
  background: rgba(255, 140, 66, 0.05);
  filter: blur(60px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.8fr);
  align-items: center;
  gap: 70px;
  min-height: 810px;
  padding-top: 126px;
  padding-bottom: 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.eyebrow-light {
  color: #b5ddf1;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(80, 216, 41, 0.13);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.3vw, 77px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1::after {
  display: block;
  width: 86px;
  height: 6px;
  margin-top: 28px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: #bdd0e0;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 13px 36px rgba(255, 108, 44, 0.3);
  color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(255, 108, 44, 0.42);
}

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

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.button-dark {
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.16);
  color: white;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  color: #a9c1d5;
  font-size: 12px;
  font-weight: 700;
}

.trust-list span {
  display: block;
  margin-bottom: 2px;
  color: white;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.image-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px 34px 120px 34px;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 24px 24px 105px 24px;
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 58% center;
}

.image-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 38, 0.02), rgba(5, 20, 38, 0.42));
}

.availability-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 33px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 17px;
  background: rgba(7, 27, 51, 0.74);
  color: white;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.availability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(0, 174, 239, 0.16);
  color: var(--blue);
  place-items: center;
}

.availability-icon svg {
  width: 22px;
  height: 22px;
}

.availability-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.availability-card strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.availability-card small {
  color: #b7cde0;
  font-size: 10px;
}

.climate-orbit {
  position: absolute;
  top: -36px;
  right: -39px;
  z-index: 3;
  display: grid;
  width: 102px;
  height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.88);
  box-shadow: 0 14px 45px rgba(0, 174, 239, 0.25);
  color: white;
  text-align: center;
  place-content: center;
}

.climate-orbit::after {
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  content: "";
}

.climate-orbit span {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.climate-orbit small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 18, 34, 0.7);
  backdrop-filter: blur(12px);
}

.ribbon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.ribbon-content p {
  margin: 0;
  color: #9eb7ca;
  font-size: 13px;
}

.ribbon-content p span {
  color: white;
  font-weight: 800;
}

.ribbon-content a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 120px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.03fr);
  align-items: center;
  gap: 95px;
}

.about-visual {
  position: relative;
  padding: 0 0 44px 30px;
}

.about-visual::before {
  position: absolute;
  top: -27px;
  right: 35px;
  left: 3px;
  height: 78%;
  border-radius: 42px;
  background: var(--blue-soft);
  content: "";
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px 90px 28px 28px;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: 55% center;
}

.comfort-chip {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.comfort-chip svg {
  width: 27px;
  height: 27px;
  color: var(--blue-2);
}

.comfort-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.comfort-chip strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.comfort-chip small {
  color: var(--body);
  font-size: 10px;
}

.section-copy h2,
.section-heading h2,
.why-intro h2,
.area-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-copy > p,
.area-copy > p,
.faq-intro > p,
.contact-copy > p {
  color: var(--body);
}

.lead-copy {
  margin-top: 28px;
  color: var(--ink) !important;
  font-size: 17px;
  font-weight: 600;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 33px 0;
}

.about-points div {
  padding: 17px 15px;
  border-left: 2px solid var(--blue);
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.07), transparent);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.about-points span {
  margin-top: 4px;
  color: var(--body);
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.services-section {
  overflow: hidden;
  background: #edf4f7;
}

.services-section::before {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(0, 174, 239, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(0, 174, 239, 0.025), 0 0 0 120px rgba(0, 174, 239, 0.018);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 750px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--body);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(19, 56, 95, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 30px rgba(7, 27, 51, 0.045);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card:hover {
  border-color: rgba(0, 174, 239, 0.32);
  box-shadow: 0 22px 50px rgba(7, 27, 51, 0.11);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #bdd1dc;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 37px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue-2);
  place-items: center;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--blue-2);
  color: white;
  transform: rotate(-3deg);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 11px 0 23px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.service-card-photo {
  position: relative;
  height: 138px;
  flex: 0 0 auto;
  margin: -31px -31px 27px;
  overflow: hidden;
  background: var(--navy-2);
}

.service-card-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 27, 51, 0.28));
  content: "";
  pointer-events: none;
}

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

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

.service-card-photo.crop-equipment img {
  object-position: 28% center;
}

.service-card-photo ~ .service-icon {
  position: relative;
  z-index: 2;
  margin-top: -53px;
  margin-bottom: 18px;
  border: 4px solid white;
}

.service-card > a,
.service-body > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.service-card > a span,
.service-body > a span {
  color: var(--blue-2);
  font-size: 18px;
}

.service-featured {
  grid-row: span 2;
  min-height: 778px;
  padding: 0;
  background: var(--navy);
  color: white;
}

.service-featured .service-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.service-featured .service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 27, 51, 0.34));
  content: "";
}

.service-featured .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-featured .service-number {
  z-index: 2;
  color: white;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 29px 31px;
}

.service-featured .service-icon {
  margin-bottom: 19px;
  background: rgba(0, 174, 239, 0.15);
  color: var(--blue);
}

.service-featured p {
  color: #b7cad9;
}

.service-featured .service-body > a {
  border-color: rgba(255, 255, 255, 0.13);
  color: white;
}

.service-image-card {
  min-height: 310px;
}

.service-mini-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.14;
  mask-image: linear-gradient(90deg, transparent, black 50%);
}

.service-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-card > *:not(.service-mini-image) {
  position: relative;
  z-index: 1;
}

.service-wide {
  grid-column: span 1;
  display: flex;
  min-height: 380px;
}

.service-wide > div:not(.service-card-photo) {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-wide .service-icon {
  flex: 0 0 auto;
  margin: 0;
  border: 0;
}

.service-wide .service-card-photo ~ .service-icon {
  margin-top: -53px;
  margin-bottom: 18px;
  border: 4px solid white;
}

.service-wide p {
  margin: 14px 0 23px;
}

.service-wide > a {
  width: 100%;
  margin-top: auto;
}

.why-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 174, 239, 0.18), transparent 28%),
    linear-gradient(150deg, #061628, #092645);
  color: white;
}

.why-section::before {
  position: absolute;
  top: 180px;
  left: -90px;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.why-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.75fr;
  align-items: end;
  gap: 35px;
  margin-bottom: 57px;
}

.why-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.why-intro h2 {
  grid-column: span 2;
  max-width: 820px;
}

.why-intro > p {
  margin: 0 0 6px;
  color: #b3c8d9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.why-photo-strip {
  position: relative;
  height: 310px;
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px 75px 25px 25px;
  background: var(--navy-2);
  box-shadow: var(--shadow-lg);
}

.why-photo-strip::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 34, 0.78), rgba(4, 18, 34, 0.08) 64%);
  content: "";
}

.why-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.why-photo-strip figcaption {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 35px;
  display: flex;
  flex-direction: column;
  max-width: 360px;
}

.why-photo-strip figcaption span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-photo-strip figcaption strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
}

.why-card {
  min-height: 245px;
  padding: 37px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.why-card:hover {
  background: rgba(0, 174, 239, 0.09);
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  border-radius: 15px;
  background: rgba(0, 174, 239, 0.12);
  color: var(--blue);
  place-items: center;
}

.why-icon svg {
  width: 23px;
  height: 23px;
}

.why-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
}

.why-card p {
  margin: 10px 0 0;
  color: #aac0d2;
  font-size: 13px;
}

.why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 36px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.why-cta div {
  display: flex;
  flex-direction: column;
}

.why-cta span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.why-cta strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 17px;
}

.area-section {
  background: white;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.area-copy > p {
  max-width: 560px;
  margin-top: 24px;
}

.area-photo {
  position: relative;
  height: 205px;
  margin: 27px 0 20px;
  overflow: hidden;
  border-radius: 18px 52px 18px 18px;
  background: var(--mist);
  box-shadow: var(--shadow-sm);
}

.area-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 27, 51, 0.58));
  content: "";
}

.area-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.area-photo span {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 18px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.city-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.city-grid li span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 440px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--off-white);
}

.location-card > svg {
  width: 25px;
  height: 25px;
  color: var(--orange);
}

.location-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.location-card small {
  color: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 30px 90px 30px 30px;
  background: var(--mist);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 546px;
  border: 0;
  border-radius: 20px 76px 20px 20px;
  filter: saturate(0.88) contrast(1.02);
}

.map-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  background: rgba(7, 27, 51, 0.89);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 100px;
}

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

.faq-intro > p {
  margin: 24px 0 31px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-2);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms var(--ease-out);
}

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

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

.faq-list details p {
  max-width: 760px;
  margin: -6px 50px 26px 2px;
  color: var(--body);
  font-size: 14px;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 174, 239, 0.16), transparent 32%),
    linear-gradient(145deg, #061628, #0a294a);
  color: white;
}

.contact-grid {
  opacity: 0.65;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 95px;
}

.contact-copy > p {
  margin: 24px 0 35px;
  color: #b5cadb;
}

.contact-tech-image {
  position: relative;
  height: 215px;
  margin: 0 0 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px 54px 18px 18px;
  background: var(--navy-2);
}

.contact-tech-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 51, 0.24), transparent 65%);
  content: "";
}

.contact-tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.contact-phone,
.contact-address {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-address {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-phone > span,
.contact-address > span {
  display: grid;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  border-radius: 15px;
  background: rgba(0, 174, 239, 0.12);
  color: var(--blue);
  place-items: center;
}

.contact-phone svg,
.contact-address svg {
  width: 23px;
  height: 23px;
}

.contact-phone div,
.contact-address div {
  display: flex;
  flex-direction: column;
}

.contact-phone small,
.contact-address small {
  color: #8ba6bb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 21px;
}

.contact-address strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.55;
}

.lead-form {
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.form-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}

.form-heading span {
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -0.025em;
}

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

.field {
  position: relative;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #ccdae3;
  border-radius: 11px;
  background: #f9fbfc;
  color: var(--ink);
  outline: 0;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

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

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

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.11);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d9384c;
  box-shadow: 0 0 0 4px rgba(217, 56, 76, 0.08);
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 3px;
  color: #bb2539;
  font-size: 10px;
  line-height: 1.3;
}

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

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

.consent-field label {
  color: #687c90;
  font-size: 9px;
  line-height: 1.55;
}

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

.form-submit {
  width: 100%;
  margin-top: 13px;
}

.form-status {
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 14px 15px;
  border: 1px solid rgba(20, 128, 74, 0.2);
  border-radius: 13px;
  background: rgba(20, 128, 74, 0.07);
  color: var(--success);
}

.form-status:not([hidden]) {
  display: flex;
}

.form-status > span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  place-items: center;
}

.form-status svg {
  width: 17px;
  height: 17px;
}

.form-status div {
  display: flex;
  flex-direction: column;
}

.form-status strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.form-status small {
  color: #4b725e;
  font-size: 9px;
}

.site-footer {
  background: #041321;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 245px auto 1fr;
  align-items: center;
  gap: 55px;
  padding-top: 49px;
  padding-bottom: 40px;
}

.footer-brand {
  display: block;
  padding: 10px 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  background: transparent;
  padding: 0;
}

.footer-brand-text strong {
  color: white;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-brand-text span {
  margin-top: 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-nav a {
  color: #adc0ce;
  font-size: 11px;
  font-weight: 700;
  transition: color 160ms var(--ease-out);
}

.footer-nav a:hover {
  color: var(--blue);
}

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

.disclaimer p {
  margin: 0;
  color: #7890a2;
  font-size: 9px;
  line-height: 1.75;
}

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

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  color: #6f8799;
  font-size: 10px;
}

.mobile-call {
  display: none;
}

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

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

.reveal.delay-2 {
  transition-delay: 170ms;
}

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

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 210px 1fr auto;
    gap: 18px;
  }

  .brand-surface {
    width: 210px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav .nav-link:nth-child(4),
  .desktop-nav .nav-link:nth-child(5) {
    display: none;
  }

  .hero-layout {
    gap: 45px;
  }

  .climate-orbit {
    right: -10px;
  }

  .split-layout,
  .contact-layout {
    gap: 60px;
  }

  .area-layout {
    gap: 45px;
  }

  .footer-top {
    grid-template-columns: 220px auto 1fr;
    gap: 35px;
  }
}

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

  .container {
    width: min(100% - 32px, 760px);
  }

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

  .nav-shell {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
    min-height: 76px;
  }

  .brand-surface {
    width: 210px;
    min-height: 51px;
    padding: 8px 11px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
  }

  .site-header.scrolled .menu-toggle,
  .site-header.menu-active .menu-toggle {
    border-color: var(--line);
    background: var(--off-white);
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 20px 25px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.14);
    color: var(--navy);
    backdrop-filter: blur(16px);
  }

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

  .mobile-nav .nav-link {
    padding: 13px 3px;
    border-bottom: 1px solid #e8eff4;
    font-size: 13px;
  }

  .mobile-nav .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 135px;
    padding-bottom: 135px;
  }

  .hero h1 {
    max-width: 760px;
  }

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

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

  .image-frame,
  .image-frame img {
    min-height: 500px;
    height: 500px;
  }

  .hero-ribbon {
    position: relative;
  }

  .split-layout,
  .area-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 70px;
  }

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

  .section-heading > p {
    max-width: 650px;
  }

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

  .service-featured {
    grid-row: span 2;
  }

  .service-wide {
    grid-column: 1 / -1;
  }

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

  .why-intro h2,
  .why-intro > p {
    grid-column: auto;
  }

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

  .area-layout {
    gap: 55px;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .contact-layout {
    gap: 55px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 230px 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

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

  .brand-surface {
    width: 196px;
  }

  .hero-layout {
    padding-top: 117px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.2vw, 54px);
    letter-spacing: -0.058em;
  }

  .hero h1::after {
    width: 62px;
    height: 5px;
    margin-top: 22px;
  }

  .hero-lede {
    margin-top: 22px;
  }

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

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

  .trust-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
  }

  .trust-list li {
    font-size: 9px;
  }

  .trust-list span {
    font-size: 11px;
  }

  .image-frame,
  .image-frame img {
    min-height: 390px;
    height: 390px;
  }

  .image-frame {
    border-radius: 25px 25px 78px 25px;
  }

  .image-frame::before {
    border-radius: 17px 17px 66px 17px;
  }

  .availability-card {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .climate-orbit {
    top: -23px;
    right: -5px;
    width: 82px;
    height: 82px;
  }

  .climate-orbit span {
    font-size: 21px;
  }

  .ribbon-content {
    min-height: 68px;
  }

  .ribbon-content p {
    max-width: 65%;
    font-size: 10px;
  }

  .ribbon-content a {
    font-size: 9px;
  }

  .section {
    padding: 88px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .why-intro h2,
  .area-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-visual {
    padding: 0 9px 39px 14px;
  }

  .about-visual::before {
    top: -19px;
    right: 0;
  }

  .about-image,
  .about-image img {
    height: 410px;
  }

  .about-image {
    border-radius: 24px 65px 24px 24px;
  }

  .comfort-chip {
    right: 0;
  }

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

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

  .service-card,
  .service-image-card {
    min-height: 365px;
  }

  .service-featured {
    grid-row: auto;
    min-height: 610px;
  }

  .service-featured .service-image {
    height: 315px;
  }

  .service-wide {
    grid-column: auto;
    display: flex;
    min-height: 365px;
  }

  .service-wide > div:not(.service-card-photo) {
    display: block;
  }

  .service-wide .service-icon {
    margin-bottom: 37px;
  }

  .service-wide > a {
    width: 100%;
    margin-top: auto;
  }

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

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

  .why-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .why-cta .button {
    width: 100%;
  }

  .area-layout {
    min-width: 0;
  }

  .city-grid {
    gap: 10px;
  }

  .map-card {
    min-height: 440px;
    padding: 8px;
    border-radius: 24px 60px 24px 24px;
  }

  .map-card iframe {
    height: 424px;
    border-radius: 17px 50px 17px 17px;
  }

  .faq-list summary {
    padding: 21px 2px;
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-list details p {
    margin-right: 0;
  }

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

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

  .form-full {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .footer-brand {
    width: 240px;
  }

  .footer-nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 15px 22px;
  }

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

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 13px 35px rgba(255, 108, 44, 0.42);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
  }

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

  .mobile-call span {
    display: flex;
    align-items: baseline;
    gap: 7px;
  }

  .mobile-call small {
    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 0.09em;
    opacity: 0.84;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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