@font-face {
  font-family: "Feature Display";
  src: url("assets/fonts/FeatureDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display-light/sf-pro-display-light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display-regular/sf-pro-display-regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display-medium/sf-pro-display-medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display-medium/sf-pro-display-medium.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display-medium/sf-pro-display-medium.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --black: #030303;
  --ink: #111111;
  --muted: #6f6f73;
  --line: #d7d7d7;
  --soft: #f3f3f3;
  --blue: #0a86f5;
  --blue-2: #004ed8;
  --cyan: #69d7ff;
  --cyan-soft: #baf1ff;
  --gold: #ffd25a;
  --serif: "Feature Display", Georgia, serif;
  --sans:
    "SF Pro Display";
  --container: 1548px;
  --narrow: 1280px;
}

/* Custom Simple Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #040c18;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  overflow: hidden;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 20px;
}
.preloader-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 87, 255, 0.35));
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}
.preloader-spinner-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: #0057ff;
  border-right-color: #00d2ff;
  animation: preloaderSpin 0.9s linear infinite;
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.25);
}
.preloader-progress-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0057ff 0%, #00d2ff 100%);
  border-radius: 3px;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 10px #00d2ff;
}
.preloader-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0% { opacity: 0.85; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.02); }
}

* {
  box-sizing: border-box;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Scroll Reveal Fade Up */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(calc(100% - 140px), var(--container));
  margin-inline: auto;
}
.container-narrow {
  width: min(calc(100% - 240px), var(--narrow));
  margin-inline: auto;
}
.section-dark {
  background: var(--black);
  color: #fff;
}
.center-head {
  text-align: center;
  max-width: 1180px;
  margin-inline: auto;
}
.center-head h2,
.faq-head h2,
.quote-copy h2,
.engineer-copy h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: 0.025em;
  line-height: 1.22;
  margin: 0;
  color: currentColor;
  text-wrap: balance;
}
.center-head h2 {
  font-size: clamp(46px, 4.2vw, 78px);
}
.section-subtitle {
  font-size: 22px;
  line-height: 1.55;
  color: #b7b7bd;
  max-width: 1080px;
  margin: 26px auto 0;
  font-weight: 300;
}
.light-head {
  color: #111;
}
.light-head .section-subtitle {
  color: #777;
}
.pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fe3ff 0%, #0a89f5 100%);
  color: #061018;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(0, 60, 110, 0.12);
}
.pill {
  font-size: 18px;
  padding: 17px 30px;
  margin: 0 0 36px;
}
.pill--soft {
  background: linear-gradient(90deg, #9bedff 0%, #178ef7 100%);
}
.mini-pill {
  font-size: 18px;
  padding: 13px 24px;
  letter-spacing: 0.38em;
  margin-bottom: 22px;
}
.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 200;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg,
.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header + Hero */
.site-header {
  position: absolute;
  z-index: 20;
  top: 90px;
  left: 0;
  right: 0;
  height: 61px;
  pointer-events: none;
}
.brand-large {
  position: absolute;
  left: 6.9vw;
  top: -35px;
  width: 130px;
  pointer-events: auto;
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0) scale(1);
}
.brand-large img {
  width: 100%;
}
.brand-dock {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 80px;
  height: 58px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-dock img {
  width: 52px;
  height: 50px;
  object-fit: contain;
}
.main-nav {
  pointer-events: auto;
  position: absolute;
  right: 6.9vw;
  left: auto;
  top: 0;
  transform: none;
  height: 61px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 3, 0.94);
  border: 1px solid rgba(44, 91, 184, 0.72);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.main-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 24px;
  color: #e9e9ec;
  font-size: 23.5px;
  font-weight: 300;
  white-space: nowrap;
}
.main-nav a:not(.nav-cta):hover {
  color: var(--gold);
}
.main-nav a:not(.nav-cta).active {
  color: var(--gold) !important;
  font-weight: 500;
}
.main-nav .nav-cta {
  background: var(--gold);
  color: #171100 !important;
  min-width: 252px;
  justify-content: center;
  margin-left: 38px;
  border-radius: 999px;
  font-weight: 400;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus,
.main-nav .nav-cta.active {
  background: #ffe082 !important;
  color: #171100 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 210, 90, 0.4);
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/Banner.png") center center / cover no-repeat;
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(
    180deg,
    rgba(0, 83, 255, 0),
    rgba(17, 52, 195, 0.76)
  );
  z-index: -1;
}
.hero-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 217px;
  padding-bottom: 50px;
}
.hero-kicker {
  font-family: var(--serif);
  font-size: clamp(44px, 3.7vw, 74.5px);
  line-height: 1;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 0.015em;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 0.96;
  white-space: nowrap;
}
.hero h1 span {
  font-size: clamp(72px, 6.05vw, 122.7px);
  color: var(--gold);
}
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin: 27px 0 31px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 44px);
  font-weight: 400;
  letter-spacing: 2.7px;
}
.hero-tags li {
  display: flex;
  align-items: center;
  gap: 27px;
}
.hero-tags .flex-break {
  display: none;
}
.hero-tags li:not(:last-child)::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}
.hero-copy {
  max-width: 1220px;
  margin: 0 auto;
  color: #f2f5ff;
  font-size: 29px;
  line-height: 37px;
  font-weight: 300;
  letter-spacing: 0.7px;
}
.hero-actions {
  display: flex;
  gap: 32px;
  margin-top: 49px;
}
.hero-actions .btn {
  min-width: 392px;
  height: 76px;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.btn-gold {
  background: var(--gold);
  color: #101010 !important;
}
.btn-gold:hover,
.btn-gold:focus {
  background: #ffe082 !important;
  color: #101010 !important;
}
.btn-light {
  background: #fff;
  color: #111;
}

/* Why */
.why {
  padding: 170px 0 165px;
}
.why .center-head h2 {
  font-size: clamp(50px, 4.3vw, 78px);
}
.why-collage {
  display: grid;
  grid-template-columns: 370px minmax(320px, 368px) minmax(320px, 368px) 370px;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  margin-top: 68px;
}
.why-collage .why-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
.why-collage .why-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.why-collage .why-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.why-collage .why-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.why-collage .why-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.why-collage .why-card:nth-child(6) {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
}
.why-card {
  min-height: 385px;
  height: 385px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(180deg, #242424 0%, #070707 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 42px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9defff 0%, #0083f5 52%, #1b36d7 100%);
  transform: translate(-50%, -50%) scale(0);
  transition:
    transform 0.6s cubic-bezier(0.1, 0.8, 0.3, 1),
    opacity 0.6s ease;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.why-card:hover::before {
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 1;
}
.why-card h3 {
  margin: 22px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.why-card p {
  margin: 0 auto;
  color: #b9b9bd;
  font-size: 17px;
  line-height: 1.32;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
  max-width: 250px;
}
.why-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.why-card:hover p {
  color: #fff;
}
.icon-circle {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2c2c2c;
  transition: background 0.3s ease;
  position: relative;
  z-index: 2;
}
.icon-circle svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  object-fit: contain;
}
.icon-circle img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.why-card:hover .icon-circle {
  background: #fff;
}
.why-card:hover .icon-circle img {
  filter: brightness(0);
}
.why-card:hover .icon-circle svg {
  stroke: #111;
}

/* Pool types */
.pool-types {
  background: #f2f2f2;
  padding: 90px 0 120px;
}
.pool-types .center-head h2 {
  font-size: clamp(48px, 4.2vw, 73px);
}
.pool-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  margin-top: 118px;
}
.pool-card {
  background: #fff;
  border-radius: 36px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.pool-media {
  height: 408px;
  border-radius: 12px;
  overflow: hidden;
  background: #dcecf8;
}
.pool-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pool-text {
  max-width: 520px;
}
.pool-text h3 {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
}
.pool-text p:not(.mini-pill) {
  color: #777;
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.5;
}
.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: #111;
  font-size: 24px;
  font-weight: 500;
}
.tick-list li {
  position: relative;
  padding-left: 27px;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: url("assets/tick.png") center/contain no-repeat;
}
.tick-list.muted {
  color: #8a8a8a;
  font-weight: 300;
  gap: 12px;
}

/* Incredibles-style pool-card stack. This enhancement changes only the cards'
   scroll positioning and transforms; every existing card style above stays intact. */
@media (prefers-reduced-motion: no-preference) {
  .pool-types.pool-stack-active {
    position: relative;
    z-index: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .pool-types.pool-stack-active ~ section {
    position: relative;
    z-index: 10;
  }

  .pool-stack-active .pool-list {
    display: block;
    gap: 0;
  }

  .pool-stack-active .pool-stack-item {
    display: block;
    width: 100%;
    height: 100svh;
  }

  .pool-stack-active .pool-stack-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 0;
    height: 0;
    perspective: 25rem;
    transform: scale(var(--pool-stack-fit-scale, 1));
    transform-origin: center;
    pointer-events: none;
  }

  .pool-stack-active .pool-card {
    --pool-stack-y: 0px;
    --pool-stack-z: 0px;
    --pool-stack-rotate-x: 0deg;
    --pool-stack-scale: 1;
    --pool-stack-fade: 0;
    position: absolute;
    top: calc(50% - var(--pool-stack-card-height) / 2);
    left: calc(50% - var(--pool-stack-card-width) / 2);
    width: var(--pool-stack-card-width);
    transform: translate3d(0, var(--pool-stack-y), var(--pool-stack-z))
      rotateX(var(--pool-stack-rotate-x)) scale(var(--pool-stack-scale));
    transform-origin: 50% -20%;
    backface-visibility: hidden;
    isolation: isolate;
    will-change: opacity, transform;
  }

  .pool-stack-active .pool-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background: #000;
    opacity: var(--pool-stack-fade);
    pointer-events: none;
    will-change: opacity;
  }
}

/* Who */
.who {
  padding: 134px 0 142px;
  background: linear-gradient(180deg, #004bd4 0%, #15bff1 75%, #79dcf2 100%);
  color: #fff;
}
.who .center-head {
  max-width: 1450px;
}
.who .pill {
  font-size: clamp(15px, 0.93vw, 19px);
  padding: 17px 32px;
  margin-bottom: 23px;
}
.who .center-head h2 {
  font-size: clamp(38px, 3.3vw, 58px);
}
.who .section-subtitle {
  color: #e9f6ff;
  font-size: clamp(22px, 1.37vw, 28px);
  line-height: 1.4;
  max-width: 1250px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 74px;
}
.who-grid article {
  height: 300px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.4s ease;
}
.who-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 25, 90, 0.18);
  background: #fbfdff;
}
.who-grid svg,
.who-grid img {
  width: 106px;
  height: 106px;
  fill: none;
  stroke: #168cf5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 26px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.who-grid article:hover img,
.who-grid article:hover svg {
  transform: scale(1.08);
}
.who-grid h3 {
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

/* Process */
.process {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding: 104px 0 180px;
}
.process-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 250px;
  align-items: start;
}
.process-intro {
  position: sticky;
  top: 110px;
}
.process-intro .pill {
  font-size: clamp(15px, 0.86vw, 17.5px);
  padding: 16px 32px;
  margin-bottom: 20px;
}
.process-intro h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 3.3vw, 72px);
  line-height: 1.14;
  margin: 0 0 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.process-intro > p:not(.pill) {
  max-width: 620px;
  font-size: 23px;
  color: #bfc0c6;
  line-height: 1.45;
  margin: 0 0 16px;
  font-weight: 300;
}
.process-stats {
  max-width: 350px;
}
.process-stats > div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px 0;
}
.process-stats > div:last-child {
  border-bottom: 0;
}
.process-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: #7ee9ff;
  line-height: 1;
  font-weight: 300;
}
.process-stats span {
  display: block;
  color: #c8c8ce;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
}
.process-steps {
  display: grid;
  gap: 96px;
}
.process-steps article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.step-icon {
  width: 280px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  background: linear-gradient(180deg, #222, #050505);
  display: grid;
  place-items: center;
}
.step-icon svg {
  width: 140px;
  height: 140px;
  fill: none;
  stroke: url(#);
  stroke: #098ff7;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(0, 132, 255, 0.15));
  object-fit: contain;
}
.step-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 132, 255, 0.15));
}
.process-steps h3 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 600;
}
.process-steps p {
  font-size: 24px;
  line-height: 1.45;
  color: #9e9e9e;
  margin: 0;
  max-width: 400px;
  font-weight: 300;
}

/* Engineer */
.engineer {
  padding: 100px 0 90px;
  background: #fff;
}
.engineer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}
.engineer-copy h2 {
  font-size: clamp(38px, 3.2vw, 58px);
  color: #111;
  max-width: 580px;
  font-weight: 500;
}
.engineer-copy blockquote {
  position: relative;
  margin: 38px 0;
  max-width: 480px;
  color: #444;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}
.engineer-copy blockquote::before,
.engineer-copy blockquote::after {
  content: "“";
  position: absolute;
  color: #ececec;
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}
.engineer-copy blockquote::before {
  left: -8px;
  top: -40px;
}
.engineer-copy blockquote::after {
  content: "”";
  right: 40px;
  bottom: -40px;
}
.engineer-copy > p:not(.pill) {
  max-width: 600px;
  color: #777;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 700px;
}
.expertise-grid article {
  min-height: 130px;
  background: #f5f5f7;
  border: 1px solid #e2e2e6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
}
.expertise-grid svg,
.expertise-grid img {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #0a8df5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  object-fit: contain;
}
.expertise-grid h3 {
  font-size: 22px;
  margin: 0 0 6px;
  white-space: nowrap;
}
.expertise-grid p {
  font-size: 18px;
  line-height: 1.35;
  color: #777;
  margin: 0;
  max-width: 180px;
}
.engineer-profile {
  text-align: center;
  position: relative;
}
.engineer-profile > img {
  width: min(100%, 580px);
  margin: -55px auto -65px;
  position: relative;
  left: -100px;
}
.profile-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.profile-text h3 {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  margin: 0 0 12px;
}
.profile-text > p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: #111;
}
.profile-meta {
  color: #777 !important;
  margin-top: 22px !important;
  font-weight: 300 !important;
}
.profile-meta span {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #aaa;
  margin: 0 18px;
  vertical-align: middle;
}
.profile-text h4 {
  text-align: left;
  margin: 42px auto 16px;
  max-width: 520px;
  font-size: 23px;
  font-weight: 600;
  color: #111;
}
.profile-text .tick-list {
  max-width: 520px;
  margin-inline: auto;
  text-align: left;
  font-size: 20px;
  color: #555;
}

/* Comparison */
.comparison {
  padding: 40px 0 118px;
  background: #fff;
}
.comparison .center-head h2 {
  font-size: clamp(38px, 3.2vw, 58px);
}
.comparison-wrap {
  margin-top: 80px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1.25;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 24px 42px;
  border-bottom: 1px solid #d7d7d7;
}
.compare-table th {
  font-size: 23px;
  font-weight: 500;
  background: #cfcfcf;
  color: #111;
}
.compare-table th:nth-child(2) {
  background: #040404;
  color: #fff;
}
.compare-table tr:last-child td {
  border-bottom: 0;
}
.compare-table td:nth-child(1) {
  background: #f1f1f1;
  width: 33.3%;
}
.compare-table td:nth-child(2) {
  background: linear-gradient(180deg, #058cf6, #004ed4);
  color: #fff;
  width: 33.3%;
  position: relative;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s ease;
}
.compare-table td:nth-child(3) {
  background: #fafafa;
  width: 33.3%;
  color: #252525;
}
.compare-table tr {
  transition:
    opacity 0.1s ease,
    filter 0.1s ease;
}
.compare-table tbody:hover tr:not(:hover) {
  opacity: 0.9;
  filter: blur(0.4px);
}
.compare-table tr:hover td:nth-child(2) {
  transform: scale(1.025);
  z-index: 5;
  box-shadow: 0 12px 30px rgba(0, 78, 212, 0.3);
  background: linear-gradient(180deg, #0a94ff, #005ce6);
}
.compare-table tbody tr {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.compare-table.revealed tbody tr {
  opacity: 1;
  transform: translateY(0);
}
.compare-table.revealed tbody tr:nth-child(1) {
  transition-delay: 0.05s;
}
.compare-table.revealed tbody tr:nth-child(2) {
  transition-delay: 0.12s;
}
.compare-table.revealed tbody tr:nth-child(3) {
  transition-delay: 0.19s;
}
.compare-table.revealed tbody tr:nth-child(4) {
  transition-delay: 0.26s;
}
.compare-table.revealed tbody tr:nth-child(5) {
  transition-delay: 0.33s;
}
.compare-table.revealed tbody tr:nth-child(6) {
  transition-delay: 0.4s;
}
.compare-table.revealed tbody tr:nth-child(7) {
  transition-delay: 0.47s;
}
.compare-table.revealed tbody tr:nth-child(8) {
  transition-delay: 0.54s;
}

/* Gallery + Video */
.gallery {
  padding: 60px 0 95px;
  background: #fff;
  overflow: hidden;
}
.gallery .center-head h2,
.video .center-head h2,
.testimonials .center-head h2 {
  font-size: clamp(42px, 3.7vw, 62px);
}
.gallery-carousel-wrapper {
  position: relative;
  margin-top: 86px;
  width: 100%;
}
.gallery-viewport {
  overflow: auto;
  display: flex;
  padding-left: calc((100vw - min(calc(100vw - 150px), var(--container))) / 2);
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-viewport::-webkit-scrollbar {
  display: none;
}
.gallery-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding-right: 40px;
}
.gallery-item {
  position: relative;
  width: 440px;
  height: 490px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #e8f6ff;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 87, 255, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 20, 50, 0.75) 0%, rgba(0, 0, 0, 0) 65%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.expand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #0038a8;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.gallery-item:hover .expand-badge {
  transform: translateY(0);
}

/* Lightbox Modal Carousel */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lightbox-container {
  position: relative;
  z-index: 2;
  width: 92vw;
  max-width: 1200px;
  height: 90vh;
  max-height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: #fff;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-lightbox.active .lightbox-container {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.1);
}
.lightbox-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.lightbox-counter {
  padding: 6px 14px;
  background: rgba(0, 87, 255, 0.85);
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.lightbox-title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.lightbox-body {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-image-wrapper {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image-wrapper img {
  max-width: 85vw;
  max-height: 62vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lightbox-image-wrapper img.changing {
  opacity: 0.2;
  transform: scale(0.96);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}
.lightbox-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 12px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}
.lightbox-thumbnails::-webkit-scrollbar {
  display: none;
}
.lightbox-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  background: none;
}
.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox-thumb:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.lightbox-thumb.active {
  opacity: 1;
  border-color: #0057ff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 87, 255, 0.5);
}
.gallery-arrow {
  position: absolute;
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background-color 0.3s,
    transform 0.3s,
    opacity 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0.85;
}
.gallery-arrow:hover {
  background: #fff;
  transform: scale(1.08);
  opacity: 1;
}
.gallery-prev {
  left: 20px;
}
.gallery-next {
  right: 20px;
}
.gallery-dots,
.mobile-carousel-dots {
  display: none;
}
.gallery-dot,
.mobile-carousel-dot {
  appearance: none;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dcdcdc;
  cursor: pointer;
  transition:
    background-color 0.3s,
    width 0.3s,
    border-radius 0.3s,
    transform 0.3s;
}
.gallery-dot:hover,
.mobile-carousel-dot:hover {
  transform: scale(1.2);
}
.gallery-dot.active,
.mobile-carousel-dot.active {
  background: #0057ff;
  width: 32px;
  border-radius: 6px;
}
.gallery-dot:focus-visible,
.mobile-carousel-dot:focus-visible {
  outline: 2px solid #0057ff;
  outline-offset: 3px;
}
.video {
  padding: 60px 0 105px;
  background: #fff;
}
.video-box {
  height: 680px;
  border-radius: 22px;
  background: url("assets/videobanner.png") center/cover no-repeat;
  display: grid;
  place-items: center;
  margin-top: 76px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-box.is-playing {
  background: #000000 !important;
  height: auto !important;
  min-height: auto !important;
  cursor: default !important;
}
.video-box video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 22px;
  display: block;
}
.video-box.is-playing video {
  position: relative;
  z-index: 10;
}
.play-video {
  width: 130px;
  height: 130px;
  border: 0;
  border-radius: 50%;
  background: url("assets/playbtn.png") center/contain no-repeat;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.play-video:hover {
  transform: scale(1.08);
}
.play-video span {
  display: none;
}

/* Testimonials */
.testimonials {
  padding: 89px 0 102px;
  background: #f3f3f3;
}
.testimonials .pill {
  font-size: 19.5px;
  padding: 17.25px 32px;
  margin-bottom: 25px;
}
.testimonials .center-head h2 {
  font-size: 68px;
}
.testimonial-grid {
  width: min(calc(100% - 140px), 1764px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.testimonial-card {
  min-height: 606px;
  border-radius: 42px;
  background: #d9d9d9;
  padding: 88px 66px 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(180deg, #078cf8, #004cd3);
  transform: translate(-50%, -50%) scale(0);
  transition:
    transform 0.6s cubic-bezier(0.1, 0.8, 0.3, 1),
    opacity 0.6s ease;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.testimonial-card:hover::before {
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 78, 211, 0.18);
}
.stars {
  display: flex;
  gap: 7px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
.stars img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.quote-mark {
  position: absolute;
  right: 54px;
  top: 33px;
  font-family: Georgia, serif;
  font-size: 230px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: color 0.3s ease;
}
.testimonial-card:hover .quote-mark {
  color: rgba(255, 255, 255, 0.22);
}
.testimonial-card > p {
  font-size: 27px;
  line-height: 1.5;
  margin: 0 0 29px;
  max-width: 414px;
  font-weight: 300;
  color: #111;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.testimonial-card:hover > p {
  color: #fff;
}
.testimonial-card:nth-child(2) > p {
  max-width: 380px;
}
.testimonial-card:last-child > p {
  max-width: 395px;
}
.person {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover .person {
  border-color: rgba(255, 255, 255, 0.25);
}
.person > span {
  position: relative;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  transform: translateX(-4px);
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
}
.person > span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c4c4c4;
}
.person > span::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -5px;
  width: 42px;
  height: 28px;
  border-radius: 50% 50% 0 0;
  background: #c4c4c4;
}
.person h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  color: #111;
  transition: color 0.3s ease;
}
.testimonial-card:hover .person h3 {
  color: #fff;
}
.person p {
  margin: 4px 0 0;
  color: #777;
  font-size: 20px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.testimonial-card:hover .person p {
  color: #dbe9ff;
}

/* FAQ */
.faq {
  padding: 92px 0 110px;
  background: #f3f3f3;
}
.faq-head {
  text-align: left;
}
.faq-head h2 {
  font-size: clamp(48px, 4.2vw, 73px);
  color: #111;
}
.faq-head p:not(.pill) {
  color: #747474;
  margin: 10px 0 0;
  font-size: 20px;
}
.faq-list {
  margin-top: 42px;
  border-top: 1px solid #cfd0d0;
}
.faq-item {
  border-bottom: 1px solid #d4d4d4;
}
.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
}
.faq-item button span {
  font-weight: 700;
}
.faq-item.active button {
  color: #0055d8;
}
.faq-item button i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #7e7e7e;
  position: relative;
  justify-self: end;
  transition: background-color 0.3s ease;
}
.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item button i::after {
  transform: rotate(90deg);
}
.faq-item.active button i {
  background: #0055d8;
}
.faq-item.active button i::after {
  transform: rotate(180deg);
  opacity: 0;
}
.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 80px 0 46px;
}
.faq-answer-inner {
  padding-bottom: 46px;
}
.faq-answer p {
  margin: 0;
  color: #777;
  font-size: 24px;
  line-height: 1.62;
  max-width: 1370px;
}

/* Quote form */
.quote-section {
  background: linear-gradient(180deg, #004bd2 0%, #04a4f2 74%, #39cce9 100%);
  padding: 140px 0 120px;
  color: #fff;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 740px;
  gap: 110px;
  align-items: center;
}
.quote-copy h2 {
  font-size: clamp(40px, 3.6vw, 60px);
}
.quote-copy > p:not(.pill) {
  font-size: 24px;
  line-height: 1.5;
  color: #e9f6ff;
  max-width: 600px;
  margin: 22px 0 60px;
}
.benefit-list {
  max-width: 760px;
}
.benefit-list article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 32px 0;
}
.benefit-list article:last-child {
  border-bottom: 0;
}
.benefit-list span {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: rgba(211, 248, 255, 0.72);
  display: grid;
  place-items: center;
}
.benefit-list svg,
.benefit-list img {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #0057ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  object-fit: contain;
}
.benefit-list h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 4px;
}
.benefit-list p {
  font-size: 22px;
  line-height: 1.25;
  color: #eaf8ff;
  margin: 0;
}
.quote-form {
  background: rgba(227, 244, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 58px 64px 50px;
  color: #111;
}
.quote-form h2 {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  margin: 0 0 14px;
  font-weight: 600;
}
.quote-form > p {
  margin: 0 0 34px;
  color: #444;
  font-size: 17px;
}
.quote-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #fff;
  height: 62px;
  padding: 0 22px;
  color: #111;
  outline: 2px solid transparent;
  transition: outline-color 0.2s ease;
}
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 16px;
  padding-right: 48px;
}
.quote-form textarea {
  height: 105px;
  padding: 18px 22px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline-color: #128cf4;
}
.btn-submit {
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #0b93fa, #0045cc);
  color: #fff;
  margin-top: 10px;
  font-weight: 500;
}
.quote-form small {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #222;
  font-size: 16px;
}
.quote-form .is-invalid {
  outline-color: #e22 !important;
}

/* Final CTA + footer */
.final-cta {
  min-height: 685px;
  border-top: 2px solid #55d9ed;
  padding: 142px 0 169px;
  text-align: center;
  background: #111;
}
.final-cta h2 {
  font-size: 60px;
  line-height: 1.18;
  color: #fff;
}
.final-cta p {
  margin: 18px 0 38px;
  color: #b8b8b8;
  font-size: 22px;
  font-weight: 300;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 27px;
}
.final-actions .btn {
  width: 400px;
  min-width: 0;
  height: 65px;
  font-size: 20px;
  font-weight: 400;
}
.final-actions .btn svg,
.final-actions .btn img {
  width: 24px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 24px;
}
.btn-blue {
  background: linear-gradient(90deg, #0b95fa, #004ed4);
  color: #fff;
}
.btn-call {
  background: linear-gradient(90deg, #9bedff, #fff);
  color: #111;
}
.site-footer {
  position: relative;
  z-index: 10;
  background: #030303;
  color: #e8e8e8;
  border-top: 0;
  padding: 155px 0 45px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.85fr 1.3fr;
  gap: 95px;
  align-items: start;
}
.footer-brand img {
  width: 150px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 25px;
  line-height: 1.55;
  color: #f1f1f1;
  max-width: 460px;
  margin: 0 0 48px;
}
.socials {
  display: flex;
  gap: 26px;
}
.socials a {
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--blue);
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  transition: background 0.3s ease, transform 0.3s ease;
}
.socials a svg {
  display: block !important;
  margin: auto !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  color: #ffffff !important;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.socials a:hover {
  transform: scale(1.08);
}
.socials a[aria-label="Facebook"]:hover {
  background-color: #1877f2 !important;
}
.socials a[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%) !important;
}
.socials a[aria-label="X"]:hover {
  background-color: #000000 !important;
}
.socials a[aria-label="YouTube"]:hover {
  background-color: #ff0000 !important;
}
.site-footer h3 {
  font-size: 28px;
  margin: 48px 0 50px;
  color: #fff;
}
.site-footer a {
  display: block;
  color: #eeeeee;
  font-size: 25px;
  margin-bottom: 34px;
}
.site-footer a:hover {
  color: var(--gold);
}
.contact p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
  align-items: start;
  margin: 0 0 28px;
  color: #eee;
  font-size: 25px;
  line-height: 1.45;
}
.contact a {
  margin: 0;
}
.contact svg,
.contact img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-top: 4px;
}
.contact svg {
  fill: none;
  stroke: #008cf5;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #3a3a3a;
  margin-top: 78px;
  padding-top: 38px;
}
.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 24px;
  white-space: nowrap;
}
.footer-bottom a {
  display: inline !important;
  color: var(--gold);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Keep the supplied desktop composition for exact hero typography, but replace
   its flattened header area with the clean source image and a real navbar. */
@media (min-width: 1101px) {
  .site-header .brand-large,
  .site-header .main-nav {
    opacity: 1;
  }
}

@media (max-width: 1500px) {
  .container {
    width: min(calc(100% - 140px), var(--container));
  }
  .container-narrow {
    width: min(calc(100% - 220px), var(--narrow));
  }
  .hero h1 span {
    font-size: clamp(60px, 5.2vw, 86px);
  }
  .main-nav a {
    padding: 0 20px;
    font-size: 15.5px;
  }
  .main-nav .nav-cta {
    min-width: 207px;
    margin-left: 18px;
  }
  .brand-large {
    left: 7vw;
  }
  .main-nav {
    right: 7vw;
    left: auto;
    transform: none;
    height: 58px;
  }
  .why-collage {
    grid-template-columns: 320px minmax(270px, 330px) minmax(270px, 330px) 320px;
  }
  .why-card {
    padding: 34px 30px;
  }
  .who-grid {
    gap: 24px;
  }
  .process-layout {
    gap: 100px;
    grid-template-columns: 420px 1fr;
  }
  .engineer-profile > img {
    left: -40px;
  }
  .profile-text h4,
  .profile-text .tick-list {
    transform: translateX(70px);
  }
  .process-steps article {
    grid-template-columns: 240px 1fr;
  }
  .step-icon {
    width: 240px;
    height: 220px;
  }
  .quote-layout {
    grid-template-columns: 1fr 680px;
    gap: 70px;
  }
  .footer-grid {
    gap: 60px;
  }
  .testimonial-card {
    padding: 70px 50px;
    min-height: 560px;
  }
  .testimonial-card > p {
    font-size: 21px;
  }
  .stars img {
    width: 28px;
    height: 28px;
  }
  .final-actions .btn {
    min-width: 430px;
  }
}
@media (min-width: 1101px) {
  .comparison .center-head h2,
  .who .center-head h2,
  .gallery .center-head h2 {
    white-space: nowrap;
  }
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .main-nav a {
    padding-inline: 13.5px;
    font-size: 13.5px;
  }
  .main-nav .nav-cta {
    min-width: 162px;
    margin-left: 8px;
  }
}
@media (max-width: 1100px) {
  body {
    font-size: 16px;
  }
  .site-header {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 50%;
    right: auto;
    width: 260px;
    height: 60px;
    transform: translateX(-50%);
    border: 1px solid rgba(44, 91, 184, 0.72);
    border-radius: 999px;
    background: rgba(3, 9, 30, 0.95);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 12px;
  }
  .site-header::after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 92px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
  }
  .brand-large {
    display: none;
  }
  .brand-dock {
    display: grid;
    place-items: center;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 50px;
    opacity: 1;
    pointer-events: auto;
  }
  .brand-dock img {
    width: 52px;
    height: 50px;
    object-fit: contain;
  }
  .menu-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 0 8px;
    color: #fff;
    cursor: pointer;
    height: 44px;
    width: auto;
    pointer-events: auto;
  }
  .menu-toggle__label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .menu-toggle__lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
  }
  .menu-toggle__lines > span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 350px;
    height: auto;
    display: none;
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    background: rgba(3, 9, 30, 0.96);
    border: 1px solid rgba(44, 91, 184, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 6px;
    z-index: 999;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #e9e9ec;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .main-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
  }
  .main-nav .nav-cta {
    margin: 8px 0 0;
    width: 100%;
    height: 48px;
    border-radius: 16px;
    background: var(--gold);
    color: #171100 !important;
    font-weight: 600;
    justify-content: center;
  }
  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus,
  .main-nav .nav-cta.active {
    background: #ffdf6d !important;
    color: #171100 !important;
  }
  .hero-content {
    padding-top: 110px;
  }
  .hero h1 {
    max-width: 100%;
    white-space: normal;
    line-height: 1.1;
  }
  .hero h1 span {
    display: block;
    line-height: 1.1;
  }
  .hero-tags {
    flex-wrap: wrap;
    font-size: 16px;
    letter-spacing: normal;
    gap: 12px;
    margin: 20px 0 24px;
    max-width: 320px;
    margin-inline: auto;
  }
  .hero-tags li,
  .hero-tags li:not(:last-child) {
    gap: 12px;
  }
  .hero-tags li:not(:last-child)::after {
    width: 6px;
    height: 6px;
  }
  .hero-tags .flex-break {
    display: block;
    flex-basis: 100%;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
  }
  .hero-tags .flex-break::after {
    display: none !important;
  }
  .hero-tags li:nth-child(3)::after {
    display: none;
  }
  .hero-copy {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.55;
    letter-spacing: normal;
    padding-inline: 16px;
  }
  .hero-actions .btn {
    letter-spacing: normal;
  }
  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: center;
    width: calc(100% - 48px);
    max-width: 310px;
    margin-inline: auto;
    gap: 12px;
  }
  .final-actions {
    transform: none;
  }
  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 16px;
  }
  .why-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .why-collage .why-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .engineer-layout,
  .quote-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }
  .pool-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-intro {
    position: static;
  }
  .process-steps article {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  .step-icon {
    width: 100%;
    height: 230px;
  }
  .expertise-grid,
  .form-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .engineer-profile > img {
    width: 480px;
    left: 0;
  }
  .profile-text h4,
  .profile-text .tick-list {
    transform: none;
  }
  .compare-table {
    font-size: 16px;
  }
  .compare-table th,
  .compare-table td {
    padding: 18px;
  }
  .gallery-track img {
    width: 360px;
    height: 400px;
  }
  .video-box {
    height: 460px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    height: auto;
    min-height: 440px;
  }
  .quote-mark {
    top: 40px;
    right: 40px;
    font-size: 150px;
  }
}
@media (max-width: 720px) {
  .container,
  .container-narrow {
    width: min(calc(100% - 36px), var(--container));
  }
  .pill {
    font-size: 11px;
    letter-spacing: 0.28em;
    padding: 13px 18px;
  }
  .center-head h2,
  .faq-head h2,
  .quote-copy h2,
  .engineer-copy h2,
  .process-intro h2 {
    font-size: 36px !important;
  }
  .hero h1 span {
    font-size: 54px;
  }
  .hero-kicker {
    font-size: 34px;
  }
  .hero-actions {
    width: calc(100% - 48px);
    max-width: 310px;
    margin-inline: auto;
    gap: 12px;
  }
  .hero-actions .btn {
    height: 52px;
  }
  .section-subtitle,
  .process-intro > p:not(.pill),
  .quote-copy > p:not(.pill) {
    font-size: 17px;
  }
  .why,
  .pool-types,
  .who,
  .engineer,
  .comparison,
  .gallery,
  .video,
  .testimonials,
  .faq,
  .quote-section,
  .final-cta,
  .site-footer {
    padding-block: 70px;
  }
  .final-cta {
    min-height: 0;
  }
  .why-collage {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    padding-inline: 18px;
    margin-inline: -18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: auto;
  }
  .why-collage::-webkit-scrollbar {
    display: none;
  }
  .why-collage .why-card {
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: center;
    margin: 0;
  }
  .who-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    padding-inline: 18px;
    margin-inline: -18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: auto;
  }
  .who-grid::-webkit-scrollbar {
    display: none;
  }
  .who-grid article {
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: center;
    margin: 0;
    height: 230px;
  }
  .who-grid img,
  .who-grid svg {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 16px !important;
  }
  .pool-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    padding-inline: 18px;
    margin-inline: -18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: auto;
    margin-top: 50px;
  }
  .pool-list::-webkit-scrollbar {
    display: none;
  }
  .pool-list .pool-card {
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: center;
    margin: 0;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
  }
  .pool-media {
    height: 200px;
    width: 100%;
    border-radius: 16px;
  }
  .pool-text {
    width: 100%;
  }
  .pool-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .pool-text p:not(.mini-pill) {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.45;
  }
  .pool-card .tick-list {
    font-size: 15px;
    gap: 4px;
  }
  .pool-card .tick-list li {
    padding-left: 20px;
  }
  .pool-card .tick-list li::before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  .expertise-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    gap: 60px;
  }
  .process-steps h3 {
    font-size: 28px;
  }
  .process-steps p {
    font-size: 18px;
  }
  .profile-text h3 {
    font-size: 36px;
  }
  .engineer-profile > img {
    width: 100%;
    max-width: 480px;
    height: auto;
    left: 0;
    margin-inline: auto;
  }
  .comparison-wrap {
    overflow-x: auto;
  }
  .compare-table {
    min-width: 820px;
  }
  .gallery-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-inline: 18px;
    margin-inline: -18px;
    width: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-viewport::-webkit-scrollbar {
    display: none;
  }
  .gallery-track {
    display: flex;
    gap: 24px;
    padding: 0;
    width: auto;
  }
  .gallery-track .gallery-item {
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: center;
    margin: 0;
    width: auto;
    height: 320px;
  }
  .gallery-arrow {
    display: none;
  }
  .gallery-dots,
  .mobile-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 12px;
    margin-top: 18px;
  }
  .why .mobile-carousel-dot,
  .who .mobile-carousel-dot {
    background: rgba(255, 255, 255, 0.38);
  }
  .why .mobile-carousel-dot.active,
  .who .mobile-carousel-dot.active {
    background: #fff;
  }
  .pool-types.pool-stack-active .mobile-carousel-dots--pool {
    display: none;
  }
  .video-box {
    height: 300px;
  }
  .play-video {
    width: 90px;
    height: 90px;
  }
  .play-video span {
    display: none;
  }
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    padding-inline: 18px;
    margin-inline: -18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: auto;
  }
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-grid .testimonial-card {
    flex: 0 0 calc(100% - 36px);
    scroll-snap-align: center;
    margin: 0;
    padding: 45px 28px;
    min-height: 0;
  }
  .testimonial-card > p {
    font-size: 18px;
  }
  .testimonials .pill {
    font-size: 11px;
    padding: 13px 18px;
    margin-bottom: 36px;
  }
  .quote-mark {
    top: 25px;
    right: 28px;
    font-size: 120px;
  }
  .quote-form {
    padding: 36px 22px;
  }
  .quote-form h2 {
    font-size: 32px;
  }
  .final-cta h2 {
    font-size: 38px !important;
  }
  .final-cta p {
    font-size: 18px;
  }
  .footer-brand p,
  .site-footer a,
  .contact p,
  .footer-bottom p {
    font-size: 17px;
  }
  .site-footer h3 {
    margin: 28px 0 22px;
  }
  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding-top: 24px;
  }
  .footer-bottom p {
    white-space: normal;
  }
  .faq-item button {
    font-size: 17px;
    grid-template-columns: 34px 1fr 28px;
  }
  .faq-answer {
    padding: 0 0 28px 34px;
  }
  .faq-answer p {
    font-size: 16px;
  }
  .benefit-list article {
    grid-template-columns: 70px 1fr;
  }
  .benefit-list span {
    width: 70px;
    height: 70px;
  }
  .benefit-list h3 {
    font-size: 21px;
  }
  .benefit-list p {
    font-size: 16px;
  }
  .who .pill {
    font-size: 11px;
    padding: 13px 18px;
    margin-bottom: 36px;
  }
  .who .section-subtitle {
    font-size: 17px;
    line-height: 1.55;
  }
  .who-grid h3 {
    font-size: 24px;
  }
  .process {
    padding-block: 70px;
  }
  .process-intro .pill {
    font-size: 11px;
    padding: 13px 18px;
    margin-bottom: 36px;
  }
  .process-stats span {
    font-size: 18px;
  }
  .process-stats strong {
    font-size: 32px;
  }
  .process-stats > div {
    padding: 20px 0;
  }

  /* Keep mobile carousels inside the viewport instead of widening the page. */
  html {
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .why-collage,
  .pool-list,
  .who-grid,
  .gallery-viewport,
  .testimonial-grid {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 18px;
    justify-content: flex-start;
  }
  .why-collage .why-card,
  .pool-list .pool-card,
  .who-grid article,
  .testimonial-grid .testimonial-card {
    flex-basis: 100%;
    min-width: 0;
  }
  .pool-list {
    flex-direction: row;
    align-items: stretch;
  }
  .pool-stack-active .pool-list {
    display: block;
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    padding-bottom: 0;
  }
  .pool-stack-active .pool-card {
    flex-basis: auto;
    scroll-snap-align: none;
  }
  .gallery-track img {
    width: calc(100vw - 36px);
    flex-basis: calc(100vw - 36px);
  }
  .engineer-copy,
  .engineer-profile,
  .expertise-grid,
  .expertise-grid article {
    min-width: 0;
  }
  .expertise-grid h3 {
    white-space: normal;
  }
}

/* Centered floating navigation as soon as the desktop page leaves the top. */
@media (min-width: 1101px) {
  .site-header.is-past-hero {
    position: fixed;
    z-index: 1000;
    top: 24px;
    left: 50%;
    right: auto;
    width: 270px;
    height: 72px;
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(44, 91, 184, 0.72);
    border-radius: 999px;
    background: rgba(0, 0, 3, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    animation: floatingNavIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition:
      width 0.68s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
      box-shadow 0.35s ease;
  }

  .site-header.is-past-hero::after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 96px;
    z-index: 3;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
  }

  .site-header.is-past-hero.is-menu-open {
    width: min(1380px, calc(100vw - 40px));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
    transition-delay: 0s;
  }

  .site-header.is-past-hero .brand-large {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.9);
  }

  .site-header.is-past-hero .brand-dock {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .site-header.is-past-hero .menu-toggle {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 166px;
    height: 58px;
    padding: 0 22px 0 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    transition:
      width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      background-color 0.25s ease;
  }

  .site-header.is-past-hero .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .site-header.is-menu-open .menu-toggle {
    width: 136px;
    padding-left: 20px;
  }

  .site-header.is-past-hero .menu-toggle__label {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .site-header.is-past-hero .menu-toggle__lines {
    position: relative;
    display: block;
    width: 25px;
    height: 18px;
    flex: 0 0 25px;
  }

  .site-header.is-past-hero .menu-toggle__lines > span {
    position: absolute;
    right: 0;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
      top 0.34s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.18s ease;
  }

  .site-header.is-past-hero .menu-toggle__lines > span:nth-child(1) {
    top: 0;
  }
  .site-header.is-past-hero .menu-toggle__lines > span:nth-child(2) {
    top: 8px;
  }
  .site-header.is-past-hero .menu-toggle__lines > span:nth-child(3) {
    top: 16px;
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-header.is-menu-open .menu-toggle__lines > span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  .site-header.is-past-hero .main-nav {
    position: absolute;
    inset: 0 146px 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 72px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px) scale(0.985);
    pointer-events: none;
    transition:
      opacity 0.14s ease,
      transform 0.14s ease,
      visibility 0s linear 0.6s;
  }

  .site-header.is-past-hero.is-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition:
      opacity 0.28s ease 0.24s,
      transform 0.28s ease 0.24s,
      visibility 0s;
  }

  .site-header.is-past-hero .main-nav a {
    height: 100%;
    padding-inline: clamp(8px, 1vw, 20px);
    color: #e9e9ec;
    font-size: clamp(13px, 0.9vw, 18px);
  }
  .site-header.is-past-hero .main-nav a:not(.nav-cta):hover {
    color: var(--gold);
  }

  .site-header.is-past-hero .main-nav .nav-cta {
    align-self: center;
    min-width: clamp(180px, 15vw, 218px);
    height: 56px;
    margin-left: 12px;
    color: #171100 !important;
  }
  .site-header.is-past-hero .main-nav .nav-cta:hover,
  .site-header.is-past-hero .main-nav .nav-cta:focus,
  .site-header.is-past-hero .main-nav .nav-cta.active {
    background: #ffe082 !important;
    color: #171100 !important;
  }

  .site-header.is-past-hero :is(a, button):focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
  }

  @keyframes floatingNavIn {
    from {
      opacity: 0;
      transform: translate(-50%, -18px) scale(0.94);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-past-hero,
  .site-header.is-past-hero * {
    animation: none !important;
    transition: none !important;
  }
}

/* Morph the live hero navbar from its rendered position into the compact dock.
   Named snapshots let the motion start from the exact responsive geometry. */
@supports (view-transition-name: rbi-nav-shell) {
  @media (min-width: 1101px) and (prefers-reduced-motion: no-preference) {
    html.nav-morph-enabled {
      view-transition-name: none;
    }
    html.nav-morph-enabled .site-header:not(.is-past-hero) .main-nav {
      view-transition-name: rbi-nav-shell;
    }
    html.nav-morph-enabled .site-header.is-past-hero {
      view-transition-name: rbi-nav-shell;
      animation: none;
    }

    ::view-transition-group(rbi-nav-shell) {
      animation-duration: 0.72s;
      animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    }

    ::view-transition-image-pair(rbi-nav-shell) {
      isolation: isolate;
    }

    html.nav-morph-to-dock::view-transition-old(rbi-nav-shell) {
      animation: rbiNavOldOut 0.72s linear both;
      mix-blend-mode: normal;
    }

    html.nav-morph-to-dock::view-transition-new(rbi-nav-shell) {
      animation: rbiNavNewIn 0.72s linear both;
      mix-blend-mode: normal;
    }

    html.nav-morph-to-top::view-transition-group(rbi-nav-shell) {
      animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    }

    html.nav-morph-to-top::view-transition-old(rbi-nav-shell) {
      animation: rbiDockOldOut 0.72s linear both;
      mix-blend-mode: normal;
    }

    html.nav-morph-to-top::view-transition-new(rbi-nav-shell) {
      animation: rbiFullNewIn 0.72s linear both;
      mix-blend-mode: normal;
    }

    @keyframes rbiNavOldOut {
      0%,
      20% {
        opacity: 1;
      }
      64%,
      100% {
        opacity: 0;
      }
    }

    @keyframes rbiNavNewIn {
      0%,
      28% {
        opacity: 0;
      }
      68%,
      100% {
        opacity: 1;
      }
    }

    @keyframes rbiDockOldOut {
      0%,
      12% {
        opacity: 1;
      }
      38%,
      100% {
        opacity: 0;
      }
    }

    @keyframes rbiFullNewIn {
      0%,
      14% {
        opacity: 0;
      }
      46%,
      100% {
        opacity: 1;
      }
    }
  }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Popup Card */
.popup-card {
  width: 100%;
  max-width: 880px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(3, 3, 3, 0.08);
  border: 0;
  border-radius: 50%;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.popup-close:hover {
  background: rgba(3, 3, 3, 0.15);
  transform: scale(1.05);
}

/* Grid Layout */
.popup-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* Promo Visual Column */
.popup-promo {
  position: relative;
  background: linear-gradient(135deg, #004bd2 0%, #04a4f2 100%);
  color: #ffffff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.popup-promo .promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/slider1.png") center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.popup-promo .promo-content {
  position: relative;
  z-index: 2;
}
.promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.popup-promo h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 600;
}
.popup-promo p {
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
}
.promo-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.promo-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.promo-benefits li span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: bold;
}

/* Form Container Column */
.popup-form-wrap {
  padding: 36px 44px 32px;
  color: #111;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-form-wrap h2 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 600;
}
.popup-form-wrap p {
  color: #555;
  margin: 0 0 20px;
  font-size: 14.5px;
}
.popup-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 500;
}
.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  background: #fbfbfb;
  height: 42px;
  padding: 0 14px;
  color: #111;
  outline: 2px solid transparent;
  transition: all 0.2s ease;
  font-family: var(--sans);
  font-size: 14px;
}
.popup-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  padding-right: 36px;
}
.popup-form textarea {
  height: 70px;
  padding: 10px 14px;
  resize: vertical;
}
.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: #0b93fa;
  background: #ffffff;
  outline-color: rgba(11, 147, 250, 0.15);
}
.popup-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.popup-form .btn-submit {
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg, #0b93fa, #0045cc);
  color: #fff;
  margin-top: 6px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s;
}
.popup-form .btn-submit:hover {
  filter: brightness(1.05);
}
.popup-form small {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #666;
  font-size: 14px;
}
.popup-form .is-invalid {
  border-color: #e22 !important;
  outline-color: rgba(238, 34, 34, 0.15) !important;
}

/* Responsive Popup Form */
@media (max-width: 900px) {
  .popup-grid {
    grid-template-columns: 1fr;
  }
  .popup-promo {
    display: none;
  }
  .popup-form-wrap {
    padding: 48px 32px 36px;
  }
  .popup-form-wrap h2 {
    font-size: 34px;
  }
}
@media (max-width: 580px) {
  .popup-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .popup-form-wrap {
    padding: 40px 20px 24px;
  }
  .popup-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* Custom Select Dropdowns Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

/* Trigger Box matching input theme */
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  background: #ffffff;
  color: #111;
  outline: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Quote form trigger style */
.quote-form .custom-select-trigger {
  height: 62px;
  padding: 0 22px;
  font-size: 18px;
  border: 0;
}

/* Popup form trigger style */
.popup-form .custom-select-trigger {
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
  border: 1px solid #d4d4d8;
  background: #fbfbfb;
}

.custom-select.is-invalid .custom-select-trigger {
  border-color: #e22 !important;
  outline-color: rgba(238, 34, 34, 0.15) !important;
}

.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus {
  border-color: #0b93fa;
  background: #ffffff;
  outline-color: rgba(11, 147, 250, 0.15);
}

/* Trigger Arrow Indicator */
.custom-select-trigger::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.custom-select.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

/* Custom Dropdown Option List Overlay */
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid #e4e4e7;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: all 0.25s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Option Elements */
.custom-option {
  padding: 12px 18px;
  font-size: 15px;
  color: #3f3f46;
  transition: all 0.15s ease;
  font-family: var(--sans);
}

.quote-form .custom-option {
  padding: 16px 22px;
  font-size: 17px;
}

.popup-form .custom-option {
  padding: 10px 14px;
  font-size: 14px;
}

.custom-option:hover {
  background: #f4f4f5;
  color: #0b93fa;
}

.custom-option.selected {
  background: #eff6ff;
  color: #0b55d8;
  font-weight: 600;
}

/* Floating Action Buttons Stack */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  align-items: center;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  text-decoration: none;
  background: rgba(16, 16, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  outline: none;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

/* Hover effects */
.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-btn:active {
  transform: translateY(0) scale(0.95);
}

/* WhatsApp Icon Styling */
.float-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: rgba(37, 211, 102, 0.25);
  color: #fff;
}
.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.float-whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Call Icon Styling */
.float-call {
  background: linear-gradient(135deg, #0b95fa 0%, #004ed4 100%);
  border-color: rgba(11, 149, 250, 0.25);
}
.float-call:hover {
  box-shadow: 0 10px 30px rgba(11, 149, 250, 0.4);
}

/* Mobile Bottom Sticky Navbar Defaults */
.mobile-bottom-nav {
  display: none;
}
.footer-links-wrap {
  display: block;
}

/* Enquire Icon Styling */
.float-enquire {
  background: linear-gradient(135deg, var(--gold) 0%, #c99313 100%);
  border-color: rgba(255, 207, 86, 0.25);
  color: #111;
}
.float-enquire:hover {
  box-shadow: 0 10px 30px rgba(255, 207, 86, 0.4);
}

/* Back to Top Icon Styling */
.float-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  order: 4; /* Render at the bottom of the stack */
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.float-top:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* Responsive adjust for mobile */
@media (max-width: 720px) {
  /* Mobile body space for bottom sticky nav */
  body {
    padding-bottom: 78px;
  }

  /* Footer Accordions on Mobile */
  .site-footer h3 {
    position: relative;
    cursor: pointer;
    padding-block: 20px;
    margin: 0 !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
  }
  .site-footer div.active h3 {
    color: var(--gold);
    border-bottom-color: rgba(255, 207, 86, 0.2);
  }
  .site-footer h3::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.3s, border-color 0.3s;
    margin-right: 8px;
  }
  .site-footer div.active h3::after {
    transform: rotate(-135deg);
    border-color: var(--gold);
  }
  .footer-links-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .site-footer div.active .footer-links-wrap {
    max-height: 500px;
    padding-top: 16px;
    padding-bottom: 24px;
  }

  /* Sticky Bottom Nav and Floating button adjustments on mobile */
  .floating-actions a.floating-btn {
    display: none !important;
  }
  .floating-actions {
    bottom: 92px !important; /* place safely above sticky bottom nav */
    right: 18px;
    gap: 12px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
  
  /* Premium Bottom Navbar matching site theme */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #111111;
    border-top: 2.5px solid var(--gold);
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    gap: 6px;
    flex: 1;
    height: 100%;
    transition: background-color 0.2s, transform 0.15s;
  }
  
  .mobile-nav-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .mobile-nav-item:active {
    background-color: rgba(255, 255, 255, 0.03);
    transform: scale(0.98);
  }
  
  .mobile-nav-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    fill: currentColor;
    margin-bottom: 2px;
    display: block;
  }
}
