/* Aeri slider — scoped Airlume/Aeri hero */
.section-hero-aeri {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #d7dce3;
  color: #050505;

  --ink: #050505;
  --mute: #1a1a1a;
  --glass: rgba(255, 255, 255, 0.9);
  --glass-edge: rgba(255, 255, 255, 0.95);
  --line: rgba(16, 17, 20, 0.1);
  --accent: #1f6f66;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Exo 2", system-ui, sans-serif;
  --body: "Exo 2", system-ui, sans-serif;
  --hero-font: "Exo 2", system-ui, sans-serif;
  --animate-duration: 0.85s;
  --text-shadow: none;
}

.section-hero-aeri,
.section-hero-aeri * {
  box-sizing: border-box;
}

/* Aeri — cleaning service hero · 4 feature cards */











.section-hero-aeri .stage {
  position: relative;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: none;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.section-hero-aeri .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  transform: none;
  transition: none;
}

.section-hero-aeri .hero {
  
}

.section-hero-aeri .top {
  position: relative;
  z-index: 1;
}

.section-hero-aeri .hero {
  position: relative;
  z-index: 2;
}

.section-hero-aeri .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 0 0 auto;
  padding: clamp(0.65rem, 1.6vh, 1.15rem) clamp(1.25rem, 4vw, 3.5rem);
}

.section-hero-aeri .brand {
  font-family: var(--hero-font);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.section-hero-aeri .nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  margin-right: 0.5rem;
}

.section-hero-aeri .nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.section-hero-aeri .nav a:hover {
  color: #000;
  opacity: 0.75;
}

.section-hero-aeri .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 0.2rem;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none !important;
  transform: skewX(-14deg);
  transition: transform 0.3s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.section-hero-aeri .ghost > span {
  display: inline-block;
  transform: skewX(14deg);
}

.section-hero-aeri .ghost:hover {
  transform: skewX(-14deg) translateY(-2px);
  background: #fff;
  border-color: rgba(16, 17, 20, 0.22);
  text-decoration: none !important;
}

.section-hero-aeri .hero {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0.75rem, 2.2vh, 1.75rem);
  padding: clamp(0.85rem, 2.2vh, 1.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(1.75rem, 5vh, 3rem);
  min-height: 0;
  max-height: 100%;
  overflow: visible;
}

.section-hero-aeri .hero-panel {
  position: relative;
  flex: 0 1 auto;
  max-width: 32rem;
  margin-top: clamp(1.75rem, 5.5vh, 3.5rem);
  margin-left: clamp(4rem, 8vw, 8.5rem);
  overflow: visible;
  z-index: 2;
}

.section-hero-aeri .hero-copy {
  --panel-skew: -12deg;
  position: relative;
  isolation: isolate;
  max-width: 100%;
  margin: 0;
  padding: clamp(0.7rem, 1.6vh, 1rem) 1.35rem clamp(0.8rem, 1.7vh, 1.1rem) 1.45rem;
  font-family: var(--hero-font);
  overflow: visible;
  --panel-outline: transparent;
  z-index: 2;
  transform: none;
}

/* Skew only the frosted chrome — copy + prop stay upright */
.section-hero-aeri .hero-copy::before {
  content: "";
  position: absolute;
  inset: -0.75rem -1.25rem -1rem -1.5rem;
  z-index: -1;
  border-radius: 0.45rem;
  border: 2px solid var(--panel-outline);
  background:
    linear-gradient(
      105deg,
      rgba(247, 248, 250, 0.92) 0%,
      rgba(247, 248, 250, 0.78) 55%,
      rgba(247, 248, 250, 0.28) 85%,
      rgba(247, 248, 250, 0) 100%
    );
  backdrop-filter: blur(12px);
  transform: skewX(var(--panel-skew));
  transform-origin: center center;
  pointer-events: none;
  transition: border-color 0.35s ease, transform 0.35s var(--ease);
}

.section-hero-aeri .hero-copy.animate__fadeOutLeft,
.section-hero-aeri .hero-copy.animate__fadeInRight,
.section-hero-aeri .hero-copy.animate__fadeInLeft,
.section-hero-aeri .hero-copy.animate__fadeInDown {
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.section-hero-aeri .hero-prop {
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(3.75rem, 7.5vw, 6rem);
  height: clamp(10rem, 26vh, 17rem);
  transform: translate(-72%, -50%);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 16px 28px rgba(16, 17, 20, 0.28));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), transform 0.35s var(--ease), left 0.35s var(--ease), top 0.35s var(--ease), right 0.35s var(--ease), bottom 0.35s var(--ease);
}

/* Home / default long mop — slightly inset from far left */
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="home"]) .hero-prop,
.section-hero-aeri .hero-panel:has(.hero-copy:not([data-prop])) .hero-prop {
  transform: translate(-72%, -50%);
}

.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="0"]) .hero-prop,
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="1"]) .hero-prop {
  left: 0;
  top: 50%;
  width: clamp(4rem, 8vw, 6rem);
  height: clamp(11rem, 28vh, 17rem);
  transform: translate(-78%, -50%);
}

/* 3rd feature — stick sits just past the right border of the big card */
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="2"]) .hero-prop {
  left: 100%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: clamp(10rem, 18vw, 14.5rem);
  height: clamp(11rem, 22vh, 15rem);
  transform: translate(calc(-38% - 5px), -50%);
}

.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="2"]) .hero-prop img {
  object-position: center center;
}

/* 4th feature — sponge perched on top of the big card, outside frosted layer */
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="3"]) {
  margin-top: clamp(2.75rem, 7vh, 4.25rem);
}
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="3"]) .hero-copy {
  padding-top: clamp(0.85rem, 2vh, 1.25rem);
}
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="3"]) .hero-prop {
  left: 50%;
  top: 0;
  width: clamp(7.5rem, 13vw, 10rem);
  height: clamp(6.5rem, 12vh, 8.75rem);
  transform: translate(-50%, -52%);
  z-index: 5;
  filter: drop-shadow(0 14px 24px rgba(16, 17, 20, 0.28));
}
.section-hero-aeri .hero-panel:has(.hero-copy[data-prop="3"]) .hero-prop img {
  object-fit: contain;
  object-position: center center;
  max-height: none;
  width: 100%;
  height: 100%;
}

.section-hero-aeri .hero-copy > * {
  position: relative;
  z-index: 1;
}

.section-hero-aeri .hero-prop img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.section-hero-aeri .eyebrow {
  margin: 0 0 clamp(0.45rem, 1.2vh, 0.75rem);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-hero-aeri .hero-copy h1 {
  margin: 0;
  font-family: var(--hero-font);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.6vh, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--panel-outline);
  transition: color 0.35s ease;
}

.section-hero-aeri .hero-copy[data-prop="home"] h1,
.section-hero-aeri .hero-copy:not([data-prop]) h1 {
  color: #000;
}

.section-hero-aeri .lede {
  margin: clamp(0.4rem, 1.1vh, 0.7rem) 0 0;
  max-width: 26rem;
  font-family: var(--hero-font);
  font-size: clamp(0.86rem, 1.55vh, 1rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-hero-aeri .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: clamp(0.55rem, 1.4vh, 0.9rem);
}

.section-hero-aeri .cta,
.section-hero-aeri .cta-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  padding: 0.85rem 1.4rem;
  border-radius: 0.2rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.015em;
  text-decoration: none !important;
  transform: skewX(-14deg);
  transition:
    transform 0.3s var(--ease),
    background 0.25s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.section-hero-aeri .cta > span,
.section-hero-aeri .cta-soft > span {
  display: inline-block;
  transform: skewX(14deg);
}

.section-hero-aeri .cta {
  background: var(--ink);
  color: #fff;
  border: 1.5px solid var(--ink);
}

.section-hero-aeri .cta:hover {
  transform: skewX(-14deg) translateY(-2px);
  text-decoration: none !important;
}

.section-hero-aeri .cta-soft {
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid var(--glass-edge);
  backdrop-filter: blur(10px);
  color: var(--ink);
}

.section-hero-aeri .hero-copy:not([data-prop="home"]) .cta-soft {
  background: var(--panel-outline);
  border-color: var(--panel-outline);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--panel-outline) 35%, transparent);
}

.section-hero-aeri .cta-soft:hover {
  transform: skewX(-14deg) translateY(-2px);
  background: #fff;
  text-decoration: none !important;
}

.section-hero-aeri .hero-copy:not([data-prop="home"]) .cta-soft:hover {
  background: color-mix(in srgb, var(--panel-outline) 88%, #000);
  border-color: color-mix(in srgb, var(--panel-outline) 88%, #000);
  color: #fff;
}

/* Bottom feature cards — sized to fit remaining 100vh */
.section-hero-aeri .feature-rail {
  width: min(100%, 92%);
  margin-inline: auto;
  margin-bottom: clamp(0.55rem, 1.6vh, 1.15rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
  padding: clamp(2.75rem, 6vh, 4rem) clamp(0.65rem, 1.5vw, 1rem) 0;
  font-family: "Exo 2", system-ui, sans-serif;
  overflow: visible;
  flex: 0 0 auto;
  max-height: min(44vh, 380px);
  transform: translateY(0.85rem);
  box-sizing: border-box;
}

.section-hero-aeri .feature-card {
  --card-skew: -12deg;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  min-height: clamp(8.5rem, 18vh, 11.5rem);
  padding: clamp(3.1rem, 6.5vh, 3.85rem) 1.15rem clamp(0.85rem, 1.7vh, 1.2rem);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  transition: transform 0.35s var(--ease);
  overflow: visible;
  cursor: pointer;
}

/* Skew only the card chrome — text/images stay upright */
.section-hero-aeri .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0.35rem;
  background: var(--glass);
  border: 2px solid var(--card-outline, var(--glass-edge));
  backdrop-filter: blur(16px);
  box-shadow:
    0 4px 10px rgba(16, 17, 20, 0.08),
    0 18px 40px rgba(16, 17, 20, 0.16),
    0 32px 64px var(--card-glow, rgba(16, 17, 20, 0.12)),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transform: skewX(var(--card-skew));
  transform-origin: center center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  pointer-events: none;
}

.section-hero-aeri .feature-card.is-active {
  transform: translateY(-6px);
}

.section-hero-aeri .feature-card.is-active::before {
  box-shadow:
    0 8px 16px rgba(16, 17, 20, 0.1),
    0 28px 56px rgba(16, 17, 20, 0.18),
    0 40px 80px var(--card-glow, rgba(16, 17, 20, 0.16)),
    0 0 0 3px var(--card-glow),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.section-hero-aeri .feature-card:nth-child(1) {
  --card-outline: #00a8c0;
  --card-glow: rgba(0, 168, 192, 0.28);
}

.section-hero-aeri .feature-card:nth-child(2) {
  --card-outline: #e8b400;
  --card-glow: rgba(232, 180, 0, 0.28);
}

.section-hero-aeri .feature-card:nth-child(3) {
  --card-outline: #e45448;
  --card-glow: rgba(228, 84, 72, 0.28);
}

.section-hero-aeri .feature-card:nth-child(4) {
  --card-outline: #9c48cc;
  --card-glow: rgba(156, 72, 204, 0.28);
}

.section-hero-aeri .feature-card:hover {
  transform: translateY(-4px);
}

.section-hero-aeri .feature-card:hover::before {
  box-shadow:
    0 8px 16px rgba(16, 17, 20, 0.1),
    0 28px 56px rgba(16, 17, 20, 0.18),
    0 40px 80px var(--card-glow, rgba(16, 17, 20, 0.16)),
    0 0 0 3px var(--card-glow),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.section-hero-aeri .feature-card:nth-child(1) .feature-index { color: #00a8c0; }
.section-hero-aeri .feature-card:nth-child(2) .feature-index { color: #c99600; }
.section-hero-aeri .feature-card:nth-child(3) .feature-index { color: #e45448; }
.section-hero-aeri .feature-card:nth-child(4) .feature-index { color: #9c48cc; }

.section-hero-aeri .feature-media {
  position: absolute;
  left: 50%;
  top: 0;
  width: 72%;
  max-width: clamp(5.5rem, 12vh, 9rem);
  height: clamp(4.75rem, 10.5vh, 7.5rem);
  transform: translate(-50%, -48%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(16, 17, 20, 0.22));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.section-hero-aeri .feature-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 8.5rem;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.55s var(--ease);
}

.section-hero-aeri .feature-card:hover .feature-media {
  transform: translate(-50%, -52%) scale(1.04);
}

.section-hero-aeri .feature-card:nth-child(1) .feature-media {
  width: 42%;
  max-width: 5.25rem;
  height: 7rem;
}

.section-hero-aeri .feature-card:nth-child(1) .feature-media img {
  max-height: 7rem;
}

.section-hero-aeri .feature-card:nth-child(2) .feature-media {
  width: 62%;
  max-width: 7rem;
  height: 6.75rem;
}

.section-hero-aeri .feature-card:nth-child(2) .feature-media img {
  max-height: 6.75rem;
}

.section-hero-aeri .feature-card:nth-child(3) .feature-media {
  width: 92%;
  max-width: 11.5rem;
  height: 7.5rem;
}

.section-hero-aeri .feature-card:nth-child(3) .feature-media img {
  max-height: 7.5rem;
}

.section-hero-aeri .feature-card:nth-child(4) .feature-media {
  width: 88%;
  max-width: 10.5rem;
  height: 7.75rem;
}

.section-hero-aeri .feature-card:nth-child(4) .feature-media img {
  max-height: 7.75rem;
}

.section-hero-aeri .feature-card h2,
.section-hero-aeri .feature-card p,
.section-hero-aeri .feature-index {
  position: relative;
  z-index: 3;
  padding-left: 0.15rem;
  transform: none;
}

.section-hero-aeri .feature-index {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.section-hero-aeri .feature-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.1vh, 1.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--card-outline);
}

.section-hero-aeri .feature-card p {
  margin: 0;
  font-size: clamp(0.8rem, 1.6vh, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Smooth animate.css entrance — 2 from left, 2 from right */
.section-hero-aeri .feature-card.animate__fadeInLeft,
.section-hero-aeri .feature-card.animate__fadeInRight {
  --animate-duration: 1.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.section-hero-aeri .hero-copy.animate__fadeInLeft,
.section-hero-aeri .hero-copy.animate__fadeInDown,
.section-hero-aeri .top.animate__fadeInDown {
  --animate-duration: 0.85s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 900px) {
  .section-hero-aeri .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-hero-aeri .hero-panel {
    max-width: min(32rem, 100%);
    margin-left: 2.75rem;
    margin-top: 1rem;
  }

  .section-hero-aeri .feature-rail {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .section-hero-aeri .feature-card {
    --card-skew: -7deg;
  }

  .section-hero-aeri .top {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  .section-hero-aeri .hero-panel {
    margin-left: 2.25rem;
    max-width: calc(100% - 0.25rem);
  }

  .section-hero-aeri .hero-copy {
    --panel-skew: -6deg;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-hero-aeri .hero-copy::before {
    inset: -0.45rem -0.65rem -0.55rem -0.75rem;
  }

  .section-hero-aeri .hero-prop,
  .section-hero-aeri .hero-panel:has(.hero-copy[data-prop="home"]) .hero-prop,
  .section-hero-aeri .hero-panel:has(.hero-copy:not([data-prop])) .hero-prop,
  .section-hero-aeri .hero-panel:has(.hero-copy[data-prop="0"]) .hero-prop,
  .section-hero-aeri .hero-panel:has(.hero-copy[data-prop="1"]) .hero-prop {
    width: 3.25rem;
    height: 9.5rem;
    transform: translate(-55%, -50%);
  }

  .section-hero-aeri .feature-rail {
    grid-template-columns: 1fr;
  }

  .section-hero-aeri .feature-card {
    min-height: 0;
  }

  .section-hero-aeri .brand {
    font-size: 1.35rem;
  }

  .section-hero-aeri .ghost {
    display: none;
  }
}

@media (min-width: 720px) {
  .section-hero-aeri .nav {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-hero-aeri .animate__animated {
    animation: none !important;
  }

  .section-hero-aeri .feature-card,
.section-hero-aeri .ghost,
.section-hero-aeri .cta,
.section-hero-aeri .cta-soft {
    transition: none !important;
  }
}


.section-hero-aeri .stage {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

/* Keep card/prop paint order without expanding page width */
.section-hero-aeri .hero,
.section-hero-aeri .hero-panel,
.section-hero-aeri .feature-rail {
  max-width: 100%;
  min-width: 0;
}

.section-hero-aeri .hero-copy,
.section-hero-aeri .hero-prop {
  overflow: visible !important;
}

/* Hero + About in normal document flow (no pin/parallax) */
.theme-editor-section:has(.section-hero-aeri):not(:has(.is-video-only)) {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.theme-editor-section:has(.section-hero-aeri):not(:has(.is-video-only)) > .section-hero-aeri {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  z-index: 1 !important;
  overflow: hidden !important;
  background: #050505 !important;
}

.theme-editor-section:has(.section-hero-aeri.is-video-only) {
  height: 80vh !important;
  height: 80dvh !important;
  min-height: 80vh !important;
  min-height: 80dvh !important;
  max-height: 80vh !important;
  max-height: 80dvh !important;
  border-bottom-left-radius: 2rem !important;
  border-bottom-right-radius: 2rem !important;
  overflow: hidden !important;
  background: transparent !important;
}

.section-hero-aeri.is-video-only {
  height: 80vh !important;
  height: 80dvh !important;
  min-height: 80vh !important;
  min-height: 80dvh !important;
  max-height: 80vh !important;
  max-height: 80dvh !important;
  border-bottom-left-radius: 2rem !important;
  border-bottom-right-radius: 2rem !important;
  overflow: hidden !important;
}

.section-hero-aeri.is-video-only .stage,
.section-hero-aeri.is-video-only .bg-video {
  min-height: 100% !important;
  max-height: 100% !important;
  border-bottom-left-radius: inherit !important;
  border-bottom-right-radius: inherit !important;
}

.theme-editor-section:has(.section-about-us-airlume) {
  position: relative !important;
  z-index: 2 !important;
  isolation: isolate;
  background: transparent !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  transform: none !important;
}

.section-hero-aeri button,
.section-hero-aeri a {
  font: inherit;
  color: inherit;
  text-decoration: none !important;
}

.section-hero-aeri a:hover,
.section-hero-aeri a:focus,
.section-hero-aeri a:active {
  text-decoration: none !important;
}

.section-hero-aeri button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}
