/* ==============================
   INDOOR PAGE
============================== */

.indoor-page {
  --indoor-border: rgba(255, 255, 255, 0.14);
  --indoor-text: rgba(255, 255, 255, 0.78);
  --indoor-muted: rgba(255, 255, 255, 0.56);

  background: var(--scheme-white-color);
  color: var(--scheme-white-color);
  overflow: hidden;
}

.indoor-page a {
  text-decoration: none;
}


/* ==============================
   HERO
============================== */

.indoor-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 50px;
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-deepblue-color) 64%, transparent),
      color-mix(in srgb, var(--scheme-deepblue-color) 68%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.hero.jpg") center center / cover no-repeat;
}

.indoor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

.indoor-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--scheme-white-color);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.indoor-hero__content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--indoor-text);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

/* ==============================
   INDOOR INTRO
============================== */

.indoor-intro {
  position: relative;
  padding: 90px 0;
  color: var(--scheme-black-color);
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-white-color) 75%, transparent),
      color-mix(in srgb, var(--scheme-white-color) 75%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.intro.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.indoor-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,113,235,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,113,235,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
}

.indoor-intro::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(0, 113, 235, .10);
  filter: blur(34px);
  pointer-events: none;
}

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

.indoor-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.indoor-intro__content {
  min-width: 0;
}

.indoor-intro h2 {
  max-width: 720px;
  margin: 0;
  color: var(--scheme-deepblue-color);
  font: 800 clamp(34px, 4vw, 58px)/1.02 var(--default-font);
  letter-spacing: -.05em;
}

.indoor-intro__content p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(0, 21, 20, .68);
  font: 500 17px/1.72 var(--default-font);
}


/* Right panel */

.indoor-intro__panel-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 26px;
  color: var(--scheme-white-color);
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 81, 48, .34), transparent 36%),
    linear-gradient(135deg, #061a35 0%, var(--scheme-blue-color) 100%);
  box-shadow: 0 18px 44px rgba(0, 113, 235, .20);
}

.indoor-intro__panel-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font: 800 12px/1 var(--default-font);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.indoor-intro__panel-head strong {
  display: block;
  color: var(--scheme-white-color);
  font: 800 clamp(24px, 2.8vw, 38px)/1.05 var(--default-font);
  letter-spacing: -.045em;
}

.accordeon-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.indoor-intro-feature {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px 24px 24px 82px;
  border: 1px solid 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(240,240,240,.96), rgba(240,240,240,.74));
  box-shadow:
    0 14px 38px rgba(7, 17, 31, .07),
    inset 0 0 0 1px rgba(0, 113, 235, .08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.indoor-intro-feature::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 113, 235, .08);
  pointer-events: none;
  transition: transform .25s ease, background-color .25s ease;
}

.indoor-intro-feature:nth-child(even)::after {
  background: rgba(252, 81, 48, .08);
}

.indoor-intro-feature:hover {
  transform: translateX(6px);
  border-color: rgba(0, 113, 235, 0.28);
  box-shadow: 0 18px 46px rgba(3, 26, 107, 0.1);
}

.indoor-intro-feature:hover::after {
  transform: scale(1.2);
}

.indoor-intro-feature__num {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--scheme-blue-color);
  background: rgba(0, 113, 235, .10);
  font: 800 13px/1 var(--default-font);
}

.indoor-intro-feature:nth-child(even) .indoor-intro-feature__num {
  color: var(--scheme-orange-color);
  background: rgba(252, 81, 48, .10);
}

.indoor-intro-feature h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--scheme-black-color);
  font: 800 22px/1.16 var(--default-font);
  letter-spacing: -.03em;
}

.indoor-intro-feature p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(0, 21, 20, .66);
  font: 500 15px/1.6 var(--default-font);
}


/* Responsive */

@media (max-width: 991px) {
  .indoor-intro {
    padding: 76px 0;
  }

  .indoor-intro__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .indoor-intro {
    padding: 60px 0;
  }

  .indoor-intro h2 {
    font-size: 34px;
  }

  .indoor-intro__content p {
    font-size: 15px;
  }

  .indoor-intro__panel-head {
    padding: 20px;
    border-radius: 22px;
  }

  .indoor-intro-feature {
    min-height: auto;
    padding: 78px 20px 22px;
    border-radius: 22px;
  }

  .indoor-intro-feature__num {
    left: 20px;
    top: 20px;
  }

  .indoor-intro-feature h3 {
    font-size: 20px;
  }

  .indoor-intro-feature p {
    font-size: 14px;
  }
}

/* ==============================
   INDOOR APPLICATIONS — BENTO
============================== */

.indoor-applications {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-deepblue-color) 64%, transparent),
      color-mix(in srgb, var(--scheme-deepblue-color) 68%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.bg.dark.01.jpg") center center / cover no-repeat;
}

.indoor-applications::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.indoor-applications::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(252, 81, 48, .14);
  filter: blur(38px);
  pointer-events: none;
}

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


/* Bento grid */

.indoor-applications__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 18px;
  grid-auto-flow: dense;
}

.indoor-app-card {
  --app-accent: var(--scheme-white-color);

  position: relative;
  display: block;
  overflow: hidden;
  grid-column: span 3;
  min-height: 230px;
  border-radius: 30px;
  color: var(--scheme-white-color);
  background: #05070d;
  isolation: isolate;

  box-shadow:
    0 20px 56px rgba(0, 0, 0, .26),
    inset 0 0 0 1px rgba(240, 240, 240, .08);

  transform: translateZ(0);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.indoor-app-card:nth-child(even) {
  --app-accent: var(--scheme-orange-color);
}

.indoor-app-card--hero {
  grid-column: span 6;
  grid-row: span 2;
}

.indoor-app-card--wide {
  grid-column: span 6;
}

.indoor-app-card img {
  position: absolute;
  inset: 0;
  z-index: -2;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  transform: scale(1.01);

  filter:
    saturate(.5)
    contrast(1.2);

  transition:
    transform .75s ease,
    filter .75s ease;
}

.indoor-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.60) 10%,
      rgba(0, 0, 0, 0) 100%
    );
  pointer-events: none;
}

.indoor-app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(240, 240, 240, .11),
    inset 0 1px 0 rgba(240, 240, 240, .10);
  pointer-events: none;
}

.indoor-app-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
}

.indoor-app-card:not(.indoor-app-card--hero) .indoor-app-card__content {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.indoor-app-card__content > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;

  color: rgba(240, 240, 240, .82);
  font: 800 11px/1 var(--default-font);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.indoor-app-card__content > span::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--app-accent);
  box-shadow: 0 0 18px var(--app-accent);
}

.indoor-app-card__content h3 {
  max-width: 100%;
  margin: 0;
  color: var(--scheme-white-color);
  font: 800 clamp(20px, 1.6vw, 28px)/1.08 var(--default-font);
  letter-spacing: -.035em;
  text-shadow: 0 5px 20px rgba(0, 0, 0, .46);
}

.indoor-app-card--hero .indoor-app-card__content h3 {
  max-width: 660px;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1;
}

.indoor-app-card__content p {
  max-width: 560px;
  margin: 11px 0 0;
  color: rgba(240, 240, 240, .76);
  font: 500 14px/1.5 var(--default-font);
}

.indoor-app-card:not(.indoor-app-card--hero) .indoor-app-card__content p {
  display: none;
}

.indoor-app-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 30px 82px rgba(240, 240, 240, .16),
    0 0 46px color-mix(in srgb, var(--app-accent) 34%, transparent),
    inset 0 0 0 1px rgba(240, 240, 240, .12);
}

.indoor-app-card:hover img {
  transform: scale(1.07);
  filter:
    saturate(1.08)
    contrast(1.06)
    brightness(1.10);
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0) 100%
    );
}


/* Responsive */

@media (max-width: 1199px) {
  .indoor-applications__grid {
    grid-auto-rows: 230px;
  }

  .indoor-app-card {
    grid-column: span 4;
  }

  .indoor-app-card--hero {
    grid-column: span 8;
    grid-row: span 2;
  }

  .indoor-app-card--wide {
    grid-column: span 8;
  }

  .indoor-app-card img {
    filter:
      saturate(1)
      contrast(1);
  }
}

@media (max-width: 991px) {
  .indoor-applications {
    padding: 76px 0;
  }

  .indoor-applications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .indoor-app-card,
  .indoor-app-card--hero,
  .indoor-app-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .indoor-app-card--hero {
    grid-column: span 2;
  }

  .indoor-app-card--hero .indoor-app-card__content h3 {
    font-size: clamp(28px, 5vw, 42px);
  }

  .indoor-app-card img {
    filter:
      saturate(1)
      contrast(1);
  }
}

@media (max-width: 767px) {
  .indoor-applications__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    gap: 14px;
  }

  .indoor-app-card,
  .indoor-app-card--hero,
  .indoor-app-card--wide {
    grid-column: span 1;
  }

  .indoor-app-card--hero .indoor-app-card__content h3 {
    font-size: 28px;
  }

  .indoor-app-card img {
    filter:
      saturate(1)
      contrast(1);
  }
}

@media (max-width: 575px) {
  .indoor-applications {
    padding: 60px 0;
  }

  .indoor-app-card {
    min-height: 280px;
    border-radius: 24px;
  }

  .indoor-app-card__content,
  .indoor-app-card:not(.indoor-app-card--hero) .indoor-app-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .indoor-app-card__content h3,
  .indoor-app-card--hero .indoor-app-card__content h3 {
    font-size: 25px;
    line-height: 1.05;
  }

  .indoor-app-card__content p {
    font-size: 13px;
  }

  .indoor-app-card img {
    filter:
      saturate(1)
      contrast(1);
  }
}


/* ==============================
   INDOOR PRODUCTS — LIGHT
============================== */

.indoor-products {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--scheme-black-color);
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-white-color) 44%, transparent),
      color-mix(in srgb, var(--scheme-white-color) 48%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.bg.light.01.jpg") center center / cover no-repeat;
}

.indoor-products::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,113,235,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,113,235,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 82%);
}

.indoor-products::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(252, 81, 48, .10);
  filter: blur(38px);
  pointer-events: none;
}

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

/* Grid */

.indoor-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.indoor-product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--lampro-border);
  border-radius: 28px;
  color: var(--scheme-black-color);
  background-color: color-mix(in srgb, var(--scheme-white-color) 68%, transparent);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background-color .28s ease;
}

.indoor-product-card--wide {
  grid-column: span 2;
  min-height: 300px;
}

.indoor-product-card::before,
.indoor-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: var(--card-position, center);
  background-size: var(--card-size, cover);
  background-repeat: no-repeat;
  transition:
    opacity .38s ease,
    transform .38s ease;
}

.indoor-product-card::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, 0.28) 0%,
      rgba(7, 17, 31, 0.52) 48%,
      rgba(7, 17, 31, 0.88) 100%
    ),
    var(--card-bg, linear-gradient(145deg, #0B1728, #07111F));
  opacity: 1;
  transform: scale(1);
}

.indoor-product-card::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.72) 0%,
      rgba(7, 17, 31, 0.38) 48%,
      rgba(240, 240, 240, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 17, 31, 0.38) 0%,
      rgba(7, 17, 31, 0.18) 34%,
      rgba(7, 17, 31, 0.46) 68%,
      rgba(7, 17, 31, 0.82) 100%
    ),
    radial-gradient(circle at 80% 20%, rgba(252, 81, 48, 0.28), transparent 34%),
    var(--card-bg-hover, var(--card-bg, linear-gradient(145deg, #f0f0f0, #cfd8e3)));
  opacity: 0;
  transform: scale(1.04);
}

.indoor-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 81, 48, 0.5);
  background-color: var(--scheme-white-color);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.indoor-product-card:hover::before {
  opacity: 0;
  transform: scale(1.04);
}

.indoor-product-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.indoor-product-card__label,
.indoor-product-card h3,
.indoor-product-card p {
  position: relative;
  z-index: 2;
}

.indoor-product-card__label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--scheme-blue-color) 16%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--scheme-white-color) 14%, transparent);
  color: color-mix(in srgb, var(--scheme-blue-color) 82%, transparent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}

.indoor-product-card:hover .indoor-product-card__label {
  color: var(--scheme-orange-color);
  background-color: color-mix(in srgb, var(--scheme-orange-color) 12%, transparent);
  border-color: color-mix(in srgb, var(--scheme-orange-color) 38%, transparent);
}

.indoor-product-card h3 {
  margin: 0;
  color: var(--scheme-white-color);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 28px color-mix(in srgb, var(--scheme-black-color) 52%, transparent);
  transition: color .25s ease, text-shadow .25s ease;
}

.indoor-product-card p {
  max-width: 92%;
  margin: 16px 0 0;
  color: color-mix(in srgb, var(--scheme-white-color) 84%, transparent);
  font-size: 15px;
  line-height: 1.6;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 10px 24px rgba(0, 0, 0, 0.45);
  transition: color .25s ease, text-shadow .25s ease;
}

.indoor-product-card:hover h3 {
  color: var(--scheme-white-color);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 12px 30px rgba(0, 0, 0, 0.65);
}

.indoor-product-card:hover p {
  color: color-mix(in srgb, var(--scheme-white-color) 94%, transparent);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 12px 30px rgba(0, 0, 0, 0.72);
}


/* Responsive */

@media (max-width: 1199px) {
  .indoor-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .indoor-products {
    padding: 76px 0;
  }

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

@media (max-width: 575px) {
  .indoor-products {
    padding: 60px 0;
  }

  .indoor-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .indoor-product-card {
    min-height: auto;
    border-radius: 24px;
  }

  .indoor-product-card__media {
    min-height: 145px;
    padding: 24px 20px 6px;
  }

  .indoor-product-card__media img {
    max-height: 110px;
  }

  .indoor-product-card__body {
    padding: 18px 20px 22px;
  }

  .indoor-product-card h3 {
    font-size: 22px;
  }

  .indoor-product-card p {
    font-size: 14px;
  }
}

/* ==============================
   INDOOR CTA — DARK
============================== */

.indoor-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-deepblue-color) 64%, transparent),
      color-mix(in srgb, var(--scheme-deepblue-color) 68%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.bg.dark.02.jpg") center center / cover no-repeat;
}

.indoor-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.indoor-cta::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 113, 235, .18);
  filter: blur(42px);
  pointer-events: none;
}

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

.indoor-cta__box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  min-height: 420px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 14%, rgba(252, 81, 48, .22), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(0, 113, 235, .28), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow:
    0 34px 90px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.indoor-cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.13), transparent 32%),
    radial-gradient(circle at 64% 50%, rgba(0, 113, 235, .14), transparent 36%);
}

.indoor-cta__box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,113,235,.20), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}


/* Content */

.indoor-cta__content,
.indoor-cta__side {
  position: relative;
  z-index: 1;
}

.indoor-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--scheme-white-color);
  font: 800 clamp(34px, 4.4vw, 64px)/1.02 var(--default-font);
  letter-spacing: -.055em;
}

.indoor-cta__content p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(240,240,240,.72);
  font: 500 17px/1.72 var(--default-font);
}

.indoor-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


/* Side */

.indoor-cta__side {
  display: grid;
  gap: 16px;
}

.indoor-cta__metric {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 81, 48, .22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow:
    0 20px 54px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(255,255,255,.10);
}

.indoor-cta__metric::before {
  content: "";
  position: absolute;
  right: -62px;
  top: -72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 113, 235, .22);
  filter: blur(10px);
  pointer-events: none;
}

.indoor-cta__metric strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--scheme-white-color);
  font: 800 clamp(42px, 5vw, 74px)/.92 var(--default-font);
  letter-spacing: -.06em;
}

.indoor-cta__metric span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  margin-top: 14px;
  color: rgba(240,240,240,.70);
  font: 500 15px/1.55 var(--default-font);
}

.indoor-cta__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.indoor-cta__list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.085);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.indoor-cta__list i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: var(--scheme-white-color);
  background: var(--scheme-blue-color);
  box-shadow: 0 0 18px rgba(0,113,235,.45);
  font-size: 16px;
}

.indoor-cta__list div:nth-child(even) i {
  background: var(--scheme-orange-color);
  box-shadow: 0 0 18px rgba(252,81,48,.42);
}

.indoor-cta__list span {
  color: rgba(240,240,240,.78);
  font: 700 13px/1.35 var(--default-font);
}


/* Responsive */

@media (max-width: 991px) {
  .indoor-cta {
    padding: 76px 0;
  }

  .indoor-cta__box {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .indoor-cta__metric strong {
    font-size: clamp(44px, 9vw, 72px);
  }
}

@media (max-width: 575px) {
  .indoor-cta {
    padding: 60px 0;
  }

  .indoor-cta__box {
    padding: 28px 20px;
    border-radius: 30px;
  }

  .indoor-cta h2 {
    font-size: 34px;
  }

  .indoor-cta__content p {
    font-size: 15px;
  }

  .indoor-cta__actions {
    flex-direction: column;
  }

  .indoor-cta__actions .uled-btn {
    width: 100%;
  }

  .indoor-cta__metric {
    padding: 24px;
    border-radius: 24px;
  }

  .indoor-cta__list {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   INDOOR PROCESS — DARK
============================== */

.indoor-process {
  position: relative;
  overflow: clip;
  padding: 100px 0;
  color: var(--scheme-white-color);
  background:
    linear-gradient(
      color-mix(in srgb, var(--scheme-deepblue-color) 64%, transparent),
      color-mix(in srgb, var(--scheme-deepblue-color) 68%, transparent)
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 113, 235, .12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(252, 81, 48, .10), transparent 16%),
    url("/assets/mine.gmg/imgs/indoor/indoor.bg.dark.03.jpg") center center / cover no-repeat;
}

.indoor-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.indoor-process::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(0, 113, 235, .16);
  filter: blur(42px);
  pointer-events: none;
}

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


/* Layout */

.indoor-process__layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: start;
}

.indoor-process__content {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
  min-width: 0;
}

.indoor-process h2 {
  max-width: 760px;
  margin: 0;
  color: var(--scheme-white-color);
  font: 800 clamp(34px, 4.4vw, 64px)/1.02 var(--default-font);
  letter-spacing: -.055em;
}

.indoor-process__content p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(240, 240, 240, .72);
  font: 500 17px/1.72 var(--default-font);
}

.indoor-process__content .uled-btn {
  margin-top: 30px;
}


/* Steps */

.indoor-process__steps {
  position: relative;
  display: grid;
  gap: 16px;
}

.indoor-process__steps::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 113, 235, .0),
      rgba(0, 113, 235, .42),
      rgba(252, 81, 48, .34),
      rgba(252, 81, 48, .0)
    );
  pointer-events: none;
}

.indoor-process-step {
  --step-accent: var(--scheme-blue-color);

  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  min-height: 138px;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035)),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    0 18px 54px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.indoor-process-step:nth-child(even) {
  --step-accent: var(--scheme-orange-color);
}

.indoor-process-step::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -86px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--step-accent) 16%, transparent);
  filter: blur(6px);
  pointer-events: none;
  transition: transform .3s ease;
}

.indoor-process-step::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(
      90deg,
      var(--step-accent),
      transparent 70%
    );
  opacity: .7;
  pointer-events: none;
}

.indoor-process-step--accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 81, 48, .18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(0, 113, 235, .16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border-color: rgba(255,255,255,.13);
}

.indoor-process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 26px 72px rgba(0,0,0,.34),
    0 0 42px color-mix(in srgb, var(--step-accent) 18%, transparent),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.indoor-process-step:hover::before {
  transform: scale(1.18);
}

.indoor-process-step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 21px;
  color: var(--scheme-white-color);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 36%),
    var(--step-accent);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--step-accent) 46%, transparent),
    inset 0 1px 0 rgba(255,255,255,.20);
  font: 800 16px/1 var(--default-font);
  letter-spacing: -.02em;
}

.indoor-process-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--scheme-white-color);
  font: 800 clamp(22px, 2vw, 30px)/1.08 var(--default-font);
  letter-spacing: -.035em;
}

.indoor-process-step p {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  color: rgba(240,240,240,.70);
  font: 500 15px/1.62 var(--default-font);
}


/* Responsive */

@media (max-width: 991px) {
  .indoor-process {
    padding: 76px 0;
  }

  .indoor-process__layout {
    grid-template-columns: 1fr;
  }

  .indoor-process__content {
    position: relative;
    top: auto;
  }

  .indoor-process__steps::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .indoor-process {
    padding: 60px 0;
  }

  .indoor-process h2 {
    font-size: 34px;
  }

  .indoor-process__content p {
    font-size: 15px;
  }

  .indoor-process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .indoor-process-step__num {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 14px;
  }

  .indoor-process-step h3 {
    font-size: 22px;
  }

  .indoor-process-step p {
    font-size: 14px;
  }
}
