:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #edf2f8;
  --line: #d9e3ef;
  --line-strong: #c8d4e2;
  --text: #0d2a4f;
  --muted: #5e7291;
  --blue-900: #041a3a;
  --blue-800: #082b58;
  --blue-700: #0b3d77;
  --blue-500: #2f88ff;
  --green: #28c63f;
  --green-dark: #14a92c;
  --shadow-lg: 0 32px 70px rgba(9, 32, 67, 0.14);
  --shadow-md: 0 16px 36px rgba(14, 40, 82, 0.12);
  --shadow-sm: 0 8px 20px rgba(18, 46, 84, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1280px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.site-shell { overflow: clip; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 82px 0; }
.centered { text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1262d0;
}
.eyebrow--light { color: #8dc6ff; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b6de6, #1259c0);
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(17, 86, 190, 0.25);
}

h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  line-height: 1;
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--green {
  color: #fff;
  background: linear-gradient(180deg, #33d34a, #20b938);
  box-shadow: 0 16px 30px rgba(40, 198, 63, 0.28);
}
.btn--green:hover { box-shadow: 0 22px 38px rgba(40, 198, 63, 0.35); }
.btn--outline {
  color: #0a4aa3;
  background: #fff;
  border: 1px solid #b6d2fb;
  box-shadow: 0 10px 18px rgba(26, 77, 148, 0.08);
}
.btn--small { min-height: 50px; padding-inline: 22px; }
.btn--wide { width: 100%; }
.btn__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 8px rgba(255,255,255,.15);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.header.is-scrolled {
  background: rgba(4, 20, 42, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(6, 20, 41, .16);
}
.header__row {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  flex-shrink: 0;
}
.logo__mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 123, 255, .25), rgba(9, 26, 56, .25)), rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.logo__mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #2c93ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text b { font-size: 2rem; font-weight: 800; }
.logo__text small { font-size: .88rem; letter-spacing: .32em; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .98rem;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #44c3ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header__right { display: flex; align-items: center; gap: 16px; color: #fff; }
.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  white-space: nowrap;
}
.phone__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 1.1rem;
}
.phone span { display: flex; flex-direction: column; }
.phone b { font-size: 1.08rem; }
.phone small { color: rgba(255,255,255,.72); font-size: .76rem; }
.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #fff;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 24px 0 82px;
  background:
    radial-gradient(circle at 90% 18%, rgba(55, 152, 255, 0.18), transparent 26%),
    linear-gradient(90deg, #03162f 0%, #06234a 43%, #07244a 72%, #082452 100%);
  color: #fff;
}
.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .22;
}
.hero__glow--1 {
  width: 540px;
  height: 540px;
  right: -160px;
  top: -120px;
  background: #4dc4ff;
}
.hero__glow--2 {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -150px;
  background: #0d57c4;
}
.hero__grid {
  min-height: min(920px, calc(100vh - 50px));
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
  position: relative;
}
.hero__content { padding: 60px 0 22px; position: relative; z-index: 2; }
.hero__content h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.04em;
  text-transform: uppercase;
  max-width: 8.2ch;
}
.hero__lead {
  margin-top: 26px;
  max-width: 27ch;
  font-size: clamp(1.08rem, 1.9vw, 1.5rem);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}
.hero__features {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.hero__features div {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.hero__features i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero__features i svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__features span {
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.35;
}
.price-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 0;
  max-width: 960px;
  padding: 14px;
  background: rgba(255,255,255,.96);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.price-strip > div {
  padding: 18px 22px;
}
.price-strip > div + div {
  border-left: 1px solid var(--line);
}
.price-strip span {
  display: block;
  margin-bottom: 6px;
  color: #41608d;
  font-size: .96rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price-strip b {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.price-strip .btn { min-width: 250px; }

.hero__visual {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-scene {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 0.98;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(4, 18, 41, .45);
  isolation: isolate;
}
.hero-scene__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scene__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 44, .05), rgba(8, 22, 44, .18));
}
.airflow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stream {
  position: absolute;
  left: 13%;
  top: 33%;
  width: 58%;
  height: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(163, 236, 255, .18), rgba(178, 244, 255, .88) 30%, rgba(146, 222, 255, .28) 82%, transparent 100%);
  filter: blur(4px);
  mix-blend-mode: screen;
  transform-origin: left center;
  --rotate: 0deg;
  --shift: 0px;
  animation: flow 6s ease-in-out infinite;
}
.stream::before {
  content: "";
  position: absolute;
  inset: 22% 0 22% 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.86) 30%, rgba(255,255,255,0) 92%);
  opacity: .75;
}
.stream--1 { --rotate: 16deg; --shift: -2%; top: 34%; animation-delay: -.2s; }
.stream--2 { --rotate: 20deg; --shift: -1%; top: 38%; animation-delay: -.8s; opacity: .88; }
.stream--3 { --rotate: 24deg; --shift: 0%; top: 42%; animation-delay: -1.5s; opacity: .9; }
.stream--4 { --rotate: 28deg; --shift: 1%; top: 46%; animation-delay: -2.1s; opacity: .8; }
.stream--5 { --rotate: 32deg; --shift: 3%; top: 50%; animation-delay: -2.8s; opacity: .72; }
.mist {
  position: absolute;
  width: 40%;
  height: 30%;
  left: 18%;
  top: 44%;
  border-radius: 50%;
  filter: blur(34px);
  background: radial-gradient(circle, rgba(142, 228, 255, .33), transparent 70%);
  animation: pulse 5.2s ease-in-out infinite;
}
.mist--2 { left: 29%; top: 49%; animation-delay: -1.6s; }
.mist--3 { left: 22%; top: 57%; animation-delay: -3.1s; }
.leaf {
  position: absolute;
  display: block;
  width: 42px;
  height: 24px;
  border-radius: 100% 8% 100% 8%;
  background: linear-gradient(135deg, #95ef56, #34b837);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 12px 18px rgba(21, 84, 43, .18);
}
.leaf::after {
  content: "";
  position: absolute;
  left: 20%;
  top: 47%;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  transform: rotate(-25deg);
}
.leaf--1 { right: 12%; top: 28%; transform: rotate(14deg); animation: leaf1 8s ease-in-out infinite; }
.leaf--2 { right: 21%; top: 46%; transform: rotate(-10deg) scale(.9); animation: leaf2 7.2s ease-in-out infinite; }
.leaf--3 { right: 28%; bottom: 26%; transform: rotate(22deg) scale(.82); animation: leaf3 9s ease-in-out infinite; }
.clients-badge {
  position: absolute;
  left: 38px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(8, 27, 55, .72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.avatars { display: inline-flex; }
.avatars i {
  width: 38px;
  height: 38px;
  margin-left: -9px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #ffd7b0, #47a7ff);
}
.avatars i:first-child { margin-left: 0; }
.clients-badge b { display: block; font-size: 1.3rem; }
.clients-badge small { color: rgba(255,255,255,.78); font-size: .9rem; }

.section-copy h2,
.included h2,
.showcase h2,
.faq h2,
.steps h2,
.footer h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.section-copy p { margin-top: 16px; font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 52ch; }
.why { background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%); }
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 570px);
  gap: 38px;
  align-items: center;
}
.badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5fb;
  border: 1px solid #e1e9f3;
  font-weight: 700;
  color: #294971;
}
.badges i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1d67da;
}
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1671f1;
  color: #fff;
  font-weight: 800;
  font-size: .84rem;
}
.compare-card {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.comparison {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.38;
  user-select: none;
  cursor: ew-resize;
  --position: 50%;
  background: #0d1117;
}
.comparison__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comparison__before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0 round 0);
}
.comparison__before .comparison__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comparison__divider {
  position: absolute;
  left: var(--position);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  transform: translateX(-50%);
}
.comparison__handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 26px rgba(13, 42, 79, 0.2);
  display: grid;
  place-items: center;
  z-index: 2;
}
.comparison__handle span,
.comparison__handle span::before,
.comparison__handle span::after {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 3px solid #0b58c5;
  border-right: 3px solid #0b58c5;
}
.comparison__handle span::before {
  transform: translate(-12px, -50%) rotate(-135deg);
  top: 50%;
  left: 50%;
}
.comparison__handle span::after {
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}
.comparison__label {
  position: absolute;
  bottom: 18px;
  z-index: 1;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.comparison__label--before { left: 16px; background: rgba(6, 12, 20, .72); }
.comparison__label--after { right: 16px; background: #1272ef; }

.included { background: #fff; }
.included__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 44px;
  align-items: center;
}
.service-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 16px;
}
.service-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 10px 6px;
}
.service-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff5fc;
  color: #1463d4;
}
.service-grid i svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-grid span { font-weight: 700; color: #38537a; line-height: 1.35; font-size: .92rem; }
.tech-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 470px;
}
.tech-card__image-wrap {
  width: 100%;
  max-width: 500px;
  padding: 22px 18px 0;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f1f6fc);
  box-shadow: var(--shadow-md);
}
.tech-card img { width: 100%; height: auto; object-fit: contain; }
.time-card {
  position: absolute;
  right: 8px;
  bottom: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 34px rgba(11, 50, 99, .14);
}
.time-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1769dd;
  background: #f2f7ff;
  grid-row: 1 / span 3;
}
.time-card i svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.time-card span { font-size: .8rem; text-transform: uppercase; font-weight: 700; color: #54729b; }
.time-card b { font-size: 2.1rem; line-height: 1; letter-spacing: -.05em; }
.time-card small { color: #54729b; font-weight: 600; }

.price { background: linear-gradient(180deg, #f4f7fb 0%, #eff4fa 100%); }
.price__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(230px, .9fr) minmax(230px, .95fr) minmax(250px, 1fr);
  gap: 18px;
  align-items: stretch;
}
.adv-card,
.tariff,
.promo-card,
.review-card,
.details,
.footer-photo,
.guarantee,
.contact-pill,
.modal__dialog,
.step,
.gallery,
.reviews,
.faq__grid details {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.adv-card,
.tariff,
.promo-card {
  padding: 28px 24px;
}
.adv-card {
  color: #fff;
  background: linear-gradient(180deg, #082b58 0%, #05214a 100%);
}
.adv-card h3,
.tariff h3,
.promo-card h3 { font-size: 1.9rem; letter-spacing: -.03em; }
.adv-card ul,
.tariff ul,
.promo-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.adv-card li,
.tariff li,
.promo-card li { position: relative; padding-left: 28px; line-height: 1.5; }
.adv-card li::before,
.tariff li::before,
.promo-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #38d14a;
  font-weight: 800;
}
.tariff {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tariff p { color: #426387; text-transform: uppercase; font-weight: 700; }
.tariff__price {
  font-size: 3rem;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
  color: #0b2c58;
}
.tariff__price span { font-size: .5em; }
.tariff .btn { margin-top: auto; }
.tariff--popular {
  position: relative;
  border: 2px solid #92ee8d;
  box-shadow: 0 22px 40px rgba(38, 191, 63, 0.12);
}
.popular-label {
  position: absolute;
  left: 22px;
  top: -14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 900;
  background: linear-gradient(180deg, #38d84f, #19af32);
  color: #fff;
  box-shadow: 0 12px 22px rgba(33, 182, 55, .28);
}
.promo-card {
  color: #fff;
  background: linear-gradient(180deg, #0b3d77 0%, #082751 100%);
}
.promo-card > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ff4e46;
  font-weight: 900;
  text-transform: uppercase;
}
.promo-card p { margin-top: 18px; color: #ff7a63; font-weight: 800; }
.promo-card .btn { margin-top: auto; }

.steps { background: #fff; }
.steps__row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.step {
  position: relative;
  padding: 26px 18px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}
.step b {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1874f2;
  font-size: .95rem;
}
.step i {
  margin-top: 16px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff5ff;
  color: #1a6ee0;
}
.step i svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step span { font-weight: 700; line-height: 1.4; color: #39547b; }

.showcase { background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%); }
.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 22px;
}
.gallery,
.reviews { padding: 28px; }
.section-head { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(1.9rem, 2.4vw, 2.5rem); }
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.thumb-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 18px; background: #eef3fb; }
.thumb-grid img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }
.thumb-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 12px;
  border-radius: 10px;
  color: #fff;
  background: rgba(11, 17, 26, .7);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-card { padding: 24px 22px; }
.stars { color: #ffbe17; letter-spacing: .2em; font-size: 1.05rem; margin-bottom: 14px; }
.review-card p { color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.review-card b { color: var(--text); }

.faq { background: #fff; }
.faq__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.faq__grid details { padding: 20px 18px; }
.faq__grid summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #17365f;
  line-height: 1.42;
}
.faq__grid summary::-webkit-details-marker { display: none; }
.faq__grid summary::before {
  content: "?";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  color: #176ae0;
  background: #eff5ff;
  font-weight: 900;
}
.faq__grid p { margin-top: 14px; line-height: 1.65; color: var(--muted); }

.footer {
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 12% 0%, rgba(41, 147, 255, .18), transparent 28%),
    linear-gradient(90deg, #04172f 0%, #062652 48%, #062a55 100%);
  color: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .9fr);
  gap: 28px;
  align-items: center;
}
.footer__cta p {
  margin-top: 18px;
  max-width: 60ch;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}
.footer__actions { margin-top: 28px; }
.contact-pills {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}
.contact-pill span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(38, 131, 255, .22);
  color: #7dc4ff;
  font-size: 1.2rem;
}
.contact-pill b { display: block; }
.contact-pill small { color: rgba(255,255,255,.75); }
.copyright { margin-top: 18px; color: rgba(255,255,255,.7); }
.footer__media { display: grid; gap: 18px; }
.footer-photo {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.08);
}
.footer-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
}
.guarantee {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: rgba(255,255,255,.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}
.guarantee i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  color: #a8ddff;
}
.guarantee i svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.guarantee h3 { font-size: 1.5rem; margin-bottom: 8px; }
.guarantee p { color: rgba(255,255,255,.82); line-height: 1.6; }
.guarantee small { display: block; margin-top: 10px; color: #89c8ff; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}
.modal.is-open { display: block; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 42, .62);
  backdrop-filter: blur(10px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 560px);
  margin: min(6vh, 48px) auto;
  padding: 28px;
  border-radius: 30px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  background: #eff5ff;
  color: var(--text);
}
.modal__dialog > p { margin-top: 12px; color: var(--muted); line-height: 1.7; }
.lead-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #214066;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d9e5f2;
  background: #f7fbff;
  color: var(--text);
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.form-status { min-height: 24px; font-weight: 700; }
.form-status.is-success { color: #1f9c35; }
.form-status.is-error { color: #cc3646; }
.honeypot { display: none !important; }
body.modal-open { overflow: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes flow {
  0%, 100% { opacity: .8; transform: translateX(var(--shift)) rotate(var(--rotate)) scaleX(1); filter: blur(4px); }
  50% { opacity: 1; transform: translateX(calc(var(--shift) + 10px)) rotate(var(--rotate)) scaleX(1.04); filter: blur(3px); }
}
@keyframes pulse {
  0%, 100% { opacity: .22; transform: scale(1); }
  50% { opacity: .34; transform: scale(1.08); }
}
@keyframes leaf1 {
  0%, 100% { transform: translate(0, 0) rotate(14deg); }
  50% { transform: translate(-10px, 12px) rotate(2deg); }
}
@keyframes leaf2 {
  0%, 100% { transform: translate(0, 0) rotate(-10deg) scale(.9); }
  50% { transform: translate(12px, -8px) rotate(6deg) scale(.95); }
}
@keyframes leaf3 {
  0%, 100% { transform: translate(0, 0) rotate(22deg) scale(.82); }
  50% { transform: translate(-6px, -14px) rotate(34deg) scale(.86); }
}

@media (max-width: 1180px) {
  .nav { gap: 18px; font-size: .92rem; }
  .phone small { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; min-height: auto; }
  .hero__content { padding-top: 44px; }
  .hero__visual { justify-content: center; }
  .hero-scene { max-width: 760px; aspect-ratio: 1.2; }
  .included__grid,
  .showcase__grid,
  .footer__grid,
  .why__grid { grid-template-columns: 1fr; }
  .price__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reviews__list { grid-template-columns: 1fr; }
  .thumb-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --header-h: 80px; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 28, 58, .96);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav.is-open { display: flex; }
  .burger { display: inline-block; }
  .header__right .btn--small,
  .phone { display: none; }
  .hero__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-strip { grid-template-columns: 1fr 1fr; gap: 0; }
  .price-strip .btn { grid-column: 1 / -1; margin-top: 6px; width: 100%; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-pills { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 62px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero { padding-bottom: 56px; }
  .logo__mark { width: 44px; height: 44px; }
  .logo__text b { font-size: 1.6rem; }
  .logo__text small { font-size: .72rem; letter-spacing: .24em; }
  .hero__content h1 { max-width: 7.4ch; font-size: clamp(2.6rem, 11vw, 4.8rem); }
  .hero__lead { font-size: 1rem; max-width: 100%; }
  .hero-scene { aspect-ratio: 1 / 1.04; border-radius: 28px; }
  .clients-badge { left: 16px; right: 16px; bottom: 16px; gap: 12px; }
  .price-strip { grid-template-columns: 1fr; border-radius: 24px; }
  .price-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .badges { gap: 10px; }
  .compare-card { padding: 12px; }
  .comparison__handle { width: 54px; height: 54px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-card { min-height: 380px; }
  .time-card { right: 14px; bottom: 14px; }
  .price__grid,
  .steps__row,
  .thumb-grid,
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { gap: 18px; }
}

@media (max-width: 520px) {
  .header__row { gap: 12px; }
  .hero__features { gap: 12px; }
  .hero__features span { font-size: .9rem; }
  .hero__features i { width: 58px; height: 58px; }
  .section-copy h2,
  .included h2,
  .showcase h2,
  .faq h2,
  .steps h2,
  .footer h2 { font-size: 2rem; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .modal__dialog { padding: 22px 18px; }
}

.header {
  background: rgba(3, 18, 40, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 26px rgba(6, 20, 41, .10);
}
.header.is-scrolled {
  background: rgba(3, 18, 40, 0.92);
  box-shadow: 0 14px 34px rgba(6, 20, 41, .20);
}
.logo,
.nav,
.header__right,
.phone,
.phone small,
.phone b { color: rgba(255,255,255,.98); }
.nav a { opacity: .96; }
.phone__icon,
.burger { background: rgba(255,255,255,.08); }

.hero {
  overflow: hidden;
  padding: 18px 0 82px;
  background:
    radial-gradient(circle at 86% 12%, rgba(81, 171, 255, .22), transparent 22%),
    radial-gradient(circle at 78% 55%, rgba(49, 132, 255, .12), transparent 26%),
    linear-gradient(90deg, #03162f 0%, #06224a 42%, #082753 76%, #082a58 100%);
}
.hero__grid {
  min-height: min(900px, calc(100vh - 42px));
  grid-template-columns: minmax(0, 560px) minmax(540px, 1fr);
  gap: 12px;
}
.hero__content {
  padding: 86px 0 30px;
  z-index: 4;
}
.hero__content h1 {
  max-width: 7.4ch;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .94;
}
.hero__lead { max-width: 19ch; }
.price-strip {
  position: relative;
  z-index: 5;
  max-width: 920px;
}
.hero__visual {
  position: relative;
  min-height: 760px;
  z-index: 1;
}
.hero-scene {
  position: absolute;
  inset: -10px -210px -28px -165px;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  isolation: isolate;
}
.hero-scene__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(.96);
}
.hero-scene__overlay {
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 1) 0%, rgba(3, 22, 47, .98) 10%, rgba(3, 22, 47, .75) 21%, rgba(3, 22, 47, .28) 34%, rgba(3, 22, 47, 0) 48%),
    linear-gradient(180deg, rgba(3, 22, 47, .16) 0%, rgba(3, 22, 47, 0) 35%, rgba(3, 22, 47, 0) 72%, rgba(3, 22, 47, .2) 100%);
}
.airflow {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.stream {
  left: -20%;
  width: 90%;
  height: 11%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(82, 171, 255, .03) 6%, rgba(109, 193, 255, .14) 18%, rgba(201, 244, 255, .4) 38%, rgba(156, 223, 255, .16) 68%, transparent 100%);
  filter: blur(9px);
  mix-blend-mode: screen;
  opacity: .8;
}
.stream::before {
  inset: 36% 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 18%, rgba(255,255,255,.7) 42%, rgba(255,255,255,.1) 76%, transparent 100%);
  opacity: .62;
}
.stream--1 { --rotate: -5deg; --shift: -2%; top: 35%; animation-duration: 7.8s; }
.stream--2 { --rotate: -1deg; --shift: -1%; top: 41%; animation-duration: 8.6s; opacity: .62; }
.stream--3 { --rotate: 3deg; --shift: 0%; top: 47%; animation-duration: 7.4s; opacity: .56; }
.stream--4 { --rotate: 7deg; --shift: 2%; top: 53%; animation-duration: 8.2s; opacity: .46; }
.clients-badge {
  left: 49%;
  bottom: 36px;
  z-index: 3;
}

@keyframes flow {
  0%, 100% {
    opacity: .72;
    transform: translateX(var(--shift)) rotate(var(--rotate)) scaleX(1);
    filter: blur(9px);
  }
  50% {
    opacity: .92;
    transform: translateX(calc(var(--shift) - 16px)) rotate(var(--rotate)) scaleX(1.06);
    filter: blur(7px);
  }
}

@media (max-width: 1320px) {
  .hero-scene { inset: 0 -130px -24px -90px; }
  .clients-badge { left: 42%; }
}

@media (max-width: 1180px) {
  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero__content {
    padding-top: 58px;
    max-width: 640px;
  }
  .hero__visual {
    min-height: 560px;
  }
  .hero-scene {
    inset: 0 -40px -10px 0;
  }
  .clients-badge { left: 30px; }
}

@media (max-width: 980px) {
  .header {
    background: rgba(3, 18, 40, 0.9);
  }
  .nav {
    background: rgba(3, 18, 40, 0.96);
  }
  .hero {
    padding-top: 8px;
  }
  .hero__content h1 { max-width: 8ch; }
  .hero__visual {
    min-height: 460px;
  }
  .hero-scene {
    inset: 0;
  }
  .clients-badge {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding-top: 36px;
  }
  .hero__visual {
    min-height: 330px;
  }
  .hero-scene {
    position: relative;
    inset: auto;
    min-height: 330px;
  }
  .hero-scene__image {
    border-radius: 24px;
  }
  .hero-scene__overlay {
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(3, 22, 47, .18) 0%, rgba(3, 22, 47, .05) 22%, rgba(3, 22, 47, 0) 55%),
      linear-gradient(180deg, rgba(3, 22, 47, .06) 0%, rgba(3, 22, 47, .18) 100%);
  }
  .stream {
    left: -12%;
    width: 72%;
    filter: blur(7px);
  }
  .clients-badge {
    left: 14px;
    right: auto;
    bottom: 14px;
    padding: 12px 14px;
  }
}

.header {
  background: rgba(4, 20, 42, .74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header.is-scrolled {
  background: rgba(4, 18, 39, .92);
  box-shadow: 0 10px 28px rgba(3, 16, 36, .28);
}

.hero {
  position: relative;
  padding: 26px 0 88px;
  background:
    radial-gradient(circle at 85% 12%, rgba(58, 148, 255, 0.18), transparent 22%),
    linear-gradient(90deg, #02152d 0%, #05224b 48%, #07295b 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/hero-premium-clean.png') no-repeat right bottom / min(1120px, 64vw) auto;
  opacity: .98;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 820px;
  grid-template-columns: minmax(0, 600px) 1fr;
  gap: 20px;
  align-items: center;
}
.hero__content {
  padding-top: 92px;
  max-width: 620px;
}
.hero__content h1 {
  max-width: 7.5ch;
  font-size: clamp(3.5rem, 6vw, 6.3rem);
  line-height: .92;
}
.hero__lead { max-width: 19ch; }
.hero__features { max-width: 620px; }
.price-strip {
  max-width: 860px;
  border-radius: 30px;
  background: rgba(255,255,255,.97);
}
.hero__visual {
  position: relative;
  min-height: 690px;
  overflow: visible;
}
.hero__visual-air,
.hero__visual::before,
.hero__visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 0;
}
.hero__visual-air {
  right: 16%;
  top: 33%;
  width: 82%;
  height: 36%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(117, 186, 255, .00) 0%,
    rgba(132, 200, 255, .06) 16%,
    rgba(176, 229, 255, .18) 34%,
    rgba(229, 248, 255, .22) 54%,
    rgba(255,255,255,.0) 100%);
  filter: blur(18px);
  transform: rotate(-10deg);
  mix-blend-mode: screen;
  animation: luxuryBreeze 8s ease-in-out infinite;
}
.hero__visual::before {
  right: 14%;
  top: 36%;
  width: 86%;
  height: 13%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(177,231,255,.09) 22%,
    rgba(255,255,255,.18) 48%,
    rgba(177,231,255,.06) 72%,
    rgba(255,255,255,0) 100%);
  filter: blur(10px);
  transform: rotate(-10deg);
  mix-blend-mode: screen;
  animation: luxuryBreeze 6.8s ease-in-out infinite -1.2s;
}
.hero__visual::after {
  right: 12%;
  top: 44%;
  width: 88%;
  height: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(169,224,255,.04) 18%,
    rgba(255,255,255,.12) 46%,
    rgba(169,224,255,.04) 74%,
    rgba(255,255,255,0) 100%);
  filter: blur(12px);
  transform: rotate(-8deg);
  mix-blend-mode: screen;
  animation: luxuryBreeze 7.4s ease-in-out infinite -2.6s;
}
.clients-badge {
  left: auto;
  right: 70px;
  bottom: 72px;
  z-index: 2;
  background: rgba(7, 28, 58, .72);
}

@keyframes luxuryBreeze {
  0%, 100% {
    opacity: .72;
    transform: rotate(-10deg) translate3d(0, 0, 0) scaleX(1);
    filter: blur(18px);
  }
  50% {
    opacity: .94;
    transform: rotate(-9deg) translate3d(-18px, 4px, 0) scaleX(1.04);
    filter: blur(15px);
  }
}

@media (max-width: 1280px) {
  .hero::after { background-size: min(960px, 60vw) auto; }
  .hero__grid { min-height: 760px; grid-template-columns: minmax(0, 560px) 1fr; }
  .clients-badge { right: 34px; bottom: 56px; }
}

@media (max-width: 1180px) {
  .hero::after {
    background-size: min(900px, 74vw) auto;
    background-position: right -20px bottom;
    opacity: .95;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 16px;
  }
  .hero__content {
    max-width: 620px;
    padding-top: 76px;
  }
  .hero__visual {
    min-height: 500px;
  }
  .hero__visual-air,
  .hero__visual::before,
  .hero__visual::after {
    right: 6%;
    width: 94%;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 12px;
    padding-bottom: 56px;
  }
  .hero::after {
    background-size: min(860px, 120vw) auto;
    background-position: right -120px top 80px;
    opacity: .55;
  }
  .hero__content { padding-top: 44px; }
  .hero__content h1 { font-size: clamp(3rem, 9vw, 5rem); }
  .hero__lead { max-width: 24ch; }
  .hero__visual { min-height: 360px; }
  .clients-badge {
    right: 20px;
    bottom: 18px;
  }
}

@media (max-width: 720px) {
  .header {
    background: rgba(4, 20, 42, .88);
  }
  .hero::after {
    background-size: 1280px auto;
    background-position: right -370px top 90px;
    opacity: .42;
  }
  .hero__content h1 {
    max-width: 6.9ch;
    font-size: clamp(2.9rem, 12vw, 4.6rem);
  }
  .hero__lead { max-width: 100%; }
  .hero__features { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__visual { min-height: 240px; }
  .hero__visual-air,
  .hero__visual::before,
  .hero__visual::after {
    right: -10%;
    width: 118%;
    opacity: .6;
  }
  .clients-badge {
    left: 0;
    right: auto;
    bottom: 8px;
  }
}

@media (max-width: 520px) {
  .hero::after {
    background-size: 1180px auto;
    background-position: right -460px top 110px;
    opacity: .38;
  }
  .hero__visual { min-height: 180px; }
  .clients-badge {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    margin-top: 10px;
    width: fit-content;
  }
}

.header,
.header.is-scrolled {
  background: rgba(3, 18, 41, 0.88) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero {
  padding: 26px 0 84px !important;
  background:
    linear-gradient(90deg, rgba(2, 15, 39, 0.98) 0%, rgba(3, 24, 60, 0.95) 32%, rgba(5, 36, 83, 0.70) 58%, rgba(7, 43, 97, 0.28) 78%, rgba(9, 49, 108, 0.12) 100%),
    url('../img/hero-premium-clean.png') no-repeat right center / cover !important;
}
.hero::after {
  content: none !important;
}
.hero__background {
  z-index: 0;
}
.hero__glow--1 {
  right: -180px;
  top: -90px;
  opacity: .16;
}
.hero__glow--2 {
  left: -200px;
  bottom: -180px;
  opacity: .12;
}
.hero__air-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__air-source {
  position: absolute;
  right: 15%;
  top: 235px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 235, 255, .28) 0%, rgba(196, 235, 255, .12) 38%, rgba(196, 235, 255, 0) 72%);
  filter: blur(34px);
  animation: heroSourcePulse 7s ease-in-out infinite;
}
.hero__air-ribbon,
.hero__air-glow {
  position: absolute;
  display: block;
  right: 9%;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__air-ribbon {
  border-radius: 999px;
  transform-origin: right center;
  filter: blur(18px);
  opacity: .88;
}
.hero__air-ribbon--1 {
  top: 285px;
  width: 980px;
  height: 120px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(149, 212, 255, .06) 16%, rgba(203, 240, 255, .20) 40%, rgba(255,255,255,.30) 60%, rgba(179, 229, 255, .10) 80%, rgba(255,255,255,0) 100%);
  transform: rotate(-7deg);
  animation: heroAirFloat1 9s ease-in-out infinite;
}
.hero__air-ribbon--2 {
  top: 350px;
  width: 1080px;
  height: 110px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(165, 222, 255, .05) 18%, rgba(210, 244, 255, .16) 44%, rgba(255,255,255,.24) 63%, rgba(165, 222, 255, .08) 81%, rgba(255,255,255,0) 100%);
  transform: rotate(-4deg);
  animation: heroAirFloat2 10.5s ease-in-out infinite;
}
.hero__air-ribbon--3 {
  top: 415px;
  width: 930px;
  height: 86px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(166, 223, 255, .04) 16%, rgba(235, 249, 255, .14) 46%, rgba(255,255,255,.18) 60%, rgba(166, 223, 255, .06) 76%, rgba(255,255,255,0) 100%);
  transform: rotate(-2deg);
  animation: heroAirFloat3 8.5s ease-in-out infinite;
}
.hero__air-ribbon--4 {
  top: 475px;
  width: 800px;
  height: 74px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(176, 228, 255, .02) 18%, rgba(255,255,255,.11) 50%, rgba(176, 228, 255, .05) 72%, rgba(255,255,255,0) 100%);
  transform: rotate(1deg);
  animation: heroAirFloat4 7.8s ease-in-out infinite;
}
.hero__air-glow {
  border-radius: 50%;
  filter: blur(44px);
}
.hero__air-glow--1 {
  top: 325px;
  right: 25%;
  width: 360px;
  height: 180px;
  background: radial-gradient(circle, rgba(161, 222, 255, .18) 0%, rgba(161, 222, 255, 0) 72%);
  animation: heroGlowDrift 11s ease-in-out infinite;
}
.hero__air-glow--2 {
  top: 440px;
  right: 34%;
  width: 430px;
  height: 220px;
  background: radial-gradient(circle, rgba(161, 222, 255, .10) 0%, rgba(161, 222, 255, 0) 74%);
  animation: heroGlowDrift 14s ease-in-out infinite -2s;
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 840px !important;
  grid-template-columns: minmax(0, 590px) 1fr !important;
  gap: 0 !important;
  align-items: start !important;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 84px !important;
  max-width: 590px;
}
.hero__content h1 {
  max-width: 7ch !important;
  font-size: clamp(3.5rem, 6vw, 6rem) !important;
  line-height: .92 !important;
}
.hero__lead {
  max-width: 18ch !important;
}
.hero__visual {
  min-height: 840px !important;
  position: relative !important;
  background: transparent !important;
}
.hero__visual-air,
.hero__visual::before,
.hero__visual::after {
  display: none !important;
}
.clients-badge {
  position: absolute !important;
  right: 84px !important;
  bottom: 74px !important;
  left: auto !important;
  z-index: 4 !important;
  background: rgba(7, 27, 55, .78) !important;
}

@keyframes heroSourcePulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes heroAirFloat1 {
  0%, 100% { transform: rotate(-7deg) translate3d(0,0,0) scaleX(1); opacity: .86; }
  50% { transform: rotate(-8deg) translate3d(-24px, 6px, 0) scaleX(1.05); opacity: 1; }
}
@keyframes heroAirFloat2 {
  0%, 100% { transform: rotate(-4deg) translate3d(0,0,0) scaleX(1); opacity: .72; }
  50% { transform: rotate(-5deg) translate3d(-32px, 8px, 0) scaleX(1.06); opacity: .95; }
}
@keyframes heroAirFloat3 {
  0%, 100% { transform: rotate(-2deg) translate3d(0,0,0) scaleX(1); opacity: .64; }
  50% { transform: rotate(-3deg) translate3d(-18px, 4px, 0) scaleX(1.04); opacity: .86; }
}
@keyframes heroAirFloat4 {
  0%, 100% { transform: rotate(1deg) translate3d(0,0,0) scaleX(1); opacity: .58; }
  50% { transform: rotate(0deg) translate3d(-14px, 2px, 0) scaleX(1.03); opacity: .8; }
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translate3d(0,0,0); opacity: .75; }
  50% { transform: translate3d(-18px, 8px, 0); opacity: 1; }
}

@media (max-width: 1280px) {
  .hero {
    background-size: cover !important;
  }
  .hero__grid {
    min-height: 780px !important;
    grid-template-columns: minmax(0, 560px) 1fr !important;
  }
  .hero__air-source { right: 12%; top: 245px; }
  .hero__air-ribbon { right: 6%; }
  .clients-badge { right: 42px !important; bottom: 56px !important; }
}

@media (max-width: 1100px) {
  .hero {
    background-position: 72% center !important;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: auto !important;
  }
  .hero__content {
    max-width: 620px;
    padding-top: 62px !important;
  }
  .hero__visual {
    min-height: 420px !important;
  }
  .clients-badge {
    right: 28px !important;
    bottom: 24px !important;
  }
}

@media (max-width: 820px) {
  .hero {
    background-position: 76% 44% !important;
    background-size: cover !important;
  }
  .hero__air-source {
    right: 2%;
    top: 230px;
    width: 200px;
    height: 200px;
  }
  .hero__air-ribbon--1 { top: 300px; width: 720px; }
  .hero__air-ribbon--2 { top: 352px; width: 780px; }
  .hero__air-ribbon--3 { top: 405px; width: 670px; }
  .hero__air-ribbon--4 { top: 456px; width: 560px; }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 54px !important;
    background:
      linear-gradient(180deg, rgba(2, 15, 39, 0.96) 0%, rgba(3, 24, 60, 0.94) 48%, rgba(5, 36, 83, 0.74) 100%),
      url('../img/hero-premium-clean.png') no-repeat 72% 36% / cover !important;
  }
  .hero__content {
    padding-top: 42px !important;
    max-width: 100%;
  }
  .hero__content h1 {
    font-size: clamp(2.9rem, 12vw, 4.6rem) !important;
    max-width: 6.8ch !important;
  }
  .hero__lead {
    max-width: 100% !important;
  }
  .hero__visual {
    min-height: 280px !important;
  }
  .hero__air-source,
  .hero__air-ribbon,
  .hero__air-glow {
    opacity: .55;
  }
  .hero__air-source { top: 270px; right: -8%; }
  .hero__air-ribbon--1 { top: 330px; width: 600px; }
  .hero__air-ribbon--2 { top: 380px; width: 650px; }
  .hero__air-ribbon--3 { top: 430px; width: 520px; }
  .hero__air-ribbon--4 { top: 470px; width: 440px; }
  .clients-badge {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 16px;
    width: fit-content;
  }
}

.hero__air-ribbon {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  opacity: .95 !important;
  filter: blur(10px) !important;
}
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.hero__air-ribbon::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0) 0 28px,
      rgba(222,245,255,.28) 28px 44px,
      rgba(255,255,255,.72) 44px 56px,
      rgba(157,219,255,.30) 56px 74px,
      rgba(255,255,255,0) 74px 122px
    );
  mix-blend-mode: screen;
  opacity: .9;
  animation: heroAirLinesMove 5.8s linear infinite;
}
.hero__air-ribbon::after {
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.14) 18%,
    rgba(255,255,255,.34) 46%,
    rgba(255,255,255,.10) 72%,
    rgba(255,255,255,0) 100%);
  filter: blur(4px);
  opacity: .9;
  animation: heroAirSheen 7.2s ease-in-out infinite;
}
.hero__air-ribbon--1::before { animation-duration: 5.6s; }
.hero__air-ribbon--2::before { animation-duration: 6.4s; }
.hero__air-ribbon--3::before { animation-duration: 7.1s; }
.hero__air-ribbon--4::before { animation-duration: 8s; }
.hero__air-ribbon--1::after { animation-delay: -.8s; }
.hero__air-ribbon--2::after { animation-delay: -1.6s; }
.hero__air-ribbon--3::after { animation-delay: -2.4s; }
.hero__air-ribbon--4::after { animation-delay: -3.2s; }

@keyframes heroAirLinesMove {
  0% {
    transform: translateX(0);
    background-position: 0 0;
  }
  100% {
    transform: translateX(-42px);
    background-position: -220px 0;
  }
}

@keyframes heroAirSheen {
  0%, 100% {
    transform: translateX(0) scaleX(1);
    opacity: .55;
  }
  50% {
    transform: translateX(-34px) scaleX(1.06);
    opacity: 1;
  }
}

.hero__air-bg {
  isolation: isolate;
}
.hero__air-bg::before,
.hero__air-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__air-bg::before {
  z-index: 0;
  right: 10%;
  top: 270px;
  width: 980px;
  height: 360px;
  border-radius: 999px;
  transform: rotate(-8deg);
  background:
    linear-gradient(90deg,
      rgba(3, 18, 42, 0.00) 0%,
      rgba(4, 22, 51, 0.58) 18%,
      rgba(4, 24, 54, 0.86) 40%,
      rgba(5, 27, 58, 0.88) 56%,
      rgba(7, 31, 63, 0.54) 74%,
      rgba(7, 31, 63, 0.00) 100%),
    radial-gradient(circle at 66% 40%, rgba(15, 52, 98, 0.24), rgba(15, 52, 98, 0) 55%);
  filter: blur(26px);
  opacity: .98;
}

.hero__air-bg::after {
  z-index: 0;
  right: 10.8%;
  top: 220px;
  width: 280px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 35, 72, .42) 0%, rgba(10, 35, 72, .18) 42%, rgba(10, 35, 72, 0) 74%);
  filter: blur(18px);
}
.hero__air-bg > span {
  z-index: 1;
}
.hero__air-ribbon {
  overflow: hidden;
  filter: blur(8px);
}
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero__air-ribbon::before {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(154, 221, 255, .05) 16%,
      rgba(219, 246, 255, .18) 45%,
      rgba(255,255,255,.28) 58%,
      rgba(182, 232, 255, .08) 76%,
      rgba(255,255,255,0) 100%);
}

.hero__air-ribbon::after {
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 20px,
      rgba(205, 241, 255, .22) 20px 36px,
      rgba(255,255,255,0) 36px 62px,
      rgba(255,255,255,.10) 62px 74px,
      rgba(255,255,255,0) 74px 102px);
  background-size: 420px 100%;
  animation: airStripeFlow 4.2s linear infinite;
  mix-blend-mode: screen;
  opacity: .92;
}
.hero__air-ribbon--2::after { animation-duration: 4.8s; opacity: .78; }
.hero__air-ribbon--3::after { animation-duration: 5.3s; opacity: .68; }
.hero__air-ribbon--4::after { animation-duration: 6.1s; opacity: .54; }
.hero__air-ribbon--1 {
  filter: blur(6px);
}
.hero__air-ribbon--1::after {
  background-size: 360px 100%;
}

@keyframes airStripeFlow {
  from { background-position: 0 0; }
  to { background-position: -420px 0; }
}

@media (max-width: 1280px) {
  .hero__air-bg::before {
    right: 5%;
    width: 880px;
  }
}

@media (max-width: 1100px) {
  .hero__air-bg::before {
    right: 0;
    top: 260px;
    width: 760px;
    height: 320px;
  }
  .hero__air-bg::after {
    right: 3%;
    top: 220px;
  }
}

@media (max-width: 820px) {
  .hero__air-bg::before {
    top: 290px;
    right: -80px;
    width: 620px;
    height: 280px;
    opacity: .92;
  }
  .hero__air-bg::after {
    top: 250px;
    right: -10px;
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 720px) {
  .hero__air-bg::before {
    top: 330px;
    right: -180px;
    width: 560px;
    height: 240px;
    opacity: .8;
  }
  .hero__air-bg::after {
    top: 305px;
    right: -60px;
    width: 180px;
    height: 180px;
    opacity: .65;
  }
}

.hero__air-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}
.hero__air-bg::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 265px;
  width: 980px;
  height: 380px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 86% 16%, rgba(196, 231, 255, .10) 0%, rgba(196, 231, 255, .04) 18%, rgba(196, 231, 255, 0) 40%),
    linear-gradient(90deg,
      rgba(3, 24, 60, 0) 0%,
      rgba(4, 28, 66, .18) 16%,
      rgba(5, 37, 80, .58) 34%,
      rgba(6, 42, 93, .72) 50%,
      rgba(6, 43, 96, .42) 66%,
      rgba(7, 43, 96, .10) 82%,
      rgba(7, 43, 96, 0) 100%);
  filter: blur(22px);
  transform: rotate(-6deg);
  opacity: .96;
}
.hero__air-source {
  position: absolute !important;
  right: 13.3% !important;
  top: 244px !important;
  width: 180px !important;
  height: 145px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(210, 240, 255, .42) 0%, rgba(166, 219, 255, .18) 36%, rgba(166, 219, 255, 0) 72%) !important;
  filter: blur(20px) !important;
  animation: airSourceGlow 3.8s ease-in-out infinite !important;
}
.hero__air-ribbon,
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  border-radius: 999px;
}
.hero__air-ribbon {
  position: absolute !important;
  right: 9% !important;
  overflow: hidden;
  transform-origin: right center;
  mix-blend-mode: screen;
  filter: blur(10px) saturate(110%);
  opacity: .96;
}
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__air-ribbon::before {
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(139, 208, 255, .04) 10%,
    rgba(192, 235, 255, .18) 28%,
    rgba(255,255,255,.34) 47%,
    rgba(196, 236, 255, .16) 64%,
    rgba(255,255,255,0) 100%);
}
.hero__air-ribbon::after {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.06) 12%,
      rgba(255,255,255,.35) 28%,
      rgba(255,255,255,.58) 42%,
      rgba(255,255,255,.20) 56%,
      rgba(255,255,255,0) 74%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 86px,
      rgba(255,255,255,.14) 96px,
      rgba(255,255,255,0) 156px,
      rgba(190, 232, 255, .10) 180px,
      rgba(255,255,255,0) 240px);
  background-size: 360px 100%, 280px 100%;
  background-repeat: repeat-x;
  mix-blend-mode: screen;
  animation: airFlowTexture 3.8s linear infinite;
}
.hero__air-ribbon--1 {
  top: 286px !important;
  width: 980px !important;
  height: 114px !important;
  transform: rotate(-7deg) !important;
  animation: airRibbonDrift1 6.2s ease-in-out infinite !important;
}
.hero__air-ribbon--2 {
  top: 344px !important;
  width: 1080px !important;
  height: 104px !important;
  transform: rotate(-4deg) !important;
  opacity: .84;
  animation: airRibbonDrift2 7.6s ease-in-out infinite !important;
}
.hero__air-ribbon--3 {
  top: 402px !important;
  width: 930px !important;
  height: 82px !important;
  transform: rotate(-1deg) !important;
  opacity: .72;
  animation: airRibbonDrift3 5.8s ease-in-out infinite !important;
}
.hero__air-ribbon--4 {
  top: 454px !important;
  width: 810px !important;
  height: 70px !important;
  transform: rotate(2deg) !important;
  opacity: .58;
  animation: airRibbonDrift4 5.2s ease-in-out infinite !important;
}
.hero__air-glow {
  position: absolute !important;
  border-radius: 50% !important;
  filter: blur(36px) !important;
  mix-blend-mode: screen;
}
.hero__air-glow--1 {
  top: 330px !important;
  right: 24% !important;
  width: 290px !important;
  height: 160px !important;
  background: radial-gradient(circle, rgba(167, 226, 255, .20) 0%, rgba(167, 226, 255, 0) 72%) !important;
  animation: airGlowMove1 8s ease-in-out infinite !important;
}
.hero__air-glow--2 {
  top: 430px !important;
  right: 33% !important;
  width: 360px !important;
  height: 180px !important;
  background: radial-gradient(circle, rgba(167, 226, 255, .12) 0%, rgba(167, 226, 255, 0) 74%) !important;
  animation: airGlowMove2 10s ease-in-out infinite !important;
}

@keyframes airSourceGlow {
  0%, 100% { opacity: .74; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes airFlowTexture {
  from { background-position: 0 0, 0 0; }
  to { background-position: -360px 0, -280px 0; }
}
@keyframes airRibbonDrift1 {
  0%, 100% { transform: rotate(-7deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-7.6deg) translate3d(-18px, 6px, 0) scaleX(1.04); }
}
@keyframes airRibbonDrift2 {
  0%, 100% { transform: rotate(-4deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-4.8deg) translate3d(-24px, 8px, 0) scaleX(1.05); }
}
@keyframes airRibbonDrift3 {
  0%, 100% { transform: rotate(-1deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-1.8deg) translate3d(-16px, 4px, 0) scaleX(1.03); }
}
@keyframes airRibbonDrift4 {
  0%, 100% { transform: rotate(2deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(1deg) translate3d(-12px, 3px, 0) scaleX(1.02); }
}
@keyframes airGlowMove1 {
  0%, 100% { opacity: .68; transform: translate3d(0,0,0); }
  50% { opacity: .92; transform: translate3d(-20px, 10px, 0); }
}
@keyframes airGlowMove2 {
  0%, 100% { opacity: .46; transform: translate3d(0,0,0); }
  50% { opacity: .72; transform: translate3d(-28px, 10px, 0); }
}

@media (max-width: 1280px) {
  .hero__air-bg::before { right: 4%; width: 900px; }
  .hero__air-source { right: 10.6% !important; }
  .hero__air-ribbon { right: 5% !important; }
}

@media (max-width: 1100px) {
  .hero__air-bg::before {
    top: 250px;
    right: -2%;
    width: 760px;
    height: 320px;
  }
  .hero__air-source { top: 236px !important; right: 4.8% !important; width: 150px !important; height: 120px !important; }
  .hero__air-ribbon--1 { top: 278px !important; width: 730px !important; }
  .hero__air-ribbon--2 { top: 326px !important; width: 820px !important; }
  .hero__air-ribbon--3 { top: 374px !important; width: 690px !important; }
  .hero__air-ribbon--4 { top: 420px !important; width: 560px !important; }
  .hero__air-glow--1 { right: 19% !important; width: 230px !important; }
  .hero__air-glow--2 { right: 27% !important; width: 280px !important; }
}

@media (max-width: 720px) {
  .hero__air-bg::before { opacity: .72; top: 270px; right: -12%; width: 640px; height: 280px; }
  .hero__air-source { opacity: .62; top: 270px !important; right: -6% !important; }
  .hero__air-ribbon,
  .hero__air-glow { opacity: .56; }
  .hero__air-ribbon--1 { top: 330px !important; width: 540px !important; }
  .hero__air-ribbon--2 { top: 375px !important; width: 600px !important; }
  .hero__air-ribbon--3 { top: 416px !important; width: 500px !important; }
  .hero__air-ribbon--4 { top: 452px !important; width: 420px !important; }
}

.hero__air-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}
.hero__air-bg::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 250px;
  width: 980px;
  height: 360px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(136, 210, 255, .02) 16%,
    rgba(162, 225, 255, .06) 34%,
    rgba(182, 234, 255, .08) 50%,
    rgba(162, 225, 255, .03) 68%,
    rgba(255,255,255,0) 100%);
  filter: blur(34px);
  transform: rotate(-7deg);
  opacity: .9;
}
.hero__air-source {
  position: absolute !important;
  right: 13.4% !important;
  top: 246px !important;
  width: 160px !important;
  height: 120px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(214, 242, 255, .38) 0%, rgba(176, 227, 255, .16) 42%, rgba(176, 227, 255, 0) 76%) !important;
  filter: blur(18px) !important;
  animation: luxuryAirSource 4.2s ease-in-out infinite !important;
}
.hero__air-ribbon {
  position: absolute !important;
  right: 9% !important;
  overflow: hidden;
  border-radius: 999px;
  transform-origin: right center;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: .92;
}
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.hero__air-ribbon::before {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(255,255,255,.26) 0%, rgba(255,255,255,.18) 14%, rgba(170, 225, 255, .08) 32%, rgba(255,255,255,0) 64%),
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(149, 216, 255, .03) 12%,
      rgba(184, 236, 255, .14) 28%,
      rgba(255,255,255,.24) 46%,
      rgba(181, 234, 255, .14) 62%,
      rgba(149, 216, 255, .03) 76%,
      rgba(255,255,255,0) 100%);
}
.hero__air-ribbon::after {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.05) 14%,
      rgba(255,255,255,.28) 26%,
      rgba(255,255,255,.52) 38%,
      rgba(188, 235, 255, .18) 50%,
      rgba(255,255,255,0) 66%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 110px,
      rgba(255,255,255,.12) 120px 124px,
      rgba(255,255,255,0) 160px 215px,
      rgba(194, 237, 255, .10) 225px 229px,
      rgba(255,255,255,0) 260px 360px);
  background-size: 420px 100%, 420px 100%;
  background-repeat: repeat-x;
  opacity: .95;
  animation: luxuryAirTexture 4.6s linear infinite;
}
.hero__air-ribbon--1 {
  top: 286px !important;
  width: 980px !important;
  height: 104px !important;
  transform: rotate(-7deg) !important;
  animation: luxuryAirRibbon1 5.8s ease-in-out infinite !important;
}
.hero__air-ribbon--2 {
  top: 340px !important;
  width: 1080px !important;
  height: 98px !important;
  transform: rotate(-4deg) !important;
  opacity: .82;
  animation: luxuryAirRibbon2 6.8s ease-in-out infinite !important;
}
.hero__air-ribbon--3 {
  top: 394px !important;
  width: 940px !important;
  height: 76px !important;
  transform: rotate(-1deg) !important;
  opacity: .68;
  animation: luxuryAirRibbon3 5.4s ease-in-out infinite !important;
}
.hero__air-ribbon--4 {
  top: 444px !important;
  width: 800px !important;
  height: 66px !important;
  transform: rotate(2deg) !important;
  opacity: .52;
  animation: luxuryAirRibbon4 5s ease-in-out infinite !important;
}
.hero__air-glow {
  position: absolute !important;
  border-radius: 50% !important;
  mix-blend-mode: screen;
  filter: blur(34px) !important;
}
.hero__air-glow--1 {
  right: 24% !important;
  top: 332px !important;
  width: 300px !important;
  height: 130px !important;
  background: radial-gradient(circle, rgba(182, 233, 255, .16) 0%, rgba(182, 233, 255, 0) 72%) !important;
  animation: luxuryAirGlow1 8.4s ease-in-out infinite !important;
}
.hero__air-glow--2 {
  right: 33% !important;
  top: 426px !important;
  width: 350px !important;
  height: 150px !important;
  background: radial-gradient(circle, rgba(182, 233, 255, .11) 0%, rgba(182, 233, 255, 0) 74%) !important;
  animation: luxuryAirGlow2 10s ease-in-out infinite !important;
}

@keyframes luxuryAirSource {
  0%,100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes luxuryAirTexture {
  from { background-position: 0 0, 0 0; }
  to { background-position: -420px 0, -420px 0; }
}
@keyframes luxuryAirRibbon1 {
  0%,100% { transform: rotate(-7deg) translateX(0) scaleX(1); }
  50% { transform: rotate(-7deg) translateX(-12px) scaleX(1.018); }
}
@keyframes luxuryAirRibbon2 {
  0%,100% { transform: rotate(-4deg) translateX(0) scaleX(1); }
  50% { transform: rotate(-4deg) translateX(-16px) scaleX(1.022); }
}
@keyframes luxuryAirRibbon3 {
  0%,100% { transform: rotate(-1deg) translateX(0) scaleX(1); }
  50% { transform: rotate(-1deg) translateX(-10px) scaleX(1.016); }
}
@keyframes luxuryAirRibbon4 {
  0%,100% { transform: rotate(2deg) translateX(0) scaleX(1); }
  50% { transform: rotate(2deg) translateX(-8px) scaleX(1.012); }
}
@keyframes luxuryAirGlow1 {
  0%,100% { opacity: .58; transform: translateX(0); }
  50% { opacity: .88; transform: translateX(-18px); }
}
@keyframes luxuryAirGlow2 {
  0%,100% { opacity: .42; transform: translateX(0); }
  50% { opacity: .68; transform: translateX(-24px); }
}

@media (max-width: 1280px) {
  .hero__air-bg::before { width: 900px; right: 4%; }
  .hero__air-source { right: 10.6% !important; }
  .hero__air-ribbon { right: 5% !important; }
}
@media (max-width: 1100px) {
  .hero__air-bg::before { top: 248px; right: -2%; width: 760px; height: 310px; }
  .hero__air-source { right: 4.8% !important; top: 238px !important; width: 136px !important; height: 104px !important; }
  .hero__air-ribbon--1 { top: 280px !important; width: 720px !important; }
  .hero__air-ribbon--2 { top: 330px !important; width: 820px !important; }
  .hero__air-ribbon--3 { top: 378px !important; width: 690px !important; }
  .hero__air-ribbon--4 { top: 422px !important; width: 560px !important; }
  .hero__air-glow--1 { right: 18% !important; width: 220px !important; }
  .hero__air-glow--2 { right: 26% !important; width: 260px !important; }
}
@media (max-width: 720px) {
  .hero__air-bg::before { top: 274px; right: -12%; width: 620px; height: 260px; opacity: .78; }
  .hero__air-source { top: 272px !important; right: -6% !important; opacity: .64; }
  .hero__air-ribbon,
  .hero__air-glow { opacity: .56; }
  .hero__air-ribbon--1 { top: 328px !important; width: 540px !important; }
  .hero__air-ribbon--2 { top: 370px !important; width: 600px !important; }
  .hero__air-ribbon--3 { top: 410px !important; width: 500px !important; }
  .hero__air-ribbon--4 { top: 446px !important; width: 420px !important; }
}

.hero__air-bg::before {
  display: none !important;
}

.hero__air-source {
  right: 13.6% !important;
  top: 250px !important;
  width: 150px !important;
  height: 110px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 55% 50%, rgba(242,250,255,.55) 0%, rgba(196,232,255,.24) 34%, rgba(196,232,255,0) 78%) !important;
  filter: blur(16px) !important;
  animation: premiumAirPulse 4.8s ease-in-out infinite !important;
}

.hero__air-ribbon {
  right: 13.8% !important;
  overflow: hidden !important;
  transform-origin: right center !important;
  border-radius: 999px !important;
  clip-path: polygon(100% 43%, 99% 38%, 96% 33%, 91% 27%, 81% 18%, 65% 12%, 42% 9%, 14% 12%, 0 22%, 0 78%, 14% 88%, 42% 91%, 65% 88%, 81% 82%, 91% 73%, 96% 67%, 99% 62%, 100% 57%) !important;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(166,222,255,.04) 12%,
      rgba(190,233,255,.16) 34%,
      rgba(228,246,255,.26) 54%,
      rgba(178,227,255,.12) 72%,
      rgba(255,255,255,0) 100%) !important;
  filter: blur(5px) !important;
  mix-blend-mode: screen !important;
}

.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__air-ribbon::before {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.03) 14%,
      rgba(255,255,255,.16) 38%,
      rgba(255,255,255,.24) 56%,
      rgba(255,255,255,.08) 76%,
      rgba(255,255,255,0) 100%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 82px,
      rgba(255,255,255,.08) 100px,
      rgba(255,255,255,0) 136px,
      rgba(163,223,255,.11) 176px,
      rgba(255,255,255,0) 230px,
      rgba(255,255,255,.06) 264px,
      rgba(255,255,255,0) 330px);
  background-size: 100% 100%, 360px 100%;
  background-repeat: no-repeat, repeat-x;
  animation: premiumAirTravel 3.6s linear infinite;
  opacity: .95;
}

.hero__air-ribbon::after {
  inset: 10% 0 10% 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(210,241,255,.03) 18%,
      rgba(255,255,255,.14) 42%,
      rgba(255,255,255,.24) 56%,
      rgba(210,241,255,.03) 82%,
      rgba(255,255,255,0) 100%);
  filter: blur(10px);
  opacity: .72;
  animation: premiumAirGlow 5.2s ease-in-out infinite;
}

.hero__air-ribbon--1 {
  top: 290px !important;
  width: 940px !important;
  height: 104px !important;
  transform: rotate(-10deg) !important;
  animation: premiumRibbon1 8.6s ease-in-out infinite !important;
}
.hero__air-ribbon--2 {
  top: 344px !important;
  width: 1020px !important;
  height: 92px !important;
  transform: rotate(-7deg) !important;
  opacity: .78 !important;
  animation: premiumRibbon2 9.4s ease-in-out infinite !important;
}
.hero__air-ribbon--3 {
  top: 398px !important;
  width: 900px !important;
  height: 76px !important;
  transform: rotate(-4deg) !important;
  opacity: .62 !important;
  animation: premiumRibbon3 7.8s ease-in-out infinite !important;
}
.hero__air-ribbon--4 {
  top: 446px !important;
  width: 770px !important;
  height: 62px !important;
  transform: rotate(-1deg) !important;
  opacity: .46 !important;
  animation: premiumRibbon4 7.1s ease-in-out infinite !important;
}

.hero__air-glow {
  filter: blur(32px) !important;
  mix-blend-mode: screen !important;
}
.hero__air-glow--1 {
  top: 326px !important;
  right: 26% !important;
  width: 240px !important;
  height: 120px !important;
  background: radial-gradient(circle, rgba(170,227,255,.14) 0%, rgba(170,227,255,0) 72%) !important;
  animation: premiumGlow1 7.8s ease-in-out infinite !important;
}
.hero__air-glow--2 {
  top: 418px !important;
  right: 34% !important;
  width: 300px !important;
  height: 150px !important;
  background: radial-gradient(circle, rgba(170,227,255,.10) 0%, rgba(170,227,255,0) 74%) !important;
  animation: premiumGlow2 9.6s ease-in-out infinite !important;
}

@keyframes premiumAirPulse {
  0%,100% { opacity: .68; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes premiumAirTravel {
  from { background-position: 0 0, 360px 0; }
  to   { background-position: 0 0, 0 0; }
}
@keyframes premiumAirGlow {
  0%,100% { opacity: .52; transform: scaleX(1); }
  50% { opacity: .82; transform: scaleX(1.03); }
}
@keyframes premiumRibbon1 {
  0%,100% { transform: rotate(-10deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-10.7deg) translate3d(-18px,8px,0) scaleX(1.03); }
}
@keyframes premiumRibbon2 {
  0%,100% { transform: rotate(-7deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-7.6deg) translate3d(-22px,7px,0) scaleX(1.035); }
}
@keyframes premiumRibbon3 {
  0%,100% { transform: rotate(-4deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-4.6deg) translate3d(-16px,5px,0) scaleX(1.03); }
}
@keyframes premiumRibbon4 {
  0%,100% { transform: rotate(-1deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-1.5deg) translate3d(-12px,4px,0) scaleX(1.02); }
}
@keyframes premiumGlow1 {
  0%,100% { opacity: .55; transform: translate3d(0,0,0); }
  50% { opacity: .9; transform: translate3d(-14px,6px,0); }
}
@keyframes premiumGlow2 {
  0%,100% { opacity: .44; transform: translate3d(0,0,0); }
  50% { opacity: .7; transform: translate3d(-18px,8px,0); }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 10.2% !important; }
  .hero__air-ribbon { right: 10.4% !important; }
}

@media (max-width: 1100px) {
  .hero__air-source {
    right: 3.8% !important;
    top: 238px !important;
    width: 126px !important;
    height: 98px !important;
  }
  .hero__air-ribbon { right: 4.2% !important; }
  .hero__air-ribbon--1 { top: 278px !important; width: 720px !important; height: 92px !important; }
  .hero__air-ribbon--2 { top: 324px !important; width: 790px !important; height: 82px !important; }
  .hero__air-ribbon--3 { top: 368px !important; width: 680px !important; height: 68px !important; }
  .hero__air-ribbon--4 { top: 410px !important; width: 560px !important; height: 56px !important; }
}

@media (max-width: 720px) {
  .hero__air-source {
    opacity: .54 !important;
    right: -6% !important;
    top: 266px !important;
  }
  .hero__air-ribbon { right: -4% !important; opacity: .48 !important; }
  .hero__air-ribbon--1 { top: 320px !important; width: 520px !important; }
  .hero__air-ribbon--2 { top: 360px !important; width: 560px !important; }
  .hero__air-ribbon--3 { top: 400px !important; width: 470px !important; }
  .hero__air-ribbon--4 { top: 438px !important; width: 390px !important; }
  .hero__air-glow { opacity: .5 !important; }
}

.hero {
  background:
    linear-gradient(90deg, rgba(2, 15, 39, 0.98) 0%, rgba(3, 24, 60, 0.95) 32%, rgba(5, 36, 83, 0.70) 58%, rgba(7, 43, 97, 0.26) 80%, rgba(9, 49, 108, 0.12) 100%),
    url('../img/hero-premium-clean.png') no-repeat right center / cover !important;
}

.hero__air-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}
.hero__air-bg::before,
.hero__air-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero__air-bg::before {
  right: 7%;
  top: 255px;
  width: 1080px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(ellipse at 78% 28%, rgba(196, 232, 255, .08) 0%, rgba(196, 232, 255, .04) 20%, rgba(196, 232, 255, 0) 54%);
  filter: blur(34px);
  opacity: .72;
}
.hero__air-bg::after {
  right: 14%;
  top: 240px;
  width: 260px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 239, 255, .28) 0%, rgba(165, 218, 255, .14) 36%, rgba(165, 218, 255, 0) 70%);
  filter: blur(24px);
  animation: luxuryAirSource 3.6s ease-in-out infinite;
}

.hero__air-source,
.hero__air-glow {
  display: none !important;
}

.hero__air-ribbon {
  position: absolute !important;
  right: 8.8% !important;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  transform-origin: right center;
  mix-blend-mode: screen;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
}
.hero__air-ribbon::before,
.hero__air-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.hero__air-ribbon::before {
  background:
    radial-gradient(95% 120% at 100% 50%, rgba(255,255,255,.58) 0%, rgba(222, 244, 255, .28) 20%, rgba(181, 225, 255, .10) 44%, rgba(181, 225, 255, 0) 74%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(170, 223, 255, .03) 20%, rgba(240, 250, 255, .18) 48%, rgba(170, 223, 255, .06) 72%, rgba(255,255,255,0) 100%);
  filter: blur(10px);
}
.hero__air-ribbon::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 28%, rgba(255,255,255,.42) 46%, rgba(255,255,255,.12) 62%, rgba(255,255,255,0) 82%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 110px,
      rgba(235, 248, 255, .08) 144px,
      rgba(255,255,255,0) 220px,
      rgba(180, 226, 255, .06) 270px,
      rgba(255,255,255,0) 330px);
  background-size: 380px 100%, 420px 100%;
  background-repeat: repeat-x;
  opacity: .74;
  filter: blur(5px);
  animation: luxuryAirTexture 4.2s linear infinite;
}

.hero__air-ribbon--1 {
  top: 285px !important;
  width: 1000px !important;
  height: 110px !important;
  transform: rotate(-9deg) !important;
  opacity: .95;
  animation: luxuryRibbon1 6.8s ease-in-out infinite !important;
}
.hero__air-ribbon--2 {
  top: 346px !important;
  width: 1090px !important;
  height: 102px !important;
  transform: rotate(-5deg) !important;
  opacity: .84;
  animation: luxuryRibbon2 7.5s ease-in-out infinite !important;
}
.hero__air-ribbon--3 {
  top: 410px !important;
  width: 970px !important;
  height: 84px !important;
  transform: rotate(0deg) !important;
  opacity: .72;
  animation: luxuryRibbon3 5.9s ease-in-out infinite !important;
}
.hero__air-ribbon--4 {
  top: 470px !important;
  width: 830px !important;
  height: 68px !important;
  transform: rotate(5deg) !important;
  opacity: .56;
  animation: luxuryRibbon4 5.3s ease-in-out infinite !important;
}

@keyframes luxuryAirSource {
  0%, 100% { opacity: .72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes luxuryAirTexture {
  from { background-position: 0 0, 0 0; }
  to { background-position: -380px 0, -420px 0; }
}
@keyframes luxuryRibbon1 {
  0%, 100% { transform: rotate(-9deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-10deg) translate3d(-18px, 5px, 0) scaleX(1.035); }
}
@keyframes luxuryRibbon2 {
  0%, 100% { transform: rotate(-5deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-5.8deg) translate3d(-22px, 7px, 0) scaleX(1.045); }
}
@keyframes luxuryRibbon3 {
  0%, 100% { transform: rotate(0deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(-.8deg) translate3d(-15px, 4px, 0) scaleX(1.028); }
}
@keyframes luxuryRibbon4 {
  0%, 100% { transform: rotate(5deg) translate3d(0,0,0) scaleX(1); }
  50% { transform: rotate(4deg) translate3d(-11px, 3px, 0) scaleX(1.02); }
}

@media (max-width: 1280px) {
  .hero__air-bg::before { right: 4%; width: 940px; }
  .hero__air-bg::after { right: 10.5%; }
  .hero__air-ribbon { right: 5.2% !important; }
}

@media (max-width: 1100px) {
  .hero__air-bg::before {
    top: 248px;
    right: -2%;
    width: 760px;
    height: 320px;
  }
  .hero__air-bg::after {
    top: 236px;
    right: 3%;
    width: 180px;
    height: 130px;
  }
  .hero__air-ribbon--1 { top: 276px !important; width: 740px !important; }
  .hero__air-ribbon--2 { top: 324px !important; width: 820px !important; }
  .hero__air-ribbon--3 { top: 372px !important; width: 720px !important; }
  .hero__air-ribbon--4 { top: 418px !important; width: 590px !important; }
}

@media (max-width: 720px) {
  .hero__air-bg::before {
    top: 270px;
    right: -12%;
    width: 620px;
    height: 260px;
    opacity: .58;
  }
  .hero__air-bg::after {
    top: 268px;
    right: -6%;
    width: 130px;
    height: 96px;
    opacity: .68;
  }
  .hero__air-ribbon { opacity: .56; }
  .hero__air-ribbon--1 { top: 330px !important; width: 560px !important; }
  .hero__air-ribbon--2 { top: 372px !important; width: 620px !important; }
  .hero__air-ribbon--3 { top: 410px !important; width: 510px !important; }
  .hero__air-ribbon--4 { top: 448px !important; width: 420px !important; }
}

.hero {
  background:
    linear-gradient(90deg, rgba(2, 15, 39, 0.99) 0%, rgba(3, 23, 57, 0.96) 31%, rgba(4, 31, 74, 0.74) 54%, rgba(5, 35, 82, 0.32) 76%, rgba(5, 35, 82, 0.08) 100%),
    url('../img/hero-premium-clean.png') no-repeat right center / cover !important;
}
.hero__air-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  isolation: isolate !important;
}
.hero__air-bg::before,
.hero__air-bg::after {
  content: none !important;
}
.hero__air-source {
  position: absolute !important;
  right: 13.4% !important;
  top: 242px !important;
  width: 220px !important;
  height: 130px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(255,255,255,.74) 0%, rgba(195,235,255,.38) 28%, rgba(98,184,255,.12) 58%, rgba(98,184,255,0) 76%) !important;
  filter: blur(20px) !important;
  mix-blend-mode: screen !important;
  opacity: .82 !important;
  transform: rotate(-14deg);
  animation: v4SourceBreath 3.6s ease-in-out infinite !important;
}
.hero__air-haze {
  position: absolute;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
  border-radius: 999px;
  filter: blur(36px);
}
.hero__air-haze--1 {
  right: 19%;
  top: 330px;
  width: 520px;
  height: 210px;
  background: radial-gradient(ellipse, rgba(126,207,255,.18) 0%, rgba(126,207,255,.06) 44%, rgba(126,207,255,0) 74%);
  transform: rotate(-10deg);
  animation: v4Haze1 7.8s ease-in-out infinite;
}
.hero__air-haze--2 {
  right: 36%;
  top: 455px;
  width: 620px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(90,177,255,.12) 0%, rgba(90,177,255,.05) 42%, rgba(90,177,255,0) 76%);
  transform: rotate(-6deg);
  animation: v4Haze2 10.6s ease-in-out infinite;
}
.hero-air-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-air-svg path {
  fill: none;
  stroke: url(#airStroke);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.air-soft path {
  stroke-width: 50;
  opacity: .13;
  stroke-dasharray: 520 1500;
  animation: v4SoftTravel 7.4s linear infinite;
}
.air-soft path:nth-child(2) {
  stroke-width: 64;
  opacity: .095;
  animation-duration: 8.6s;
  animation-delay: -2.8s;
}
.air-line {
  stroke-width: 18;
  opacity: .58;
  stroke-dasharray: 290 1320;
  stroke-dashoffset: -1320;
  animation: v4AirTravel 4.6s linear infinite, v4AirFlicker 4.6s ease-in-out infinite;
}
.air-line--1 { stroke-width: 20; animation-delay: 0s, 0s; }
.air-line--2 { stroke-width: 16; opacity: .50; animation-delay: -.65s, -.65s; animation-duration: 5.15s, 5.15s; }
.air-line--3 { stroke-width: 14; opacity: .44; animation-delay: -1.35s, -1.35s; animation-duration: 5.6s, 5.6s; }
.air-line--4 { stroke-width: 12; opacity: .34; animation-delay: -2.15s, -2.15s; animation-duration: 6.0s, 6.0s; }
.air-line--5 { stroke-width: 10; opacity: .28; animation-delay: -3.0s, -3.0s; animation-duration: 4.9s, 4.9s; }
.air-line--6 { stroke-width: 9; opacity: .24; animation-delay: -3.55s, -3.55s; animation-duration: 6.4s, 6.4s; }

@keyframes v4AirTravel {
  0% { stroke-dashoffset: -1320; }
  100% { stroke-dashoffset: 290; }
}
@keyframes v4SoftTravel {
  0% { stroke-dashoffset: -1500; opacity: .04; }
  18% { opacity: .13; }
  72% { opacity: .13; }
  100% { stroke-dashoffset: 520; opacity: .03; }
}
@keyframes v4AirFlicker {
  0%, 100% { filter: saturate(105%); }
  45% { filter: saturate(128%); }
}
@keyframes v4SourceBreath {
  0%, 100% { opacity: .70; transform: rotate(-14deg) scale(.98); }
  50% { opacity: 1; transform: rotate(-14deg) scale(1.08); }
}
@keyframes v4Haze1 {
  0%, 100% { opacity: .56; transform: rotate(-10deg) translate3d(0,0,0) scale(1); }
  50% { opacity: .82; transform: rotate(-10deg) translate3d(-30px, 12px, 0) scale(1.06); }
}
@keyframes v4Haze2 {
  0%, 100% { opacity: .42; transform: rotate(-6deg) translate3d(0,0,0) scale(1); }
  50% { opacity: .68; transform: rotate(-7deg) translate3d(-44px, 10px, 0) scale(1.05); }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 10.8% !important; top: 246px !important; }
  .hero__air-haze--1 { right: 15%; }
  .hero__air-haze--2 { right: 28%; }
}
@media (max-width: 1100px) {
  .hero {
    background-position: 72% center !important;
  }
  .hero__air-source { right: 5% !important; top: 238px !important; width: 180px !important; }
  .air-soft path { stroke-width: 42; }
  .air-line { stroke-width: 14; }
}
@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(2, 15, 39, 0.96) 0%, rgba(3, 24, 60, 0.92) 52%, rgba(5, 36, 83, 0.78) 100%),
      url('../img/hero-premium-clean.png') no-repeat 72% 36% / cover !important;
  }
  .hero__air-source { top: 270px !important; right: -5% !important; opacity: .58 !important; }
  .hero-air-svg { opacity: .56; }
  .hero__air-haze { opacity: .55; }
}

.hero__air-source {
  right: 12.4% !important;
  top: 254px !important;
  width: 210px !important;
  height: 120px !important;
  transform: rotate(-13deg) !important;
  opacity: .88 !important;
}
.hero__air-haze--1 {
  right: 17% !important;
  top: 336px !important;
  width: 540px !important;
  height: 190px !important;
  transform: rotate(-9deg) !important;
}
.hero__air-haze--2 {
  right: 33% !important;
  top: 468px !important;
  width: 610px !important;
  height: 200px !important;
  transform: rotate(-5deg) !important;
}
.air-soft path {
  animation: v5SoftTravel 7.8s linear infinite !important;
}
.air-soft path:nth-child(2) {
  animation-duration: 9.2s !important;
  animation-delay: -2.6s !important;
}
.air-line {
  animation: v5AirTravel 4.9s linear infinite, v4AirFlicker 4.9s ease-in-out infinite !important;
}
.air-line--2 { animation-duration: 5.4s, 5.4s !important; }
.air-line--3 { animation-duration: 5.9s, 5.9s !important; }
.air-line--4 { animation-duration: 6.2s, 6.2s !important; }
.air-line--5 { animation-duration: 5.1s, 5.1s !important; }
.air-line--6 { animation-duration: 6.7s, 6.7s !important; }

@keyframes v5AirTravel {
  0% { stroke-dashoffset: 290; }
  100% { stroke-dashoffset: -1320; }
}
@keyframes v5SoftTravel {
  0% { stroke-dashoffset: 520; opacity: .03; }
  18% { opacity: .11; }
  72% { opacity: .12; }
  100% { stroke-dashoffset: -1500; opacity: .03; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 9.8% !important; top: 258px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 4.5% !important; top: 246px !important; width: 168px !important; }
  .hero__air-haze--1 { right: 12% !important; }
  .hero__air-haze--2 { right: 24% !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -4% !important; top: 278px !important; width: 152px !important; opacity: .62 !important; }
}

.hero__air-source {
  right: 10.7% !important;
  top: 276px !important;
  width: 360px !important;
  height: 54px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(219,243,255,.38) 8%,
      rgba(255,255,255,.72) 26%,
      rgba(203,239,255,.44) 52%,
      rgba(255,255,255,.62) 78%,
      rgba(255,255,255,0) 100%) !important;
  filter: blur(12px) !important;
  transform: rotate(-2deg) !important;
  transform-origin: center center !important;
  opacity: .88 !important;
}
.hero__air-haze--1 {
  right: 16% !important;
  top: 326px !important;
  width: 610px !important;
  height: 180px !important;
}
.hero__air-haze--2 {
  right: 30% !important;
  top: 450px !important;
  width: 700px !important;
  height: 210px !important;
}
.air-soft path:nth-child(1) { stroke-width: 54 !important; }
.air-soft path:nth-child(2) { stroke-width: 62 !important; }
.air-soft path:nth-child(3) { stroke-width: 48 !important; opacity: .08 !important; animation-duration: 10.2s !important; animation-delay: -1.8s !important; }
.air-line--1 { stroke-width: 17 !important; }
.air-line--2 { stroke-width: 16 !important; }
.air-line--3 { stroke-width: 15 !important; }
.air-line--4 { stroke-width: 13 !important; }
.air-line--5 { stroke-width: 12 !important; }
.air-line--6 { stroke-width: 10 !important; }
.air-line--7 { stroke-width: 9 !important; opacity: .18 !important; animation-delay: -2.9s, -2.9s !important; animation-duration: 6.8s, 6.8s !important; }

@keyframes v6SourceBreath {
  0%,100% { opacity: .72; transform: rotate(-2deg) scaleX(.98); }
  50% { opacity: 1; transform: rotate(-2deg) scaleX(1.04); }
}
.hero__air-source { animation: v6SourceBreath 2.8s ease-in-out infinite !important; }

@media (max-width: 1280px) {
  .hero__air-source { right: 8.6% !important; top: 280px !important; width: 320px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.4% !important; top: 262px !important; width: 250px !important; height: 42px !important; }
  .hero__air-haze--1 { right: 10% !important; width: 480px !important; }
  .hero__air-haze--2 { right: 22% !important; width: 560px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -7% !important; top: 286px !important; width: 200px !important; height: 32px !important; opacity: .58 !important; }
}

.hero__air-source {
  position: absolute !important;
  right: 9.8% !important;
  top: 279px !important;
  width: 408px !important;
  height: 58px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 6% 52%, rgba(255,255,255,.58) 0%, rgba(186,230,255,.26) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 20% 52%, rgba(255,255,255,.54) 0%, rgba(186,230,255,.24) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 34% 52%, rgba(255,255,255,.5) 0%, rgba(186,230,255,.22) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 48% 52%, rgba(255,255,255,.48) 0%, rgba(186,230,255,.20) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 62% 52%, rgba(255,255,255,.48) 0%, rgba(186,230,255,.20) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 76% 52%, rgba(255,255,255,.5) 0%, rgba(186,230,255,.22) 18%, rgba(186,230,255,0) 34%),
    radial-gradient(circle at 90% 52%, rgba(255,255,255,.54) 0%, rgba(186,230,255,.24) 18%, rgba(186,230,255,0) 34%),
    linear-gradient(180deg, rgba(216,244,255,.26) 0%, rgba(152,214,255,.14) 52%, rgba(152,214,255,0) 100%) !important;
  filter: blur(11px) !important;
  opacity: .92 !important;
  transform: none !important;
  mix-blend-mode: screen !important;
  animation: ventBreath 3.4s ease-in-out infinite !important;
}
.hero__air-source::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(238,250,255,.42) 10%, rgba(255,255,255,.68) 48%, rgba(238,250,255,.42) 86%, rgba(255,255,255,0) 100%);
  filter: blur(7px);
  opacity: .82;
}
.hero__air-source::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -3px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(174,224,255,.18) 14%, rgba(255,255,255,.34) 48%, rgba(174,224,255,.18) 82%, rgba(255,255,255,0) 100%);
  filter: blur(8px);
  opacity: .92;
}
.hero__air-haze--1 {
  right: 14% !important;
  top: 334px !important;
  width: 640px !important;
  height: 205px !important;
}
.hero__air-haze--2 {
  right: 30% !important;
  top: 472px !important;
  width: 700px !important;
  height: 220px !important;
}
.air-line--7 { opacity: .18; }

@keyframes ventBreath {
  0%, 100% { opacity: .8; transform: scaleX(.98) !important; }
  50% { opacity: 1; transform: scaleX(1.02) !important; }
}

@media (max-width: 1280px) {
  .hero__air-source {
    right: 7.2% !important;
    width: 360px !important;
  }
}
@media (max-width: 1100px) {
  .hero__air-source {
    right: 2.8% !important;
    top: 268px !important;
    width: 300px !important;
    height: 48px !important;
  }
  .hero__air-haze--1 { right: 10% !important; width: 540px !important; }
  .hero__air-haze--2 { right: 22% !important; width: 560px !important; }
}
@media (max-width: 720px) {
  .hero__air-source {
    right: -7% !important;
    top: 294px !important;
    width: 240px !important;
    height: 40px !important;
    opacity: .68 !important;
  }
}

.hero__air-source {
  right: 10.9% !important;
  top: 278px !important;
  width: 360px !important;
  height: 26px !important;
  border-radius: 999px !important;
  transform: rotate(-1.8deg) !important;
  transform-origin: center center !important;
  background: linear-gradient(90deg,
    rgba(182,226,255,0) 0%,
    rgba(214,242,255,.40) 12%,
    rgba(255,255,255,.92) 28%,
    rgba(255,255,255,.98) 50%,
    rgba(255,255,255,.92) 72%,
    rgba(214,242,255,.40) 88%,
    rgba(182,226,255,0) 100%) !important;
  filter: blur(8px) !important;
  mix-blend-mode: screen !important;
  opacity: .92 !important;
  animation: v6OutletBreath 2.8s ease-in-out infinite !important;
}
.hero__air-source::before,
.hero__air-source::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.hero__air-source::before {
  inset: -7px -6px;
  background: linear-gradient(90deg,
    rgba(174,224,255,0) 0%,
    rgba(169,220,255,.16) 18%,
    rgba(255,255,255,.48) 50%,
    rgba(169,220,255,.16) 82%,
    rgba(174,224,255,0) 100%);
  filter: blur(14px);
  opacity: .92;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 18px,
    rgba(255,255,255,.72) 21px 28px,
    rgba(255,255,255,0) 34px 52px);
  background-size: 260px 100%;
  opacity: .44;
  filter: blur(1px);
  animation: v6OutletTravel 1.6s linear infinite;
}
.hero__air-haze--1 {
  right: 18% !important;
  top: 336px !important;
  width: 560px !important;
  height: 196px !important;
}
.hero__air-haze--2 {
  right: 34% !important;
  top: 470px !important;
  width: 640px !important;
  height: 208px !important;
}
.hero-air-svg {
  top: 4px;
}
.air-soft path {
  stroke-width: 56;
  opacity: .12;
}
.air-soft path:nth-child(2) { stroke-width: 66; opacity: .09; }
.air-soft path:nth-child(3) { stroke-width: 54; opacity: .07; }
.air-line {
  stroke-linecap: round;
  stroke-dasharray: 320 1380;
}
.air-line--1 { stroke-width: 18; }
.air-line--2 { stroke-width: 17; }
.air-line--3 { stroke-width: 15; }
.air-line--4 { stroke-width: 13; }
.air-line--5 { stroke-width: 12; }
.air-line--6 { stroke-width: 10; }
.air-line--7 { stroke-width: 9; }

@keyframes v6OutletBreath {
  0%, 100% { opacity: .82; filter: blur(8px); }
  50% { opacity: 1; filter: blur(10px); }
}
@keyframes v6OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -260px 0; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 8.9% !important; width: 320px !important; top: 282px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.8% !important; width: 270px !important; top: 264px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -6% !important; width: 210px !important; top: 292px !important; opacity: .66 !important; }
}

.hero__air-source {
  right: 6.1% !important;
  top: 250px !important;
  width: 585px !important;
  height: 36px !important;
  border-radius: 999px !important;
  transform: rotate(-2.2deg) !important;
  background:
    linear-gradient(90deg,
      rgba(177,224,255,0) 0%,
      rgba(199,235,255,.28) 7%,
      rgba(245,252,255,.72) 18%,
      rgba(255,255,255,.96) 42%,
      rgba(255,255,255,.96) 62%,
      rgba(245,252,255,.70) 82%,
      rgba(199,235,255,.26) 93%,
      rgba(177,224,255,0) 100%) !important;
  filter: blur(7px) !important;
  mix-blend-mode: screen !important;
  opacity: .9 !important;
  animation: v7OutletBreath 2.6s ease-in-out infinite !important;
}
.hero__air-source::before {
  inset: -12px -10px !important;
  background:
    linear-gradient(90deg,
      rgba(107,194,255,0) 0%,
      rgba(151,218,255,.10) 9%,
      rgba(255,255,255,.36) 45%,
      rgba(255,255,255,.34) 66%,
      rgba(151,218,255,.10) 91%,
      rgba(107,194,255,0) 100%) !important;
  filter: blur(18px) !important;
  opacity: .9 !important;
}
.hero__air-source::after {
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0 22px,
      rgba(255,255,255,.55) 25px 33px,
      rgba(255,255,255,0) 40px 62px) !important;
  background-size: 310px 100% !important;
  opacity: .34 !important;
  filter: blur(2px) !important;
  animation: v7OutletTexture 1.4s linear infinite !important;
}
.hero__air-haze--1 {
  right: 19% !important;
  top: 310px !important;
  width: 680px !important;
  height: 230px !important;
  transform: rotate(-8deg) !important;
  opacity: .78 !important;
}
.hero__air-haze--2 {
  right: 35% !important;
  top: 442px !important;
  width: 720px !important;
  height: 240px !important;
  transform: rotate(-5deg) !important;
  opacity: .62 !important;
}
.hero-air-svg {
  top: 0 !important;
  opacity: .96 !important;
}
.air-soft path {
  stroke-width: 62 !important;
  opacity: .105 !important;
  stroke-dasharray: 760 1600 !important;
  animation: v7SoftSheet 9s linear infinite !important;
}
.air-soft path:nth-child(2) { stroke-width: 72 !important; opacity: .095 !important; animation-delay: -1.3s !important; }
.air-soft path:nth-child(3) { stroke-width: 64 !important; opacity: .08 !important; animation-delay: -2.6s !important; }
.air-soft path:nth-child(4) { stroke-width: 56 !important; opacity: .065 !important; animation-delay: -3.7s !important; }
.air-soft path:nth-child(5) { stroke-width: 48 !important; opacity: .052 !important; animation-delay: -4.9s !important; }

.air-line {
  stroke-dasharray: 42 74 !important;
  stroke-dashoffset: 0 !important;
  animation: v7LineFlow 1.9s linear infinite, v7LineBreath 4.2s ease-in-out infinite !important;
  opacity: .52 !important;
  filter: saturate(112%) !important;
}
.air-line--1 { stroke-width: 14 !important; animation-delay: 0s, 0s !important; }
.air-line--2 { stroke-width: 14 !important; opacity: .50 !important; animation-delay: -.18s, -.3s !important; }
.air-line--3 { stroke-width: 13 !important; opacity: .46 !important; animation-delay: -.36s, -.6s !important; }
.air-line--4 { stroke-width: 12 !important; opacity: .40 !important; animation-delay: -.54s, -.9s !important; }
.air-line--5 { stroke-width: 11 !important; opacity: .34 !important; animation-delay: -.72s, -1.2s !important; }
.air-line--6 { stroke-width: 10 !important; opacity: .29 !important; animation-delay: -.9s, -1.5s !important; }
.air-line--7 { stroke-width: 9 !important; opacity: .23 !important; animation-delay: -1.08s, -1.8s !important; }

@keyframes v7OutletBreath {
  0%, 100% { opacity: .78; filter: blur(7px); transform: rotate(-2.2deg) scaleX(.992); }
  50% { opacity: 1; filter: blur(9px); transform: rotate(-2.2deg) scaleX(1.012); }
}
@keyframes v7OutletTexture {
  from { background-position: 0 0; }
  to { background-position: -310px 0; }
}
@keyframes v7LineFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -116; }
}
@keyframes v7LineBreath {
  0%, 100% { stroke-opacity: .62; }
  50% { stroke-opacity: .95; }
}
@keyframes v7SoftSheet {
  0% { stroke-dashoffset: 760; opacity: .03; }
  18% { opacity: .10; }
  70% { opacity: .10; }
  100% { stroke-dashoffset: -1600; opacity: .025; }
}

@media (max-width: 1280px) {
  .hero__air-source {
    right: 4.6% !important;
    top: 254px !important;
    width: 510px !important;
  }
}
@media (max-width: 1100px) {
  .hero__air-source {
    right: 1.8% !important;
    top: 244px !important;
    width: 420px !important;
  }
}
@media (max-width: 720px) {
  .hero__air-source {
    right: -12% !important;
    top: 286px !important;
    width: 320px !important;
    opacity: .64 !important;
  }
  .air-line { opacity: .34 !important; }
}

.hero__air-source {
  right: 8.7% !important;
  top: 258px !important;
  width: 500px !important;
  height: 18px !important;
  transform: rotate(-1.4deg) !important;
  background: linear-gradient(90deg,
    rgba(188,229,255,0) 0%,
    rgba(218,243,255,.38) 10%,
    rgba(255,255,255,.88) 24%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,.88) 76%,
    rgba(218,243,255,.38) 90%,
    rgba(188,229,255,0) 100%) !important;
  filter: blur(7px) !important;
}
.hero__air-source::before {
  inset: -8px -10px !important;
  background: linear-gradient(90deg,
    rgba(180,225,255,0) 0%,
    rgba(173,222,255,.15) 18%,
    rgba(255,255,255,.42) 50%,
    rgba(173,222,255,.15) 82%,
    rgba(180,225,255,0) 100%) !important;
  filter: blur(16px) !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 24px,
    rgba(255,255,255,.62) 28px 34px,
    rgba(255,255,255,0) 38px 56px) !important;
  background-size: 300px 100% !important;
  opacity: .38 !important;
}
.hero__air-haze--1 {
  right: 16% !important;
  top: 318px !important;
  width: 640px !important;
  height: 210px !important;
}
.hero__air-haze--2 {
  right: 33% !important;
  top: 458px !important;
  width: 700px !important;
  height: 220px !important;
}
.hero-air-svg {
  top: -12px !important;
}
.air-soft path {
  stroke-width: 60 !important;
  opacity: .12 !important;
}
.air-soft path:nth-child(2) { stroke-width: 68 !important; opacity: .09 !important; }
.air-soft path:nth-child(3) { stroke-width: 56 !important; opacity: .07 !important; }
.air-line {
  stroke-dasharray: 340 1420 !important;
}
.air-line--1 { stroke-width: 19 !important; }
.air-line--2 { stroke-width: 18 !important; }
.air-line--3 { stroke-width: 16 !important; }
.air-line--4 { stroke-width: 14 !important; }
.air-line--5 { stroke-width: 12.5 !important; }
.air-line--6 { stroke-width: 11 !important; }
.air-line--7 { stroke-width: 9.5 !important; }

@media (max-width: 1280px) {
  .hero__air-source { right: 6.5% !important; width: 450px !important; top: 262px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 2% !important; width: 360px !important; top: 248px !important; }
  .hero__air-haze--1 { right: 10% !important; width: 520px !important; }
  .hero__air-haze--2 { right: 22% !important; width: 560px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -10% !important; width: 250px !important; top: 274px !important; }
}

.hero__air-source {
  right: 10.4% !important;
  top: 274px !important;
  width: 500px !important;
  height: 22px !important;
  border-radius: 999px !important;
  transform: rotate(-0.8deg) !important;
  background: linear-gradient(90deg,
    rgba(198,232,255,0) 0%,
    rgba(223,244,255,.34) 10%,
    rgba(255,255,255,.84) 22%,
    rgba(255,255,255,.98) 50%,
    rgba(255,255,255,.84) 78%,
    rgba(223,244,255,.34) 90%,
    rgba(198,232,255,0) 100%) !important;
  filter: blur(7px) !important;
  opacity: .96 !important;
  animation: v7OutletBreath 2.4s ease-in-out infinite !important;
}
.hero__air-source::before {
  inset: -6px -12px !important;
  background: linear-gradient(90deg,
    rgba(184,227,255,0) 0%,
    rgba(184,227,255,.10) 12%,
    rgba(255,255,255,.34) 22%,
    rgba(255,255,255,.54) 50%,
    rgba(255,255,255,.34) 78%,
    rgba(184,227,255,.10) 88%,
    rgba(184,227,255,0) 100%) !important;
  filter: blur(12px) !important;
}
.hero__air-source::after {
  inset: 1px 0 0 0 !important;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 12px,
    rgba(255,255,255,.62) 13px 18px,
    rgba(255,255,255,0) 21px 30px,
    rgba(196,236,255,.36) 31px 36px,
    rgba(255,255,255,0) 39px 48px) !important;
  background-size: 240px 100% !important;
  opacity: .52 !important;
  animation: v7OutletTravel 1.15s linear infinite !important;
}
.hero__air-haze--1 {
  right: 16% !important;
  top: 330px !important;
  width: 590px !important;
  height: 188px !important;
  transform: rotate(-8deg) !important;
}
.hero__air-haze--2 {
  right: 31% !important;
  top: 468px !important;
  width: 700px !important;
  height: 206px !important;
  transform: rotate(-5deg) !important;
}
.air-soft path {
  stroke-width: 60 !important;
  opacity: .11 !important;
  animation: v7SoftTravel 8.2s linear infinite !important;
}
.air-soft path:nth-child(2) { stroke-width: 58 !important; opacity: .09 !important; animation-duration: 8.8s !important; animation-delay: -2.2s !important; }
.air-soft path:nth-child(3) { stroke-width: 56 !important; opacity: .07 !important; animation-duration: 9.5s !important; animation-delay: -4.0s !important; }
.air-line {
  stroke-dasharray: 300 1450 !important;
  animation: v7AirTravel 4.8s linear infinite, v4AirFlicker 4.8s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 18 !important; }
.air-line--2 { stroke-width: 17 !important; animation-duration: 5.0s, 5.0s !important; }
.air-line--3 { stroke-width: 16 !important; animation-duration: 5.2s, 5.2s !important; }
.air-line--4 { stroke-width: 15 !important; animation-duration: 5.5s, 5.5s !important; }
.air-line--5 { stroke-width: 14 !important; animation-duration: 5.8s, 5.8s !important; }
.air-line--6 { stroke-width: 13 !important; animation-duration: 6.1s, 6.1s !important; }
.air-line--7 { stroke-width: 12 !important; animation-duration: 6.4s, 6.4s !important; }
.air-line--8 { stroke-width: 11 !important; opacity: .22 !important; animation-duration: 6.7s, 6.7s !important; }
.air-line--9 { stroke-width: 10 !important; opacity: .18 !important; animation-duration: 7.0s, 7.0s !important; }

@keyframes v7OutletBreath {
  0%, 100% { opacity: .88; filter: blur(7px); }
  50% { opacity: 1; filter: blur(8px); }
}
@keyframes v7OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -240px 0; }
}
@keyframes v7AirTravel {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: -1450; }
}
@keyframes v7SoftTravel {
  0% { stroke-dashoffset: 520; opacity: .02; }
  20% { opacity: .10; }
  75% { opacity: .11; }
  100% { stroke-dashoffset: -1500; opacity: .02; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 8.6% !important; width: 440px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.6% !important; width: 360px !important; top: 260px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -8% !important; width: 260px !important; top: 288px !important; opacity: .68 !important; }
}

.hero__air-source {
  overflow: hidden !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 8px,
    rgba(255,255,255,.68) 9px 14px,
    rgba(210,241,255,.52) 15px 19px,
    rgba(255,255,255,0) 20px 28px,
    rgba(255,255,255,.22) 29px 34px,
    rgba(255,255,255,0) 35px 44px) !important;
  background-size: 180px 100% !important;
  opacity: .66 !important;
  animation: v8OutletTravel .85s linear infinite !important;
}
.air-soft path {
  stroke-dasharray: 180 220 1200 !important;
  stroke-dashoffset: 0 !important;
  animation: v8SoftTravel 6.6s linear infinite !important;
}
.air-soft path:nth-child(2) {
  animation-duration: 7.2s !important;
  animation-delay: -1.5s !important;
}
.air-soft path:nth-child(3) {
  animation-duration: 7.8s !important;
  animation-delay: -3.1s !important;
}
.air-line {
  stroke-dasharray: 88 42 52 84 1200 !important;
  stroke-dashoffset: 0 !important;
  animation: v8AirTravel 3.9s linear infinite, v8AirPulse 2.2s ease-in-out infinite !important;
}
.air-line--1 { animation-duration: 3.6s, 2.2s !important; }
.air-line--2 { animation-duration: 3.8s, 2.3s !important; }
.air-line--3 { animation-duration: 4.0s, 2.4s !important; }
.air-line--4 { animation-duration: 4.2s, 2.5s !important; }
.air-line--5 { animation-duration: 4.4s, 2.6s !important; }
.air-line--6 { animation-duration: 4.7s, 2.7s !important; }
.air-line--7 { animation-duration: 5.0s, 2.8s !important; }
.air-line--8 { animation-duration: 5.3s, 2.9s !important; }
.air-line--9 { animation-duration: 5.6s, 3.0s !important; }

@keyframes v8OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -180px 0; }
}
@keyframes v8SoftTravel {
  0% { stroke-dashoffset: 0; opacity: .03; }
  18% { opacity: .10; }
  65% { opacity: .12; }
  100% { stroke-dashoffset: -1600; opacity: .03; }
}
@keyframes v8AirTravel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -1466; }
}
@keyframes v8AirPulse {
  0%, 100% { opacity: .38; }
  50% { opacity: .72; }
}

.air-soft {
  display: none !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .26 !important;
  filter: blur(52px) !important;
}
.hero__air-haze--1 {
  animation: v9Haze1 5.2s ease-in-out infinite !important;
}
.hero__air-haze--2 {
  animation: v9Haze2 6.8s ease-in-out infinite !important;
}
.air-line {
  stroke-dasharray: 96 54 72 110 1280 !important;
  stroke-dashoffset: 0 !important;
  opacity: .62 !important;
  animation: v9AirTravel 3.1s linear infinite, v9AirPulse 1.9s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 17 !important; opacity: .68 !important; animation-duration: 2.9s, 1.9s !important; }
.air-line--2 { stroke-width: 16 !important; opacity: .62 !important; animation-duration: 3.1s, 2.0s !important; }
.air-line--3 { stroke-width: 15 !important; opacity: .58 !important; animation-duration: 3.3s, 2.1s !important; }
.air-line--4 { stroke-width: 14 !important; opacity: .52 !important; animation-duration: 3.5s, 2.2s !important; }
.air-line--5 { stroke-width: 13 !important; opacity: .46 !important; animation-duration: 3.7s, 2.3s !important; }
.air-line--6 { stroke-width: 12 !important; opacity: .40 !important; animation-duration: 3.9s, 2.4s !important; }
.air-line--7 { stroke-width: 11 !important; opacity: .34 !important; animation-duration: 4.1s, 2.5s !important; }
.air-line--8 { stroke-width: 10 !important; opacity: .28 !important; animation-duration: 4.3s, 2.6s !important; }
.air-line--9 { stroke-width: 9 !important; opacity: .24 !important; animation-duration: 4.5s, 2.7s !important; }

@keyframes v9AirTravel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -1612; }
}
@keyframes v9AirPulse {
  0%, 100% { filter: saturate(100%); }
  50% { filter: saturate(135%); }
}
@keyframes v9Haze1 {
  0%,100% { opacity: .18; transform: rotate(-8deg) translate3d(0,0,0) scale(1); }
  50% { opacity: .30; transform: rotate(-8deg) translate3d(-18px, 8px, 0) scale(1.04); }
}
@keyframes v9Haze2 {
  0%,100% { opacity: .12; transform: rotate(-5deg) translate3d(0,0,0) scale(1); }
  50% { opacity: .22; transform: rotate(-5deg) translate3d(-24px, 10px, 0) scale(1.05); }
}

.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 10px,
    rgba(255,255,255,.82) 11px 15px,
    rgba(207,241,255,.56) 16px 19px,
    rgba(255,255,255,0) 20px 31px) !important;
  background-size: 160px 100% !important;
  opacity: .74 !important;
  animation: v10OutletTravel .7s linear infinite !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .18 !important;
  filter: blur(60px) !important;
}
.air-line {
  stroke-dasharray: 20 24 16 28 22 38 1400 !important;
  stroke-dashoffset: 0 !important;
  filter: drop-shadow(0 0 8px rgba(188,236,255,.18));
  opacity: .74 !important;
  animation: v10AirTravel 2.15s linear infinite, v10AirFade 1.55s ease-in-out infinite !important;
}
.air-line--1 { animation-duration: 2.0s, 1.45s !important; opacity: .82 !important; }
.air-line--2 { animation-duration: 2.15s, 1.6s !important; opacity: .76 !important; }
.air-line--3 { animation-duration: 2.3s, 1.7s !important; opacity: .70 !important; }
.air-line--4 { animation-duration: 2.45s, 1.85s !important; opacity: .64 !important; }
.air-line--5 { animation-duration: 2.6s, 2.0s !important; opacity: .58 !important; }
.air-line--6 { animation-duration: 2.8s, 2.15s !important; opacity: .50 !important; }
.air-line--7 { animation-duration: 3.0s, 2.25s !important; opacity: .42 !important; }
.air-line--8 { animation-duration: 3.2s, 2.35s !important; opacity: .34 !important; }
.air-line--9 { animation-duration: 3.4s, 2.45s !important; opacity: .28 !important; }

@keyframes v10OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -160px 0; }
}
@keyframes v10AirTravel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -1548; }
}
@keyframes v10AirFade {
  0%,100% { filter: drop-shadow(0 0 6px rgba(188,236,255,.12)); }
  50% { filter: drop-shadow(0 0 11px rgba(220,246,255,.22)); }
}

.hero__air-source {
  right: 10.3% !important;
  top: 278px !important;
  width: 502px !important;
  height: 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(225,245,255,.24) 8%,
    rgba(255,255,255,.42) 20%,
    rgba(255,255,255,.52) 50%,
    rgba(255,255,255,.42) 80%,
    rgba(225,245,255,.24) 92%,
    rgba(255,255,255,0) 100%) !important;
  filter: blur(4px) !important;
  opacity: .44 !important;
  mix-blend-mode: screen !important;
  transform: none !important;
  animation: v8OutletPulse 2.2s ease-in-out infinite !important;
}
.hero__air-source::before {
  content: "" !important;
  position: absolute !important;
  inset: -1px 4px 0 4px !important;
  border-radius: inherit !important;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 14px,
    rgba(255,255,255,.32) 15px 19px,
    rgba(255,255,255,0) 20px 31px,
    rgba(178,232,255,.22) 32px 36px,
    rgba(255,255,255,0) 37px 48px) !important;
  background-size: 180px 100% !important;
  filter: blur(1px) !important;
  opacity: .42 !important;
  animation: v8OutletTravel 1.15s linear infinite !important;
}
.hero__air-source::after {
  content: "" !important;
  position: absolute !important;
  left: -20px !important;
  right: -20px !important;
  top: -10px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(190,236,255,.24) 0%, rgba(190,236,255,.09) 36%, rgba(190,236,255,0) 72%) !important;
  filter: blur(10px) !important;
  opacity: .26 !important;
  animation: v8OutletGlow 2.8s ease-in-out infinite !important;
}
.hero__air-haze--1 {
  right: 18% !important;
  top: 340px !important;
  width: 520px !important;
  height: 92px !important;
  background: radial-gradient(ellipse, rgba(142,220,255,.10) 0%, rgba(142,220,255,.03) 46%, rgba(142,220,255,0) 74%) !important;
  filter: blur(30px) !important;
  opacity: .46 !important;
}
.hero__air-haze--2 {
  right: 34% !important;
  top: 472px !important;
  width: 620px !important;
  height: 110px !important;
  background: radial-gradient(ellipse, rgba(108,197,255,.08) 0%, rgba(108,197,255,.02) 42%, rgba(108,197,255,0) 76%) !important;
  filter: blur(34px) !important;
  opacity: .34 !important;
}
.hero-air-svg { opacity: 1 !important; }
.air-soft path {
  stroke-width: 28 !important;
  opacity: .045 !important;
  stroke-dasharray: 220 1180 !important;
  animation: v8SoftTravel 8.8s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 24 !important;
  opacity: .036 !important;
  animation-duration: 9.6s !important;
  animation-delay: -1.8s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 20 !important;
  opacity: .03 !important;
  animation-duration: 10.4s !important;
  animation-delay: -3.4s !important;
}
.air-line {
  stroke-linecap: round !important;
  stroke-dasharray: 22 28 16 42 20 62 14 90 !important;
  opacity: .66 !important;
  animation: v8AirTravel 3.6s linear infinite, v8LineBreathe 2.2s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 10.5 !important; animation-duration: 3.4s, 2.0s !important; }
.air-line--2 { stroke-width: 10 !important; animation-duration: 3.7s, 2.2s !important; animation-delay: -.24s, -.5s !important; }
.air-line--3 { stroke-width: 9.5 !important; animation-duration: 4.0s, 2.1s !important; animation-delay: -.5s, -.9s !important; }
.air-line--4 { stroke-width: 9 !important; animation-duration: 4.3s, 2.3s !important; animation-delay: -.8s, -1.0s !important; }
.air-line--5 { stroke-width: 8.5 !important; animation-duration: 4.6s, 2.4s !important; animation-delay: -1.0s, -1.2s !important; }
.air-line--6 { stroke-width: 8 !important; animation-duration: 4.9s, 2.5s !important; animation-delay: -1.2s, -1.4s !important; }
.air-line--7 { stroke-width: 7.5 !important; animation-duration: 5.2s, 2.7s !important; animation-delay: -1.4s, -1.6s !important; }
.air-line--8 { stroke-width: 7 !important; opacity: .52 !important; animation-duration: 5.5s, 2.8s !important; animation-delay: -1.7s, -1.8s !important; }
.air-line--9 { stroke-width: 6.5 !important; opacity: .44 !important; animation-duration: 5.8s, 3.0s !important; animation-delay: -1.9s, -2.0s !important; }

@keyframes v8OutletPulse {
  0%, 100% { opacity: .34; filter: blur(4px); }
  50% { opacity: .50; filter: blur(5px); }
}
@keyframes v8OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -180px 0; }
}
@keyframes v8OutletGlow {
  0%, 100% { opacity: .18; transform: scaleX(.98); }
  50% { opacity: .30; transform: scaleX(1.04); }
}
@keyframes v8AirTravel {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -294; }
}
@keyframes v8SoftTravel {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1400; }
}
@keyframes v8LineBreathe {
  0%,100% { opacity: .52; }
  50% { opacity: .78; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 8.5% !important; width: 438px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.6% !important; top: 264px !important; width: 340px !important; }
  .hero__air-haze--1 { right: 12% !important; width: 400px !important; }
  .hero__air-haze--2 { right: 24% !important; width: 480px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -8% !important; top: 290px !important; width: 236px !important; opacity: .32 !important; }
  .air-line { opacity: .48 !important; }
}

.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 10px,
    rgba(255,255,255,.92) 11px 16px,
    rgba(178,228,255,.78) 17px 22px,
    rgba(255,255,255,0) 23px 34px) !important;
  background-size: 170px 100% !important;
  opacity: .74 !important;
  animation: v8OutletTravel .75s linear infinite !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .55 !important;
}
.air-soft path {
  stroke-width: 48 !important;
  opacity: .045 !important;
  stroke-dasharray: 180 1280 !important;
  animation: v8SoftStripeTravel 8.6s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 44 !important;
  opacity: .04 !important;
  animation-duration: 9.4s !important;
  animation-delay: -1.8s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 40 !important;
  opacity: .032 !important;
  animation-duration: 10.2s !important;
  animation-delay: -3.6s !important;
}
.air-line {
  stroke-linecap: round !important;
  stroke-width: 12 !important;
  opacity: .84 !important;
  stroke-dasharray: 12 24 18 42 10 56 !important;
  stroke-dashoffset: 0 !important;
  animation: v8StripeMove 1.45s linear infinite, v8StripeFade 2.8s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 14 !important; opacity: .82 !important; animation-duration: 1.30s, 2.6s !important; }
.air-line--2 { stroke-width: 13 !important; opacity: .78 !important; animation-duration: 1.40s, 2.8s !important; animation-delay: -.18s, -.5s !important; }
.air-line--3 { stroke-width: 13 !important; opacity: .72 !important; animation-duration: 1.55s, 3s !important; animation-delay: -.34s, -.9s !important; }
.air-line--4 { stroke-width: 12 !important; opacity: .66 !important; animation-duration: 1.72s, 3.2s !important; animation-delay: -.52s, -1.1s !important; }
.air-line--5 { stroke-width: 11 !important; opacity: .58 !important; animation-duration: 1.88s, 3.4s !important; animation-delay: -.68s, -1.4s !important; }
.air-line--6 { stroke-width: 10 !important; opacity: .50 !important; animation-duration: 2.02s, 3.6s !important; animation-delay: -.86s, -1.6s !important; }
.air-line--7 { stroke-width: 10 !important; opacity: .42 !important; animation-duration: 2.16s, 3.8s !important; animation-delay: -1.0s, -1.9s !important; }
.air-line--8 { stroke-width: 9 !important; opacity: .34 !important; animation-duration: 2.32s, 4.0s !important; animation-delay: -1.2s, -2.2s !important; }
.air-line--9 { stroke-width: 8 !important; opacity: .28 !important; animation-duration: 2.48s, 4.2s !important; animation-delay: -1.38s, -2.5s !important; }

@keyframes v8OutletTravel {
  from { background-position: 0 0; }
  to { background-position: -170px 0; }
}
@keyframes v8StripeMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -162px; }
}
@keyframes v8StripeFade {
  0%, 100% { opacity: .42; }
  35% { opacity: .96; }
  70% { opacity: .62; }
}
@keyframes v8SoftStripeTravel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -1460px; }
}

@media (max-width: 720px) {
  .air-line { opacity: .62 !important; }
  .hero__air-source::after { opacity: .58 !important; }
}

.hero__air-source {
  right: 10.2% !important;
  top: 274px !important;
  width: 510px !important;
  height: 14px !important;
  border-radius: 999px !important;
  transform: rotate(-0.8deg) !important;
  background: linear-gradient(90deg,
    rgba(201,235,255,0) 0%,
    rgba(216,242,255,.18) 8%,
    rgba(255,255,255,.78) 24%,
    rgba(255,255,255,.96) 50%,
    rgba(255,255,255,.78) 76%,
    rgba(216,242,255,.18) 92%,
    rgba(201,235,255,0) 100%) !important;
  filter: blur(5px) !important;
  opacity: .92 !important;
  animation: v8VentPulse 2.2s ease-in-out infinite !important;
}
.hero__air-source::before {
  content: "";
  position: absolute;
  inset: -5px -10px !important;
  border-radius: inherit;
  background: linear-gradient(90deg,
    rgba(184,227,255,0) 0%,
    rgba(184,227,255,.10) 14%,
    rgba(255,255,255,.24) 50%,
    rgba(184,227,255,.10) 86%,
    rgba(184,227,255,0) 100%) !important;
  filter: blur(10px) !important;
  opacity: .85;
}
.hero__air-source::after {
  content: "";
  position: absolute;
  inset: 0 !important;
  border-radius: inherit;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 10px,
    rgba(255,255,255,.56) 11px 16px,
    rgba(255,255,255,0) 17px 24px,
    rgba(196,236,255,.22) 25px 30px,
    rgba(255,255,255,0) 31px 40px) !important;
  background-size: 180px 100% !important;
  opacity: .5 !important;
  animation: v8VentTravel 1.05s linear infinite !important;
}
.hero__air-haze--1 {
  right: 18% !important;
  top: 336px !important;
  width: 520px !important;
  height: 170px !important;
  opacity: .55 !important;
}
.hero__air-haze--2 {
  right: 34% !important;
  top: 468px !important;
  width: 620px !important;
  height: 186px !important;
  opacity: .34 !important;
}
.air-soft path {
  stroke-width: 34 !important;
  opacity: .08 !important;
  stroke-dasharray: 220 1380 !important;
  stroke-dashoffset: 0 !important;
  animation: v8SoftSweep 7.6s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 30 !important;
  opacity: .065 !important;
  animation-duration: 8.2s !important;
  animation-delay: -2.1s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 28 !important;
  opacity: .055 !important;
  animation-duration: 8.9s !important;
  animation-delay: -3.9s !important;
}
.air-line {
  opacity: .82 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-dasharray: 120 540 !important;
  stroke-dashoffset: 0 !important;
  animation: v8AirSweep 3.2s linear infinite, v8AirOpacity 3.2s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 16 !important; animation-delay: 0s, 0s !important; }
.air-line--2 { stroke-width: 15 !important; animation-delay: -.28s, -.28s !important; }
.air-line--3 { stroke-width: 14 !important; animation-delay: -.56s, -.56s !important; }
.air-line--4 { stroke-width: 13 !important; animation-delay: -.84s, -.84s !important; }
.air-line--5 { stroke-width: 12 !important; animation-delay: -1.12s, -1.12s !important; }
.air-line--6 { stroke-width: 11 !important; animation-delay: -1.40s, -1.40s !important; }
.air-line--7 { stroke-width: 10 !important; opacity: .72 !important; animation-delay: -1.68s, -1.68s !important; }
.air-line--8 { stroke-width: 9 !important; opacity: .58 !important; animation-delay: -1.96s, -1.96s !important; }
.air-line--9 { stroke-width: 8 !important; opacity: .48 !important; animation-delay: -2.24s, -2.24s !important; }

@keyframes v8VentPulse {
  0%, 100% { opacity: .78; filter: blur(5px); }
  50% { opacity: 1; filter: blur(6px); }
}
@keyframes v8VentTravel {
  from { background-position: 0 0; }
  to { background-position: -180px 0; }
}
@keyframes v8AirSweep {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 660; }
}
@keyframes v8AirOpacity {
  0%, 100% { opacity: .18; }
  18% { opacity: .84; }
  72% { opacity: .58; }
}
@keyframes v8SoftSweep {
  0% { stroke-dashoffset: 0; opacity: .02; }
  18% { opacity: .07; }
  100% { stroke-dashoffset: 640; opacity: .02; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 8.4% !important; width: 450px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.4% !important; width: 360px !important; top: 262px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -8% !important; width: 255px !important; top: 288px !important; }
}

.hero__air-source {
  height: 12px !important;
  filter: blur(4px) !important;
}
.hero__air-source::before {
  opacity: .46 !important;
  filter: blur(8px) !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 8px,
    rgba(255,255,255,.82) 9px 14px,
    rgba(181,229,255,.48) 15px 20px,
    rgba(255,255,255,0) 21px 32px) !important;
  background-size: 150px 100% !important;
  opacity: .72 !important;
  animation: v9VentTravel .65s linear infinite !important;
}
.hero__air-haze--1 {
  opacity: .24 !important;
  width: 480px !important;
}
.hero__air-haze--2 {
  opacity: .14 !important;
  width: 560px !important;
}
.air-soft path {
  stroke-width: 18 !important;
  opacity: .04 !important;
  stroke-dasharray: 92 360 !important;
  stroke-dashoffset: 0 !important;
  animation: v9SoftMove 4.8s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 16 !important;
  opacity: .035 !important;
  animation-duration: 5.2s !important;
  animation-delay: -.9s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 14 !important;
  opacity: .03 !important;
  animation-duration: 5.8s !important;
  animation-delay: -1.8s !important;
}
.air-line {
  stroke-dasharray: 58 190 !important;
  stroke-dashoffset: 0 !important;
  opacity: .86 !important;
  animation: v9StripeMove 1.65s linear infinite, v9StripeOpacity 2.4s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 13 !important; animation-delay: 0s,0s !important; }
.air-line--2 { stroke-width: 12 !important; animation-delay: -.14s,-.2s !important; }
.air-line--3 { stroke-width: 12 !important; animation-delay: -.28s,-.4s !important; }
.air-line--4 { stroke-width: 11 !important; animation-delay: -.42s,-.6s !important; }
.air-line--5 { stroke-width: 10 !important; animation-delay: -.56s,-.8s !important; }
.air-line--6 { stroke-width: 9 !important; animation-delay: -.70s,-1.0s !important; }
.air-line--7 { stroke-width: 8 !important; opacity: .70 !important; animation-delay: -.84s,-1.2s !important; }
.air-line--8 { stroke-width: 7 !important; opacity: .56 !important; animation-delay: -.98s,-1.4s !important; }
.air-line--9 { stroke-width: 6 !important; opacity: .42 !important; animation-delay: -1.12s,-1.6s !important; }

@keyframes v9VentTravel {
  from { background-position: 0 0; }
  to { background-position: -150px 0; }
}
@keyframes v9SoftMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 452; }
}
@keyframes v9StripeMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 248; }
}
@keyframes v9StripeOpacity {
  0%,100% { opacity: .28; }
  30% { opacity: .9; }
  70% { opacity: .58; }
}

@media (max-width: 720px) {
  .hero__air-source::after { opacity: .62 !important; }
  .air-line { opacity: .68 !important; }
}

.hero__air-source {
  height: 10px !important;
  filter: blur(3px) !important;
  opacity: .82 !important;
}
.hero__air-source::before {
  opacity: .22 !important;
  filter: blur(6px) !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 7px,
    rgba(255,255,255,.88) 8px 12px,
    rgba(191,233,255,.56) 13px 17px,
    rgba(255,255,255,0) 18px 28px) !important;
  background-size: 120px 100% !important;
  opacity: .64 !important;
  animation: v10VentTravel .52s linear infinite !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .08 !important;
  filter: blur(28px) !important;
}
.hero__air-haze--1 { width: 420px !important; }
.hero__air-haze--2 { width: 500px !important; }
.air-soft path {
  stroke-width: 10 !important;
  opacity: .018 !important;
  stroke-dasharray: 40 250 !important;
  animation: v10SoftMove 3.8s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 9 !important;
  opacity: .015 !important;
  animation-duration: 4.1s !important;
  animation-delay: -.8s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 8 !important;
  opacity: .012 !important;
  animation-duration: 4.5s !important;
  animation-delay: -1.6s !important;
}
.air-line {
  stroke-dasharray: 22 72 16 110 10 130 !important;
  stroke-dashoffset: 0 !important;
  opacity: .88 !important;
  animation: v10StripeMove 1.05s linear infinite, v10StripeOpacity 1.9s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 11 !important; animation-delay: 0s,0s !important; }
.air-line--2 { stroke-width: 10.5 !important; animation-delay: -.10s,-.15s !important; }
.air-line--3 { stroke-width: 10 !important; animation-delay: -.20s,-.30s !important; }
.air-line--4 { stroke-width: 9.5 !important; animation-delay: -.30s,-.45s !important; }
.air-line--5 { stroke-width: 9 !important; animation-delay: -.40s,-.60s !important; }
.air-line--6 { stroke-width: 8.5 !important; animation-delay: -.50s,-.75s !important; }
.air-line--7 { stroke-width: 8 !important; opacity: .72 !important; animation-delay: -.60s,-.90s !important; }
.air-line--8 { stroke-width: 7 !important; opacity: .56 !important; animation-delay: -.70s,-1.05s !important; }
.air-line--9 { stroke-width: 6.5 !important; opacity: .44 !important; animation-delay: -.80s,-1.20s !important; }

@keyframes v10VentTravel {
  from { background-position: 0 0; }
  to { background-position: -120px 0; }
}
@keyframes v10SoftMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 290; }
}
@keyframes v10StripeMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 360; }
}
@keyframes v10StripeOpacity {
  0%,100% { opacity: .20; }
  35% { opacity: .92; }
  70% { opacity: .54; }
}

@media (max-width: 720px) {
  .hero__air-source::after { opacity: .56 !important; }
  .air-line { opacity: .70 !important; }
}

.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 6px,
    rgba(255,255,255,.92) 7px 12px,
    rgba(197,236,255,.56) 13px 18px,
    rgba(255,255,255,0) 19px 30px) !important;
  background-size: 108px 100% !important;
  opacity: .74 !important;
  animation: v11VentTravel .36s linear infinite !important;
}
.air-line {
  stroke-dasharray: 18 34 12 52 10 74 !important;
  stroke-dashoffset: 0 !important;
  opacity: .94 !important;
  animation: v11StripeMove .72s linear infinite, v11StripeOpacity 1.4s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 12 !important; animation-delay: 0s, 0s !important; }
.air-line--2 { stroke-width: 11.5 !important; animation-delay: -.08s, -.10s !important; }
.air-line--3 { stroke-width: 11 !important; animation-delay: -.16s, -.20s !important; }
.air-line--4 { stroke-width: 10.5 !important; animation-delay: -.24s, -.30s !important; }
.air-line--5 { stroke-width: 10 !important; animation-delay: -.32s, -.40s !important; }
.air-line--6 { stroke-width: 9.5 !important; animation-delay: -.40s, -.50s !important; }
.air-line--7 { stroke-width: 9 !important; opacity: .82 !important; animation-delay: -.48s, -.60s !important; }
.air-line--8 { stroke-width: 8 !important; opacity: .68 !important; animation-delay: -.56s, -.70s !important; }
.air-line--9 { stroke-width: 7 !important; opacity: .54 !important; animation-delay: -.64s, -.80s !important; }
.air-soft path {
  stroke-dasharray: 34 170 !important;
  stroke-dashoffset: 0 !important;
  opacity: .03 !important;
  animation: v11SoftMove 2.9s linear infinite !important;
}
.air-soft path:nth-child(2) { animation-duration: 3.2s !important; animation-delay: -.55s !important; }
.air-soft path:nth-child(3) { animation-duration: 3.6s !important; animation-delay: -1.1s !important; }

@keyframes v11VentTravel {
  from { background-position: 0 0; }
  to { background-position: -108px 0; }
}
@keyframes v11StripeMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 200; }
}
@keyframes v11StripeOpacity {
  0%,100% { opacity: .28; }
  32% { opacity: .98; }
  72% { opacity: .62; }
}
@keyframes v11SoftMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 204; }
}

@media (max-width: 720px) {
  .hero__air-source::after { opacity: .64 !important; }
  .air-line { opacity: .76 !important; }
}

.hero__air-haze--1,
.hero__air-haze--2,
.air-soft {
  display: none !important;
}

.hero__air-source {
  height: 8px !important;
  opacity: .78 !important;
  filter: blur(2px) !important;
}
.hero__air-source::before {
  opacity: .12 !important;
  filter: blur(4px) !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 10px,
    rgba(255,255,255,.98) 11px 16px,
    rgba(214,242,255,.82) 17px 22px,
    rgba(255,255,255,0) 23px 34px) !important;
  background-size: 96px 100% !important;
  opacity: .78 !important;
  animation: v11VentTravel .48s linear infinite !important;
}

.air-line {
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-dasharray: 14 34 20 56 12 84 !important;
  stroke-dashoffset: 0 !important;
  opacity: .92 !important;
  animation: v11StripeFlow .95s linear infinite, v11StripeGlow 1.8s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 12 !important; animation-duration: .78s, 1.5s !important; animation-delay: 0s, 0s !important; }
.air-line--2 { stroke-width: 11.5 !important; animation-duration: .84s, 1.6s !important; animation-delay: -.10s, -.18s !important; }
.air-line--3 { stroke-width: 11 !important; animation-duration: .90s, 1.7s !important; animation-delay: -.18s, -.34s !important; }
.air-line--4 { stroke-width: 10.5 !important; animation-duration: .96s, 1.8s !important; animation-delay: -.26s, -.52s !important; }
.air-line--5 { stroke-width: 10 !important; animation-duration: 1.02s, 1.9s !important; animation-delay: -.34s, -.70s !important; }
.air-line--6 { stroke-width: 9.5 !important; animation-duration: 1.08s, 2.0s !important; animation-delay: -.42s, -.88s !important; }
.air-line--7 { stroke-width: 9 !important; opacity: .82 !important; animation-duration: 1.14s, 2.1s !important; animation-delay: -.50s, -1.06s !important; }
.air-line--8 { stroke-width: 8.5 !important; opacity: .68 !important; animation-duration: 1.20s, 2.2s !important; animation-delay: -.58s, -1.24s !important; }
.air-line--9 { stroke-width: 8 !important; opacity: .54 !important; animation-duration: 1.26s, 2.3s !important; animation-delay: -.66s, -1.42s !important; }

@keyframes v11VentTravel {
  from { background-position: 0 0; }
  to { background-position: -96px 0; }
}
@keyframes v11StripeFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -220; }
}
@keyframes v11StripeGlow {
  0%, 100% { opacity: .34; }
  35% { opacity: .98; }
  68% { opacity: .66; }
}

@media (max-width: 720px) {
  .hero__air-source::after { opacity: .68 !important; }
  .air-line { opacity: .76 !important; }
}

.hero__air-source {
  right: 10.2% !important;
  top: 274px !important;
  width: 510px !important;
  height: 10px !important;
  filter: blur(3px) !important;
  opacity: .74 !important;
}
.hero__air-source::before {
  inset: -4px -8px !important;
  opacity: .18 !important;
  filter: blur(7px) !important;
}
.hero__air-source::after {
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0) 0 9px,
    rgba(255,255,255,.96) 10px 14px,
    rgba(196,236,255,.62) 15px 18px,
    rgba(255,255,255,0) 19px 30px) !important;
  background-size: 110px 100% !important;
  opacity: .82 !important;
  animation: v11VentEmit .48s linear infinite !important;
}
.hero__air-haze--1 {
  opacity: .05 !important;
  width: 390px !important;
  height: 148px !important;
}
.hero__air-haze--2 {
  opacity: .03 !important;
  width: 470px !important;
  height: 164px !important;
}
.air-soft path {
  stroke-width: 10 !important;
  opacity: .02 !important;
  stroke-dasharray: 46 560 !important;
  stroke-dashoffset: 606 !important;
  animation: v11SoftPulse 3.8s linear infinite !important;
}
.air-soft path:nth-child(2) {
  stroke-width: 9 !important;
  opacity: .018 !important;
  animation-duration: 4.2s !important;
  animation-delay: -.8s !important;
}
.air-soft path:nth-child(3) {
  stroke-width: 8 !important;
  opacity: .014 !important;
  animation-duration: 4.6s !important;
  animation-delay: -1.6s !important;
}
.air-line {
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-dasharray: 34 720 !important;
  stroke-dashoffset: 754 !important;
  opacity: .92 !important;
  animation: v11PulseMove 2.05s linear infinite, v11PulseGlow 2.05s ease-in-out infinite !important;
}
.air-line--1 { stroke-width: 11 !important; animation-delay: 0s, 0s !important; }
.air-line--2 { stroke-width: 10.5 !important; animation-delay: -.12s, -.12s !important; }
.air-line--3 { stroke-width: 10 !important; animation-delay: -.24s, -.24s !important; }
.air-line--4 { stroke-width: 9.5 !important; animation-delay: -.36s, -.36s !important; }
.air-line--5 { stroke-width: 9 !important; animation-delay: -.48s, -.48s !important; }
.air-line--6 { stroke-width: 8.5 !important; animation-delay: -.60s, -.60s !important; }
.air-line--7 { stroke-width: 8 !important; opacity: .78 !important; animation-delay: -.72s, -.72s !important; }
.air-line--8 { stroke-width: 7.5 !important; opacity: .64 !important; animation-delay: -.84s, -.84s !important; }
.air-line--9 { stroke-width: 7 !important; opacity: .52 !important; animation-delay: -.96s, -.96s !important; }

@keyframes v11VentEmit {
  from { background-position: 0 0; }
  to { background-position: -110px 0; }
}
@keyframes v11SoftPulse {
  0% { stroke-dashoffset: 606; opacity: .01; }
  20% { opacity: .03; }
  100% { stroke-dashoffset: -120; opacity: .008; }
}
@keyframes v11PulseMove {
  0% { stroke-dashoffset: 754; }
  100% { stroke-dashoffset: -80; }
}
@keyframes v11PulseGlow {
  0%,100% { opacity: .10; }
  22% { opacity: .95; }
  60% { opacity: .56; }
}

@media (max-width: 1280px) {
  .hero__air-source { right: 8.5% !important; width: 450px !important; }
}
@media (max-width: 1100px) {
  .hero__air-source { right: 3.4% !important; width: 360px !important; top: 262px !important; }
}
@media (max-width: 720px) {
  .hero__air-source { right: -8% !important; width: 255px !important; top: 288px !important; }
  .hero__air-source::after { opacity: .72 !important; }
  .air-line { opacity: .74 !important; }
}

.hero-air-svg {
  display: none !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .08 !important;
  filter: blur(32px) !important;
}
.hero__air-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero__air-particles .air-pulse {
  position: absolute;
  left: calc(100% - 10.2% - 510px + var(--offset, 0px));
  top: calc(279px + var(--start-y, 0px));
  width: var(--w, 68px);
  height: var(--h, 18px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,.98) 0%,
    rgba(245,252,255,.96) 22%,
    rgba(217,241,255,.72) 48%,
    rgba(255,255,255,0) 76%);
  box-shadow: 0 0 14px rgba(220, 244, 255, .46);
  filter: blur(4px);
  opacity: 0;
  transform-origin: center center;
  animation: acVentPulse var(--dur, 2.4s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.hero__air-particles .air-pulse::after {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.78), rgba(255,255,255,0));
  opacity: .7;
}

.hero__air-particles .air-pulse:nth-child(1)  { --offset: 0px;   --start-y: 0px;  --tx: -660px; --ty: 338px; --rot: -32deg; --delay: -0.00s; --dur: 2.4s; --w: 54px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(2)  { --offset: 28px;  --start-y: 2px;  --tx: -650px; --ty: 330px; --rot: -31deg; --delay: -0.18s; --dur: 2.45s; --w: 58px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(3)  { --offset: 58px;  --start-y: 1px;  --tx: -635px; --ty: 322px; --rot: -30deg; --delay: -0.36s; --dur: 2.35s; --w: 62px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(4)  { --offset: 92px;  --start-y: 3px;  --tx: -620px; --ty: 314px; --rot: -29deg; --delay: -0.54s; --dur: 2.5s;  --w: 66px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(5)  { --offset: 124px; --start-y: 2px;  --tx: -610px; --ty: 306px; --rot: -28deg; --delay: -0.72s; --dur: 2.4s;  --w: 70px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(6)  { --offset: 156px; --start-y: 4px;  --tx: -595px; --ty: 300px; --rot: -27deg; --delay: -0.90s; --dur: 2.55s; --w: 74px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(7)  { --offset: 188px; --start-y: 3px;  --tx: -580px; --ty: 292px; --rot: -26deg; --delay: -1.08s; --dur: 2.45s; --w: 76px; --h: 19px; }
.hero__air-particles .air-pulse:nth-child(8)  { --offset: 220px; --start-y: 4px;  --tx: -565px; --ty: 284px; --rot: -25deg; --delay: -1.26s; --dur: 2.5s;  --w: 80px; --h: 19px; }
.hero__air-particles .air-pulse:nth-child(9)  { --offset: 252px; --start-y: 4px;  --tx: -550px; --ty: 278px; --rot: -24deg; --delay: -1.44s; --dur: 2.35s; --w: 82px; --h: 20px; }
.hero__air-particles .air-pulse:nth-child(10) { --offset: 284px; --start-y: 4px;  --tx: -535px; --ty: 270px; --rot: -23deg; --delay: -1.62s; --dur: 2.45s; --w: 84px; --h: 20px; }
.hero__air-particles .air-pulse:nth-child(11) { --offset: 316px; --start-y: 5px;  --tx: -520px; --ty: 264px; --rot: -22deg; --delay: -1.80s; --dur: 2.5s;  --w: 84px; --h: 19px; }
.hero__air-particles .air-pulse:nth-child(12) { --offset: 346px; --start-y: 5px;  --tx: -500px; --ty: 258px; --rot: -21deg; --delay: -1.98s; --dur: 2.4s;  --w: 80px; --h: 19px; }
.hero__air-particles .air-pulse:nth-child(13) { --offset: 374px; --start-y: 6px;  --tx: -480px; --ty: 252px; --rot: -20deg; --delay: -2.16s; --dur: 2.35s; --w: 76px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(14) { --offset: 400px; --start-y: 6px;  --tx: -460px; --ty: 246px; --rot: -19deg; --delay: -2.34s; --dur: 2.45s; --w: 72px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(15) { --offset: 426px; --start-y: 6px;  --tx: -440px; --ty: 240px; --rot: -18deg; --delay: -2.52s; --dur: 2.4s;  --w: 68px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(16) { --offset: 450px; --start-y: 7px;  --tx: -420px; --ty: 234px; --rot: -17deg; --delay: -2.70s; --dur: 2.35s; --w: 64px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(17) { --offset: 472px; --start-y: 7px;  --tx: -400px; --ty: 228px; --rot: -16deg; --delay: -2.88s; --dur: 2.5s;  --w: 58px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(18) { --offset: 492px; --start-y: 7px;  --tx: -382px; --ty: 222px; --rot: -15deg; --delay: -3.06s; --dur: 2.45s; --w: 54px; --h: 16px; }

@keyframes acVentPulse {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--rot)) scale(.42);
  }
  8% {
    opacity: .92;
  }
  68% {
    opacity: .66;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot)) scale(1.18);
  }
}

@media (max-width: 1280px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 8.4% - 450px + var(--offset) * .88);
  }
}

@media (max-width: 1100px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 3.4% - 360px + var(--offset) * .70);
    top: calc(266px + var(--start-y));
  }
}

@media (max-width: 720px) {
  .hero__air-particles .air-pulse {
    left: calc(100% + 8% - 255px + var(--offset) * .50);
    top: calc(292px + var(--start-y));
    width: calc(var(--w) * .62);
    height: calc(var(--h) * .62);
    filter: blur(3px);
  }
}

.hero__air-particles .air-pulse {
  left: calc(100% - 10.2% - 510px + var(--offset, 0px)) !important;
  top: calc(276px + var(--start-y, 0px)) !important;
  width: var(--w, 60px) !important;
  height: var(--h, 16px) !important;
  filter: blur(4px) !important;
  box-shadow: 0 0 16px rgba(220, 244, 255, .44) !important;
  animation: acVentPulseV13 var(--dur, 2.1s) linear infinite !important;
  animation-delay: var(--delay, 0s) !important;
}

.hero__air-particles .air-pulse:nth-child(1)  { --offset: 0px;   --start-y: 4px;  --tx: -610px; --ty: 344px; --rot: -34deg; --delay: -0.00s; --dur: 2.10s; --w: 58px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(2)  { --offset: 30px;  --start-y: 3px;  --tx: -605px; --ty: 334px; --rot: -33deg; --delay: -0.12s; --dur: 2.18s; --w: 60px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(3)  { --offset: 60px;  --start-y: 3px;  --tx: -598px; --ty: 326px; --rot: -32deg; --delay: -0.24s; --dur: 2.08s; --w: 62px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(4)  { --offset: 90px;  --start-y: 2px;  --tx: -592px; --ty: 318px; --rot: -31deg; --delay: -0.36s; --dur: 2.16s; --w: 64px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(5)  { --offset: 120px; --start-y: 2px;  --tx: -586px; --ty: 310px; --rot: -30deg; --delay: -0.48s; --dur: 2.12s; --w: 66px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(6)  { --offset: 150px; --start-y: 1px;  --tx: -580px; --ty: 302px; --rot: -29deg; --delay: -0.60s; --dur: 2.22s; --w: 68px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(7)  { --offset: 180px; --start-y: 1px;  --tx: -572px; --ty: 294px; --rot: -28deg; --delay: -0.72s; --dur: 2.10s; --w: 70px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(8)  { --offset: 210px; --start-y: 0px;  --tx: -565px; --ty: 286px; --rot: -27deg; --delay: -0.84s; --dur: 2.18s; --w: 72px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(9)  { --offset: 240px; --start-y: 0px;  --tx: -558px; --ty: 280px; --rot: -26deg; --delay: -0.96s; --dur: 2.08s; --w: 74px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(10) { --offset: 270px; --start-y: 0px;  --tx: -548px; --ty: 274px; --rot: -25deg; --delay: -1.08s; --dur: 2.16s; --w: 76px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(11) { --offset: 300px; --start-y: 1px;  --tx: -538px; --ty: 268px; --rot: -24deg; --delay: -1.20s; --dur: 2.12s; --w: 78px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(12) { --offset: 330px; --start-y: 1px;  --tx: -528px; --ty: 262px; --rot: -23deg; --delay: -1.32s; --dur: 2.20s; --w: 78px; --h: 18px; }
.hero__air-particles .air-pulse:nth-child(13) { --offset: 360px; --start-y: 2px;  --tx: -516px; --ty: 256px; --rot: -22deg; --delay: -1.44s; --dur: 2.10s; --w: 74px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(14) { --offset: 390px; --start-y: 2px;  --tx: -502px; --ty: 250px; --rot: -21deg; --delay: -1.56s; --dur: 2.18s; --w: 70px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(15) { --offset: 420px; --start-y: 3px;  --tx: -488px; --ty: 244px; --rot: -20deg; --delay: -1.68s; --dur: 2.12s; --w: 66px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(16) { --offset: 450px; --start-y: 4px;  --tx: -470px; --ty: 238px; --rot: -19deg; --delay: -1.80s; --dur: 2.20s; --w: 62px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(17) { --offset: 480px; --start-y: 5px;  --tx: -452px; --ty: 232px; --rot: -18deg; --delay: -1.92s; --dur: 2.14s; --w: 58px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(18) { --offset: 505px; --start-y: 6px;  --tx: -434px; --ty: 226px; --rot: -17deg; --delay: -2.04s; --dur: 2.18s; --w: 54px; --h: 16px; }

@keyframes acVentPulseV13 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--rot)) scale(.32);
  }
  10% {
    opacity: .98;
  }
  62% {
    opacity: .68;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot)) scale(1.14);
  }
}

@media (max-width: 1280px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 8.4% - 450px + var(--offset) * .88) !important;
  }
}
@media (max-width: 1100px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 3.4% - 360px + var(--offset) * .70) !important;
    top: calc(264px + var(--start-y)) !important;
  }
}
@media (max-width: 720px) {
  .hero__air-particles .air-pulse {
    left: calc(100% + 8% - 255px + var(--offset) * .50) !important;
    top: calc(290px + var(--start-y)) !important;
    width: calc(var(--w) * .62) !important;
    height: calc(var(--h) * .62) !important;
  }
}

.hero__air-particles .air-pulse {
  left: calc(100% - 11.0% - 455px + var(--offset, 0px)) !important;
  top: calc(247px + var(--start-y, 0px)) !important;
  mix-blend-mode: screen !important;
}
.hero__air-particles .air-pulse:nth-child(1)  { --offset: 0px;   --start-y: 2px; --tx: -632px; --ty: 374px; --rot: -36deg; --delay: -0.00s; --dur: 2.10s; --w: 58px; --h: 15px; }
.hero__air-particles .air-pulse:nth-child(2)  { --offset: 26px;  --start-y: 2px; --tx: -625px; --ty: 366px; --rot: -35deg; --delay: -0.12s; --dur: 2.18s; --w: 60px; --h: 15px; }
.hero__air-particles .air-pulse:nth-child(3)  { --offset: 52px;  --start-y: 2px; --tx: -618px; --ty: 358px; --rot: -34deg; --delay: -0.24s; --dur: 2.08s; --w: 62px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(4)  { --offset: 78px;  --start-y: 2px; --tx: -612px; --ty: 350px; --rot: -33deg; --delay: -0.36s; --dur: 2.16s; --w: 64px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(5)  { --offset: 104px; --start-y: 2px; --tx: -606px; --ty: 342px; --rot: -32deg; --delay: -0.48s; --dur: 2.12s; --w: 66px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(6)  { --offset: 130px; --start-y: 1px; --tx: -598px; --ty: 334px; --rot: -31deg; --delay: -0.60s; --dur: 2.22s; --w: 68px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(7)  { --offset: 156px; --start-y: 1px; --tx: -590px; --ty: 326px; --rot: -30deg; --delay: -0.72s; --dur: 2.10s; --w: 70px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(8)  { --offset: 182px; --start-y: 1px; --tx: -582px; --ty: 318px; --rot: -29deg; --delay: -0.84s; --dur: 2.18s; --w: 72px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(9)  { --offset: 208px; --start-y: 1px; --tx: -572px; --ty: 310px; --rot: -28deg; --delay: -0.96s; --dur: 2.08s; --w: 74px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(10) { --offset: 234px; --start-y: 1px; --tx: -562px; --ty: 302px; --rot: -27deg; --delay: -1.08s; --dur: 2.16s; --w: 76px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(11) { --offset: 260px; --start-y: 1px; --tx: -550px; --ty: 294px; --rot: -26deg; --delay: -1.20s; --dur: 2.12s; --w: 76px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(12) { --offset: 286px; --start-y: 1px; --tx: -538px; --ty: 286px; --rot: -25deg; --delay: -1.32s; --dur: 2.20s; --w: 74px; --h: 17px; }
.hero__air-particles .air-pulse:nth-child(13) { --offset: 312px; --start-y: 2px; --tx: -524px; --ty: 278px; --rot: -24deg; --delay: -1.44s; --dur: 2.10s; --w: 70px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(14) { --offset: 338px; --start-y: 2px; --tx: -510px; --ty: 270px; --rot: -23deg; --delay: -1.56s; --dur: 2.18s; --w: 68px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(15) { --offset: 364px; --start-y: 3px; --tx: -494px; --ty: 264px; --rot: -22deg; --delay: -1.68s; --dur: 2.12s; --w: 64px; --h: 16px; }
.hero__air-particles .air-pulse:nth-child(16) { --offset: 390px; --start-y: 3px; --tx: -476px; --ty: 258px; --rot: -21deg; --delay: -1.80s; --dur: 2.20s; --w: 60px; --h: 15px; }
.hero__air-particles .air-pulse:nth-child(17) { --offset: 420px; --start-y: 4px; --tx: -458px; --ty: 252px; --rot: -20deg; --delay: -1.92s; --dur: 2.14s; --w: 56px; --h: 15px; }
.hero__air-particles .air-pulse:nth-child(18) { --offset: 448px; --start-y: 4px; --tx: -440px; --ty: 246px; --rot: -19deg; --delay: -2.04s; --dur: 2.18s; --w: 52px; --h: 15px; }

@media (max-width: 1280px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 9.0% - 405px + var(--offset) * .82) !important;
    top: calc(245px + var(--start-y)) !important;
  }
}
@media (max-width: 1100px) {
  .hero__air-particles .air-pulse {
    left: calc(100% - 4.0% - 320px + var(--offset) * .65) !important;
    top: calc(236px + var(--start-y)) !important;
  }
}
@media (max-width: 720px) {
  .hero__air-particles .air-pulse {
    left: calc(100% + 7% - 228px + var(--offset) * .46) !important;
    top: calc(262px + var(--start-y)) !important;
  }
}

.hero-air-svg {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  overflow: hidden !important;
  mix-blend-mode: screen !important;
  z-index: 4 !important;
}
.hero__air-particles {
  display: none !important;
}
.hero__air-source {
  right: 10.8% !important;
  top: 259px !important;
  width: 455px !important;
  height: 9px !important;
  transform: rotate(-5.1deg) !important;
  background: linear-gradient(90deg,
    rgba(205,237,255,0) 0%,
    rgba(218,243,255,.16) 8%,
    rgba(255,255,255,.52) 22%,
    rgba(255,255,255,.70) 50%,
    rgba(255,255,255,.52) 78%,
    rgba(218,243,255,.16) 92%,
    rgba(205,237,255,0) 100%) !important;
  filter: blur(5px) !important;
  opacity: .66 !important;
  animation: ventLinePulse 2.2s ease-in-out infinite !important;
}
.hero__air-source::before,
.hero__air-source::after {
  display: none !important;
}
.hero__air-haze--1,
.hero__air-haze--2 {
  opacity: .04 !important;
}
.air-origin-glow path {
  fill: none;
  stroke: rgba(210, 242, 255, .40);
  stroke-width: 22;
  stroke-linecap: round;
  animation: originGlowPulse 2.6s ease-in-out infinite;
}
.air-moving-pulse {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.air-moving-pulse:nth-child(odd) {
  filter: saturate(115%);
}
@keyframes originGlowPulse {
  0%, 100% { opacity: .34; stroke-width: 16; }
  50% { opacity: .62; stroke-width: 24; }
}
@keyframes ventLinePulse {
  0%, 100% { opacity: .50; filter: blur(5px); }
  50% { opacity: .78; filter: blur(6px); }
}

@media (max-width: 1280px) {
  .hero__air-source {
    right: 8.8% !important;
    top: 257px !important;
    width: 405px !important;
  }
}
@media (max-width: 1100px) {
  .hero__air-source {
    right: 4.0% !important;
    top: 244px !important;
    width: 320px !important;
  }
}
@media (max-width: 720px) {
  .hero__air-source {
    right: -7% !important;
    top: 270px !important;
    width: 230px !important;
    opacity: .48 !important;
  }
  .hero-air-svg {
    opacity: .72 !important;
  }
}

.showcase-single {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #eef3fb;
  box-shadow: 0 18px 40px rgba(14, 35, 74, .10);
}
.showcase-single img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.comparison {
  background: #111927;
}
.comparison__img {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.comparison__divider {
  width: 3px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 0 0 1px rgba(7, 17, 35, .06), 0 10px 18px rgba(8, 24, 48, .10);
}
.comparison__handle {
  width: 54px;
  height: 54px;
  box-shadow: 0 12px 26px rgba(13, 42, 79, 0.18);
}
.comparison__handle span {
  position: relative;
  width: 18px;
  height: 14px;
}
.comparison__handle span,
.comparison__handle span::before,
.comparison__handle span::after {
  border: 0 !important;
  content: "";
}
.comparison__handle span::before,
.comparison__handle span::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 3px solid #0b58c5 !important;
  border-right: 3px solid #0b58c5 !important;
}
.comparison__handle span::before {
  left: 0;
  transform: rotate(-135deg);
}
.comparison__handle span::after {
  right: 0;
  transform: rotate(45deg);
}
@media (max-width: 720px) {
  .comparison__handle {
    width: 50px;
    height: 50px;
  }
}

.contact-pill span svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-static {
  cursor: default;
}
