.rd-hero-copy {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 150px 20px 70px;
    color: #fff;
    text-align: center;
    direction: rtl;
    font-family: "Rubik", "Heebo", Arial, sans-serif;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-sizing: border-box;
    transform: translateY(34px);
  }

  .rd-hero-title {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(92px, 15vw, 250px);
    font-weight: 300;
    line-height: .78;
    letter-spacing: 0;
    text-align: center;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,.45));
    box-sizing: border-box;
  }

  .rd-hero-title span,
  .rd-hero-title strong {
    display: block;
    max-width: 100%;
  }

  .rd-hero-title strong {
    color: rgba(255,255,255,.98);
    font-weight: 950;
    text-shadow:
      0 0 22px rgba(255,255,255,.16),
      0 10px 30px rgba(0,0,0,.55);
  }

  .rd-hero-outline {
    color: rgba(255,255,255,.06);
    -webkit-text-stroke: 1.35px rgba(255,255,255,.9);
    text-stroke: 1.35px rgba(255,255,255,.9);
    text-shadow: 0 10px 30px rgba(0,0,0,.45);
  }

  .rd-hero-subline {
    width: min(720px, 100%);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, auto) minmax(24px, 1fr);
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
  }

  .rd-hero-line {
    min-width: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.75),
      transparent
    );
  }

  .rd-hero-subline p {
    max-width: 100%;
    margin: 0;
    padding: 12px 24px;
    color: rgba(255,255,255,.94);
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 500;
    line-height: 1.45;
    white-space: normal;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.2),
      0 12px 34px rgba(0,0,0,.34),
      0 0 40px rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-shadow: 0 4px 14px rgba(0,0,0,.72);
    box-sizing: border-box;
  }

  @media (max-width: 767px) {
    .rd-hero-copy {
      padding: 120px 12px 50px;
      transform: translateY(20px);
    }

    .rd-hero-title {
      font-size: clamp(64px, 24vw, 116px);
      line-height: .86;
    }

    .rd-hero-outline {
      -webkit-text-stroke-width: 1px;
      text-stroke-width: 1px;
    }

    .rd-hero-subline {
      width: 100%;
      margin-top: 24px;
      grid-template-columns: 1fr;
    }

    .rd-hero-line {
      display: none;
    }

    .rd-hero-subline p {
      width: 100%;
      padding: 11px 16px;
      border-radius: 18px;
    }
  }
.rd-running-text {
    width: 100%;
    overflow: hidden;
   
    color: #fff;
    font-family: "Rubik", "Heebo", Arial, sans-serif;
    font-size: clamp(38px, 7vw, 120px);
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    padding: 18px 0;
    direction: ltr;
  }

  .rd-running-track {
    display: flex;
    width: max-content;
    animation: rd-running-text 22s linear infinite;
  }

  .rd-running-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 120px;
    flex: 0 0 auto;
  }

  .rd-running-item strong {
    font-weight: 900;
  }

  .rd-running-item span {
    font-weight: 300;
  }

  @keyframes rd-running-text {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }
@media (min-width: 768px) {
  .rd-mobile-hero {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .rd-mobile-hero {
    --rd-header-height: 76px;
    --rd-marquee-height: 118px;

    width: 100%;
    min-height: calc(100svh - var(--rd-header-height));
    display: flex;
    flex-direction: column;
    padding: var(--rd-header-height) 0 0;
    margin: 0;
    overflow: hidden;
    direction: rtl;
    font-family: "Heebo", Arial, sans-serif;
    background: #000 !important;
  }

  .rd-mobile-hero-image {
    position: relative;
    width: 100%;
    height: calc(100svh - var(--rd-header-height) - var(--rd-marquee-height));
    min-height: 520px;
    overflow: hidden;
    background: #000 !important;
  }

  .rd-mobile-hero-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) brightness(.84);
  }

  .rd-mobile-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,0) 36%,
        rgba(0,0,0,.22) 60%,
        rgba(0,0,0,.72) 86%,
        #000 100%
      ),
      radial-gradient(
        circle at 50% 42%,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.32) 100%
      );
  }

  .rd-mobile-hero-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 34px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
  }

  .rd-mobile-hero-content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(48px, 15vw, 74px);
    font-weight: 950;
    line-height: .9;
    letter-spacing: 0;
    text-shadow: 0 10px 34px rgba(0,0,0,.8);
  }

  .rd-mobile-hero-content h1 span {
    display: block;
    color: #fff;
  }

  .rd-mobile-hero-pill {
    width: min(86vw, 520px);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    color: rgba(255,255,255,.9);
    font-size: clamp(18px, 4.7vw, 25px);
    font-weight: 800;
    line-height: 1.25;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 18px 44px rgba(0,0,0,.38);
  }

  .rd-mobile-love-marquee {
    position: relative;
    z-index: 3;
    width: 100%;
    height: var(--rd-marquee-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    direction: ltr;
    margin-top: 0px;
    background:
      radial-gradient(circle at 68% 0%, rgba(77,129,179,.10), transparent 38%),
      linear-gradient(
        180deg,
        #000 0%,
        #070707 45%,
        #101010 78%,
        #131313 100%
      ) !important;
  }

  .rd-mobile-love-track {
    display: flex;
    width: max-content;
    gap: 46px;
    animation: rdMobileLoveMarquee 18s linear infinite;
    will-change: transform;
  }

  .rd-mobile-love-track span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.92);
    font-size: clamp(52px, 16vw, 84px);
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0;
  }

  .rd-mobile-love-track strong {
    color: #fff;
    font-weight: 950;
  }

  @keyframes rdMobileLoveMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-33.333%);
    }
  }
}

.rd-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 0;
  direction: rtl;
}

.rd-divider span {
  position: relative;
  width: min(620px, 78vw);
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.18) 18%,
    rgba(77,129,179,.72) 50%,
    rgba(255,255,255,.18) 82%,
    transparent 100%
  );
}

.rd-divider span::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 170px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: rgba(77,129,179,.42);
  filter: blur(18px);
  border-radius: 999px;
}

.rd-divider span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #d8e8f8;
  box-shadow:
    -18px 0 0 rgba(77,129,179,.7),
    18px 0 0 rgba(77,129,179,.7);
}




.rd-about-wrap {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 24px;
}

.rd-about-text {
  width: min(860px, 100%);
  margin: 0 auto;
  direction: rtl;
  text-align: center;
  font-family: "Rubik", "Heebo", Arial, sans-serif;
  color: rgba(255,255,255,.82);
}

.rd-about-text p {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0;
  text-shadow: 0 6px 22px rgba(0,0,0,.6);
}

.rd-about-text p + p {
  margin-top: 4px;
}

.rd-about-text .rd-about-lead {
  width: min(760px, 100%);
  margin: 0 auto 20px;
  color: #fff;
  font-size: clamp(25px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.35;
}

.rd-about-text::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 2px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.75),
    transparent
  );
}

@media (max-width: 767px) {
  .rd-about-wrap {
    padding: 18px;
  }

  .rd-about-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .rd-about-text .rd-about-lead {
    font-size: 24px;
  }
}
.rd-section-heading-mist {
  width: min(700px, 100%);
  margin: 28px auto 24px;
  direction: rtl;
  text-align: center;
  font-family: "Heebo", Arial, sans-serif;
  line-height: .9;
  pointer-events: none;
}

.rd-section-heading-mist span,
.rd-section-heading-mist strong {
  display: block;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(76px, 9vw, 148px);
  font-weight: 950;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.rd-section-heading-mist span {
  color: #fff;
  text-shadow:
    0 12px 34px rgba(0,0,0,.72),
    0 0 18px rgba(255,255,255,.08);
}

.rd-section-heading-mist strong {
  color: transparent;
  background:
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #b9c7d2 28%,
      #657583 56%,
      #2d3944 78%,
      #dce6ee 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 14px 38px rgba(0,0,0,.8),
    0 0 28px rgba(120,145,165,.22);
}

@media (max-width: 767px) {
  .rd-section-heading-mist {
    margin: 18px auto 18px;
    line-height: .95;
  }

  .rd-section-heading-mist span,
  .rd-section-heading-mist strong {
    font-size: clamp(58px, 18vw, 96px);
  }
}
.rd-master-slider {
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 1px 2px 56px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Rubik", "Heebo", Arial, sans-serif;
}

.rd-master-stage {
  position: relative;
  width: min(1040px, 100%);
  height: 300px;
  margin: 0 auto;
}

.rd-master-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
  transition: transform .45s ease, opacity .45s ease;
  filter: none;
}

.rd-master-card.is-active {
  width: 52%;
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.rd-master-card.is-prev {
  opacity: .34;
  z-index: 2;
  transform: translate(-150%, -50%) scale(.82);
}

.rd-master-card.is-next {
  opacity: .72;
  z-index: 3;
  transform: translate(54%, -50%) scale(.78);
}

.rd-master-video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #000;
  filter: grayscale(1) brightness(.42);
  transition: filter .45s ease;
}

.rd-master-card.is-active .rd-master-video {
  filter: grayscale(1) brightness(.88);
}

.rd-master-card.is-playing .rd-master-video {
  filter: none;
}

.rd-master-video-bg,
.rd-master-video-main {
  position: absolute;
  border: 0;
}

.rd-master-video-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.38);
  filter: blur(14px) grayscale(1) brightness(.58);
  opacity: .55;
  pointer-events: none;
}

.rd-master-video-main {
  top: 50%;
  left: 50%;
  width: 32%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.rd-master-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(.78);
  transition: opacity .25s ease;
  pointer-events: none;
}

.rd-master-card.is-playing .rd-master-cover {
  opacity: 0;
  pointer-events: none;
}

.rd-master-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 24px 70px rgba(0,0,0,.55);
  pointer-events: none;
}

.rd-master-toggle {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 52px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 15px;
  background: rgba(0,0,0,.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 30px rgba(0,0,0,.42);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.rd-master-toggle:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0,0,0,.8);
}

.rd-master-card.is-playing .rd-master-toggle {
  opacity: 1;
}

.rd-master-card.is-playing.is-control-hidden .rd-master-toggle {
  opacity: 0;
  pointer-events: none;
}

.rd-master-card.is-playing.is-control-visible .rd-master-toggle {
  opacity: 1;
  pointer-events: auto;
}

.rd-master-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.rd-master-icon-play {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
  margin-left: 2px;
}

.rd-master-icon-pause {
  width: 20px;
  height: 24px;
  display: none;
  background:
    linear-gradient(90deg, #fff 0 7px, transparent 7px 13px, #fff 13px 20px);
}

.rd-master-card.is-playing .rd-master-icon-play {
  display: none;
}

.rd-master-card.is-playing .rd-master-icon-pause {
  display: block;
}

.rd-master-title {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -32px;
  width: min(320px, 80%);
  min-height: 62px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  background-color: #4d81b3;
  -webkit-mask-image: url("../images/brush.svg");
  mask-image: url("../images/brush.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}

.rd-master-card.rd-brush-blue .rd-master-title {
  background-color: #4d81b3;
  color: #fff;
}

.rd-master-card.rd-brush-gold .rd-master-title {
  background-color: #f6cb64;
  color: #111;
}

.rd-master-card.rd-brush-green .rd-master-title {
  background-color: #58b984;
  color: #fff;
}

.rd-master-card:not(.is-active) .rd-master-title {
  display: none;
}

.rd-master-arrow {
  position: relative;
  z-index: 10;
  width: 56px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  font-size: 78px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .rd-master-slider {
    min-height: 360px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
    padding: 4px 10px 54px;
  }

  .rd-master-stage {
    height: 250px;
  }

  .rd-master-card,
  .rd-master-card.is-prev,
  .rd-master-card.is-next {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
  }

  .rd-master-card.is-active {
    width: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .rd-master-video-main {
    width: 42%;
  }

  .rd-master-title {
    width: min(280px, 84%);
    min-height: 56px;
    bottom: -28px;
    font-size: 30px;
  }

  .rd-master-arrow {
    width: 40px;
    height: 60px;
    font-size: 58px;
  }
}
.rd-section-heading {
  width: min(700px, 100%);
  margin: 28px auto 24px;
  direction: rtl;
  text-align: center;
  font-family: "Heebo", Arial, sans-serif;
  line-height: .9;
  pointer-events: none;
}

.rd-section-heading span,
.rd-section-heading strong {
  display: block;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(76px, 9vw, 148px);
  font-weight: 950;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.rd-section-heading span {
  color: #fff;
  text-shadow:
    0 12px 34px rgba(0,0,0,.72),
    0 0 18px rgba(255,255,255,.08);
}

.rd-section-heading strong {
  color: transparent;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.72) 34%,
      rgba(255,255,255,.44) 68%,
      rgba(255,255,255,.88) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 12px 34px rgba(0,0,0,.72),
    0 0 18px rgba(255,255,255,.12);
}

@media (max-width: 767px) {
  .rd-section-heading {
    margin: 18px auto 18px;
    line-height: .95;
  }

  .rd-section-heading span,
  .rd-section-heading strong {
    font-size: clamp(58px, 18vw, 96px);
  }
}
.rd-master-slider {
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 1px 2px 56px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Rubik", "Heebo", Arial, sans-serif;
}

.rd-master-stage {
  position: relative;
  width: min(1040px, 100%);
  height: 300px;
  margin: 0 auto;
}

.rd-master-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
  transition: transform .45s ease, opacity .45s ease;
  filter: none;
}

.rd-master-card.is-active {
  width: 52%;
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.rd-master-card.is-prev {
  opacity: .34;
  z-index: 2;
  transform: translate(-150%, -50%) scale(.82);
}

.rd-master-card.is-next {
  opacity: .72;
  z-index: 3;
  transform: translate(54%, -50%) scale(.78);
}

.rd-master-video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #000;
  filter: grayscale(1) brightness(.42);
  transition: filter .45s ease;
}

.rd-master-card.is-active .rd-master-video {
  filter: grayscale(1) brightness(.88);
}

.rd-master-card.is-playing .rd-master-video {
  filter: none;
}

.rd-master-video-bg,
.rd-master-video-main {
  position: absolute;
  border: 0;
}

.rd-master-video-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.38);
  filter: blur(14px) grayscale(1) brightness(.58);
  opacity: .55;
  pointer-events: none;
}

.rd-master-video-main {
  top: 50%;
  left: 50%;
  width: 32%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.rd-master-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(.78);
  transition: opacity .25s ease;
  pointer-events: none;
}

.rd-master-card.is-playing .rd-master-cover {
  opacity: 0;
  pointer-events: none;
}

.rd-master-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 24px 70px rgba(0,0,0,.55);
  pointer-events: none;
}

.rd-master-toggle {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 52px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 15px;
  background: rgba(0,0,0,.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 30px rgba(0,0,0,.42);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.rd-master-toggle:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0,0,0,.8);
}

.rd-master-card.is-playing .rd-master-toggle {
  opacity: 1;
}

.rd-master-card.is-playing.is-control-hidden .rd-master-toggle {
  opacity: 0;
  pointer-events: none;
}

.rd-master-card.is-playing.is-control-visible .rd-master-toggle {
  opacity: 1;
  pointer-events: auto;
}

.rd-master-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.rd-master-icon-play {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
  margin-left: 2px;
}

.rd-master-icon-pause {
  width: 20px;
  height: 24px;
  display: none;
  background:
    linear-gradient(90deg, #fff 0 7px, transparent 7px 13px, #fff 13px 20px);
}

.rd-master-card.is-playing .rd-master-icon-play {
  display: none;
}

.rd-master-card.is-playing .rd-master-icon-pause {
  display: block;
}

.rd-master-title {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -32px;
  width: min(320px, 80%);
  min-height: 62px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  background-color: #4d81b3;
  -webkit-mask-image: url("../images/brush.svg");
  mask-image: url("../images/brush.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}

.rd-master-card.rd-brush-blue .rd-master-title {
  background-color: #4d81b3;
  color: #fff;
}

.rd-master-card.rd-brush-gold .rd-master-title {
  background-color: #f6cb64;
  color: #111;
}

.rd-master-card.rd-brush-green .rd-master-title {
  background-color: #58b984;
  color: #fff;
}

.rd-master-card:not(.is-active) .rd-master-title {
  display: none;
}

.rd-master-arrow {
  position: relative;
  z-index: 10;
  width: 56px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  font-size: 78px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .rd-master-slider {
    min-height: 360px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
    padding: 4px 10px 54px;
  }

  .rd-master-stage {
    height: 250px;
  }

  .rd-master-card,
  .rd-master-card.is-prev,
  .rd-master-card.is-next {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
  }

  .rd-master-card.is-active {
    width: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .rd-master-video-main {
    width: 42%;
  }

  .rd-master-title {
    width: min(280px, 84%);
    min-height: 56px;
    bottom: -28px;
    font-size: 30px;
  }

  .rd-master-arrow {
    width: 40px;
    height: 60px;
    font-size: 58px;
  }
}
.rd-videos-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #000 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.rd-videos-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 320px;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.55) 28%,
      #03070a 54%,
      #071018 78%,
      #091824 100%
    );
}
.rd-section-heading {
  width: min(700px, 100%);
  margin: 28px auto 24px;
  direction: rtl;
  text-align: center;
  font-family: "Heebo", Arial, sans-serif;
  line-height: .9;
  pointer-events: none;
}

.rd-section-heading span,
.rd-section-heading strong {
  display: block;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(76px, 9vw, 148px);
  font-weight: 950;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.rd-section-heading span {
  color: #fff;
  text-shadow:
    0 12px 34px rgba(0,0,0,.72),
    0 0 18px rgba(255,255,255,.08);
}

.rd-section-heading strong {
  color: transparent;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.72) 34%,
      rgba(255,255,255,.44) 68%,
      rgba(255,255,255,.88) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 12px 34px rgba(0,0,0,.72),
    0 0 18px rgba(255,255,255,.12);
}

@media (max-width: 767px) {
  .rd-section-heading {
    margin: 18px auto 18px;
    line-height: .95;
  }

  .rd-section-heading span,
  .rd-section-heading strong {
    font-size: clamp(58px, 18vw, 96px);
  }
}
.rd-contact-divider1 {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 0;
  direction: rtl;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #131313 0%,
      #131313 22%,
      #071018 72%,
      #091824 100%
    ) !important;
}

.rd-contact-divider1 span {
  position: relative;
  z-index: 2;
  width: min(620px, 78vw);
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.18) 18%,
    rgba(77,129,179,.72) 50%,
    rgba(255,255,255,.18) 82%,
    transparent 100%
  );
}

.rd-contact-divider1 span::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 170px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: rgba(77,129,179,.42);
  filter: blur(18px);
  border-radius: 999px;
}

.rd-contact-divider1 span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #d8e8f8;
  box-shadow:
    -18px 0 0 rgba(77,129,179,.7),
    18px 0 0 rgba(77,129,179,.7);
}

@media (max-width: 767px) {
  .rd-contact-divider {
    min-height: 140px;
    padding: 26px 0;
  }

  .rd-contact-divider1 span {
    width: min(460px, 82vw);
  }
}
.rd-videos-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #131313 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.rd-videos-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 420px;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.16) 22%,
      rgba(2,5,8,.38) 44%,
      rgba(5,12,18,.72) 68%,
      #091824 100%
    );
}
.rd-mission-split {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  direction: rtl;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(77,129,179,.12), transparent 32%),
    linear-gradient(
      180deg,
      #091824 0%,
      #071018 16%,
      #030609 48%,
      #080808 76%,
      #000 100%
    ) !important;
  font-family: "Heebo", Arial, sans-serif;
}

.rd-mission-split-inner {
  width: min(1180px, 100%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
}

.rd-mission-split-content {
  flex: 1 1 58%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: right;
  padding-right: clamp(22px, 4vw, 64px);
  box-sizing: border-box;
}

.rd-mission-split-media {
  flex: 0 0 38%;
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
}

.rd-mission-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.34)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.36));
}

.rd-mission-split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) brightness(.86);
}

.rd-mission-split-kicker {
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  font-weight: 800;
}

.rd-mission-split-content h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(0,0,0,.78);
}

.rd-mission-split-content h2 span {
  display: block;
  color: transparent;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.72) 34%,
      rgba(255,255,255,.44) 68%,
      rgba(255,255,255,.88) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-mission-split-text {
  max-width: 680px;
}

.rd-mission-split-text p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.68;
  text-shadow: 0 8px 26px rgba(0,0,0,.75);
}

.rd-mission-split-text p + p {
  margin-top: 13px;
}

.rd-mission-split-button {
  width: min(260px, 100%);
  min-height: 58px;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: #4d81b3;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none !important;
  -webkit-mask-image: url("../images/brush.svg");
  mask-image: url("../images/brush.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.rd-mission-split-button:hover {
  background: #6aa0d2;
}

@media (max-width: 767px) {
  .rd-mission-split {
    min-height: 100svh;
    padding: 36px 10px;
    background:
      radial-gradient(circle at 82% 22%, rgba(77,129,179,.11), transparent 34%),
      linear-gradient(
        180deg,
        #091824 0%,
        #071018 18%,
        #030609 54%,
        #050505 82%,
        #000 100%
      ) !important;
  }

  .rd-mission-split-inner {
    gap: 8px;
    align-items: stretch;
  }

  .rd-mission-split-content {
    flex: 1 1 58%;
    justify-content: center;
    text-align: right;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .rd-mission-split-media {
    flex: 0 0 39%;
    min-height: 620px;
    border-radius: 16px;
  }

  .rd-mission-split-kicker {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .rd-mission-split-content h2 {
    font-size: clamp(28px, 9vw, 46px);
    margin-bottom: 14px;
  }

  .rd-mission-split-text p {
    font-size: clamp(12px, 3.3vw, 15px);
    line-height: 1.52;
  }

  .rd-mission-split-text p + p {
    margin-top: 8px;
  }

  .rd-mission-split-button {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    font-size: 18px;
  }
}
.rd-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 0;
  direction: rtl;
}

.rd-divider span {
  position: relative;
  width: min(620px, 78vw);
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.18) 18%,
    rgba(77,129,179,.72) 50%,
    rgba(255,255,255,.18) 82%,
    transparent 100%
  );
}

.rd-divider span::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 170px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: rgba(77,129,179,.42);
  filter: blur(18px);
  border-radius: 999px;
}

.rd-divider span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #d8e8f8;
  box-shadow:
    -18px 0 0 rgba(77,129,179,.7),
    18px 0 0 rgba(77,129,179,.7);
}
.rd-blog-heading {
  width: 100%;
  text-align: center;
  direction: rtl;
  font-family: "Heebo", Arial, sans-serif;
  margin: 0 0 22px;
}

.rd-blog-heading span,
.rd-blog-heading strong {
  display: inline-block;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: 0;
}

.rd-blog-heading span {
  color: #fff;
}

.rd-blog-heading strong {
  margin-right: 12px;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.96) 0%,
    rgba(184,197,207,.88) 38%,
    rgba(115,128,138,.92) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 767px) {
  .rd-blog-heading span,
  .rd-blog-heading strong {
    display: block;
    font-size: clamp(44px, 14vw, 68px);
  }

  .rd-blog-heading strong {
    margin-right: 0;
    margin-top: 4px;
  }
}
.rd-posts-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  direction: rtl;
  font-family: "Heebo", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.04), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(77,129,179,.08), transparent 34%),
    linear-gradient(
      180deg,
      #000 0%,
      #050505 20%,
      #090909 50%,
      #070707 76%,
      #000 100%
    ) !important;
}

.rd-posts-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #000 0%,
      rgba(0,0,0,.72) 42%,
      rgba(0,0,0,0) 100%
    );
}

.rd-posts-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.52) 52%,
      #000 100%
    );
}

.rd-posts-track {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-post-card {
  position: absolute;
  width: 560px;
  max-width: 56vw;
  text-align: center;
  opacity: 0;
  transform: translateX(0) scale(.72);
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
  pointer-events: none;
}

.rd-post-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 4;
  pointer-events: auto;
}

.rd-post-card.is-prev {
  opacity: .28;
  transform: translateX(66%) scale(.72);
  z-index: 2;
  pointer-events: auto;
}

.rd-post-card.is-next {
  opacity: .28;
  transform: translateX(-66%) scale(.72);
  z-index: 2;
  pointer-events: auto;
}

.rd-post-image {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.rd-post-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(.82) saturate(.85);
}

.rd-post-card:not(.is-active) .rd-post-image img {
  filter: grayscale(1) brightness(.45);
}

.rd-post-title {
  margin: 24px 0 18px;
}

.rd-post-title a {
  color: #fff !important;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.08;
  text-decoration: none !important;
}

.rd-post-button {
  width: 240px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: #6f6f6f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  -webkit-mask-image: url("../images/brush.svg");
  mask-image: url("../images/brush.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.rd-post-button:hover {
  background: #4d81b3;
}

.rd-posts-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  font-size: 76px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.rd-posts-prev {
  right: clamp(18px, 7vw, 120px);
}

.rd-posts-next {
  left: clamp(18px, 7vw, 120px);
}

.rd-posts-arrow:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .rd-posts-slider {
    min-height: 470px;
    background:
      radial-gradient(circle at 50% 36%, rgba(255,255,255,.04), transparent 36%),
      radial-gradient(circle at 72% 18%, rgba(77,129,179,.07), transparent 34%),
      linear-gradient(
        180deg,
        #000 0%,
        #060606 45%,
        #000 100%
      ) !important;
  }

  .rd-posts-slider::before {
    height: 110px;
  }

  .rd-posts-slider::after {
    height: 130px;
  }

  .rd-posts-track {
    height: 390px;
  }

  .rd-post-card {
    width: 78vw;
    max-width: 78vw;
  }

  .rd-post-card.is-prev {
    transform: translateX(78%) scale(.72);
  }

  .rd-post-card.is-next {
    transform: translateX(-78%) scale(.72);
  }

  .rd-post-image {
    height: 190px;
    border-radius: 16px;
  }

  .rd-post-title a {
    font-size: 26px;
  }

  .rd-post-button {
    width: 210px;
    min-height: 52px;
    font-size: 19px;
  }

  .rd-posts-arrow {
    font-size: 62px;
  }

  .rd-posts-prev {
    right: 6px;
  }

  .rd-posts-next {
    left: 6px;
  }
}

.rd-master-card.is-playing.is-control-hidden .rd-master-toggle:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Homepage refresh — stage 1 (hero and social-proof bar). */
.jana-home .home-hero.jana-hero {
  width: 100%;
  min-height: 100svh;
  display: flex;
  margin: 0;
  padding: 0;
  background: #080808;
}

.jana-hero .jana-hero__frame {
  position: relative;
  width: 100%;
  max-width: none;
  height: max(720px, 100svh);
  min-height: 720px;
  margin: 0;
  background-image: url("../images/hero-auditorium.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.jana-hero .jana-hero__frame::after {
  display: none;
}

.jana-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 6, .96) 0%, rgba(4, 4, 6, .82) 32%, rgba(4, 4, 6, .48) 58%, rgba(4, 4, 6, .12) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, .3), transparent 35%, rgba(0, 0, 0, .52));
  pointer-events: none;
}

.jana-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.jana-hero__content {
  position: absolute;
  top: 51%;
  left: clamp(28px, 5.5vw, 110px);
  width: min(820px, 60vw);
  transform: translateY(-50%);
  color: #fff;
  text-align: right;
}

.jana-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(31px, 2.1vw, 36px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.jana-hero__title span,
.jana-hero__title strong {
  display: block;
}

@media (min-width: 1025px) {
  .jana-hero__title span,
  .jana-hero__title strong {
    white-space: nowrap;
  }
}

.jana-hero__title strong {
  margin-top: .16em;
  color: #f6cb64;
  font-weight: 900;
}

.jana-hero__subtitle {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.7;
}

.jana-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.jana-hero__cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: #fff !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.jana-hero__cta:hover,
.jana-hero__cta:focus-visible {
  transform: translateY(-2px);
}

.jana-hero__cta--primary {
  background: #4d81b3;
  box-shadow: 0 14px 34px rgba(39, 93, 145, .3);
}

.jana-hero__cta--primary:hover,
.jana-hero__cta--primary:focus-visible {
  background: #65a2da;
}

.jana-hero__cta--whatsapp {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}

.jana-hero__cta--whatsapp:hover,
.jana-hero__cta--whatsapp:focus-visible {
  border-color: #58d68d;
  background: rgba(16, 91, 54, .72);
}

.jana-stats {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #1a1a2e;
  box-shadow: 0 -14px 34px rgba(0, 0, 0, .28), 0 14px 34px rgba(0, 0, 0, .28);
}

.jana-stats__inner {
  width: min(1280px, 100%);
  min-height: 176px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin: 0 auto;
  padding: 24px clamp(22px, 4vw, 70px);
}

.jana-stat {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  text-align: center;
}

.jana-stat + .jana-stat::before {
  content: "";
  position: absolute;
  top: 24%;
  right: 0;
  width: 1px;
  height: 52%;
  background: rgba(255, 255, 255, .18);
}

.jana-stat__value {
  color: #b8860b;
  font-family: "Assistant", "Heebo", sans-serif;
  font-size: clamp(34px, 3.35vw, 52px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}

.jana-stat__label {
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .jana-hero .jana-hero__frame {
    background-position: 59% center;
  }

  .jana-hero__content {
    left: 28px;
    width: 61vw;
  }

  .jana-hero__title {
    font-size: clamp(34px, 4.2vw, 43px);
  }

  .jana-hero__subtitle {
    line-height: 1.55;
  }

  .jana-stats__inner {
    min-height: 160px;
    padding-inline: 18px;
  }

  .jana-stat {
    padding-inline: 12px;
  }
}

@media (max-width: 767px) {
  .jana-home .home-hero.jana-hero {
    min-height: 100svh;
    display: flex !important;
  }

  .jana-hero .jana-hero__frame {
    height: max(720px, 100svh);
    min-height: 720px;
    background-position: 66% center;
  }

  .jana-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .34) 30%, rgba(3, 4, 9, .94) 72%, #070812 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08));
  }

  .jana-hero__content {
    top: auto;
    right: 20px;
    bottom: 90px;
    left: 20px;
    width: auto;
    transform: none;
  }

  .jana-hero__title {
    font-size: clamp(33px, 9.7vw, 45px);
    line-height: 1.08;
  }

  .jana-hero__subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .jana-hero__subtitle br {
    display: none;
  }

  .jana-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .jana-hero__cta {
    width: 100%;
    min-height: 52px;
    padding: 11px 16px;
    font-size: 16px;
  }

  .jana-stats__inner {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .jana-stat {
    min-height: 122px;
    padding: 16px 8px;
  }

  .jana-stat + .jana-stat::before {
    display: none;
  }

  .jana-stat:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, .16);
  }

  .jana-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .jana-stat__value {
    font-size: clamp(29px, 9vw, 38px);
  }

  .jana-stat__label {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .jana-hero .jana-hero__frame {
    height: max(760px, 100svh);
    min-height: 760px;
  }

  .jana-hero__title {
    font-size: 31px;
  }
}

/* Stage 2: approved homepage narrative */
.jana-section-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.jana-section-header {
  max-width: 900px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.jana-section-header--center {
  margin-inline: auto;
  text-align: center;
}

.jana-section-eyebrow {
  margin: 0 0 14px;
  color: #f6cb64;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.jana-section-title {
  margin: 0;
  color: #fff;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.jana-section-intro {
  max-width: 790px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.75;
  text-wrap: balance;
}

.jana-about,
.jana-protocol,
.jana-audience,
.jana-paths,
.jana-testimonials {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  scroll-margin-top: var(--jana-header-height);
}

.jana-about {
  padding: clamp(92px, 9vw, 150px) 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(77, 129, 179, .2), transparent 31%),
    linear-gradient(145deg, #05070b 0%, #0a111a 46%, #060608 100%);
}

.jana-about::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 203, 100, .55), transparent);
}

.jana-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.jana-about__content {
  min-width: 0;
}

.jana-about__copy {
  max-width: 720px;
  margin-top: 32px;
}

.jana-about__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 400;
  line-height: 1.8;
}

.jana-about__copy p + p {
  margin-top: 18px;
}

.jana-about__portrait {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border: 1px solid rgba(246, 203, 100, .44);
  border-radius: 6px;
  background: #0b0d10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .52);
}

.jana-about__portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(77, 129, 179, .5);
  border-radius: 6px;
  pointer-events: none;
}

.jana-about__portrait::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 11, .7));
  pointer-events: none;
}

.jana-about__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  filter: saturate(.78) contrast(1.04);
}

.jana-achievements {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.jana-achievement {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-top-color: rgba(246, 203, 100, .68);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
  text-align: center;
}

.jana-achievement__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 203, 100, .34);
  border-radius: 50%;
  background: rgba(246, 203, 100, .07);
  font-size: 27px;
}

.jana-achievement h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.jana-achievement p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.45;
}

.jana-protocol {
  padding: clamp(92px, 9vw, 144px) 0;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(77, 129, 179, .2), transparent 38%),
    #1a1a2e;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.jana-protocol__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.jana-protocol-card {
  position: relative;
  min-height: 320px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 5px;
  background: linear-gradient(160deg, rgba(11, 15, 29, .97), rgba(6, 8, 17, .9));
  box-shadow: 0 24px 58px rgba(0, 0, 0, .23);
  overflow: hidden;
}

.jana-protocol-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 3px;
  background: #f6cb64;
  box-shadow: 0 0 24px rgba(246, 203, 100, .42);
}

.jana-protocol-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(77, 129, 179, .58);
  border-radius: 3px;
  background: rgba(77, 129, 179, .1);
  font-size: 32px;
}

.jana-protocol-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
}

.jana-protocol-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.72;
}

.jana-audience {
  padding: clamp(92px, 9vw, 145px) 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(246, 203, 100, .09), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(77, 129, 179, .13), transparent 31%),
    #050505;
}

.jana-audience__grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 115px);
}

.jana-audience__heading {
  position: sticky;
  top: calc(var(--jana-header-height) + 34px);
}

.jana-audience__content {
  min-width: 0;
}

.jana-audience__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jana-audience__list li {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 17px 62px 17px 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .035);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.jana-audience__list li::before {
  content: "✓";
  position: absolute;
  right: 20px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 203, 100, .6);
  border-radius: 50%;
  color: #f6cb64;
  font-size: 15px;
  font-weight: 900;
}

.jana-audience__note {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-right: 4px solid #f6cb64;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(90deg, transparent, rgba(246, 203, 100, .075));
  font-size: 17px;
  font-weight: 650;
  font-style: italic;
  line-height: 1.7;
}

.jana-paths {
  padding: clamp(92px, 9vw, 146px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 129, 179, .2), transparent 34%),
    linear-gradient(180deg, #111426, #090b14 64%, #050609);
}

.jana-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.jana-path-card {
  position: relative;
  min-width: 0;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 38px 30px 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(165deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.jana-path-card[id] {
  scroll-margin-top: calc(var(--jana-header-height) + 20px);
}

.jana-path-card--featured {
  border-color: rgba(246, 203, 100, .62);
  background: linear-gradient(165deg, rgba(246, 203, 100, .11), rgba(255, 255, 255, .028) 45%);
  transform: translateY(-12px);
}

.jana-path-card__number {
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(255, 255, 255, .12);
  font-family: "Assistant", "Heebo", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.jana-path-card h3 {
  position: relative;
  z-index: 1;
  max-width: 82%;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.65vw, 42px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.jana-path-card__icon {
  display: inline-block;
  margin-left: .12em;
  font-size: .72em;
  line-height: 1;
  vertical-align: .08em;
}

.jana-path-card__subtitle {
  min-height: 52px;
  margin: 12px 0 0;
  color: #f6cb64;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  unicode-bidi: plaintext;
}

.jana-path-card__description {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.65;
}

.jana-path-card__features {
  display: grid;
  gap: 12px;
  margin: 27px 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
  list-style: none;
}

.jana-path-card__features li {
  position: relative;
  padding-right: 25px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.55;
}

.jana-path-card__features li::before {
  content: "";
  position: absolute;
  top: .62em;
  right: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid #f6cb64;
  transform: rotate(45deg);
}

.jana-path-card__cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(77, 129, 179, .82);
  border-radius: 4px;
  color: #fff !important;
  background: #315f8a;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.jana-path-card__cta:hover,
.jana-path-card__cta:focus-visible {
  border-color: #6aa0d2;
  background: #4d81b3;
  transform: translateY(-2px);
}

.jana-testimonials {
  padding: clamp(92px, 9vw, 142px) 0 clamp(105px, 10vw, 160px);
  background:
    radial-gradient(circle at 50% 46%, rgba(77, 129, 179, .15), transparent 37%),
    linear-gradient(180deg, #050609, #020304 70%, #071018);
}

.jana-testimonials__carousel {
  position: relative;
  min-height: 460px;
  outline: none;
}

.jana-testimonials__carousel:focus-visible {
  outline: 3px solid #8fc5f5;
  outline-offset: 10px;
}

.jana-testimonials__stage {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
  transition: height .25s ease;
}

.jana-testimonial-card {
  position: absolute;
  top: 50%;
  right: 50%;
  width: min(690px, 66vw);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 50px 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, rgba(26, 26, 46, .98), rgba(8, 12, 21, .98));
  box-shadow: 0 36px 90px rgba(0, 0, 0, .48);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, -50%) scale(.76);
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
}

.jana-testimonial-card.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, -50%) scale(1);
}

.jana-testimonial-card.is-prev {
  z-index: 2;
  opacity: .18;
  pointer-events: auto;
  transform: translate(125%, -50%) scale(.78);
  filter: grayscale(1);
}

.jana-testimonial-card.is-next {
  z-index: 2;
  opacity: .18;
  pointer-events: auto;
  transform: translate(-25%, -50%) scale(.78);
  filter: grayscale(1);
}

.jana-testimonial-card__quote {
  position: absolute;
  top: 18px;
  right: 34px;
  color: #f6cb64;
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
  opacity: .9;
}

.jana-testimonial-card blockquote {
  margin: 20px 0 34px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 650;
  line-height: 1.65;
  text-align: center;
}

.jana-testimonial-card__footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.jana-testimonial-card__avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(246, 203, 100, .62);
  border-radius: 4px;
  color: #f6cb64;
  background:
    linear-gradient(135deg, rgba(246, 203, 100, .08), transparent 58%),
    rgba(255, 255, 255, .035);
  font-family: "Assistant", "Heebo", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.jana-testimonial-card__footer span strong,
.jana-testimonial-card__footer span small {
  display: block;
}

.jana-testimonial-card__footer span > strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.jana-testimonial-card__footer span > small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  line-height: 1.35;
}

.jana-testimonial-card__result {
  max-width: 180px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.jana-testimonial-card__result > strong {
  color: #f6cb64 !important;
  font-size: 14px !important;
}

.jana-testimonials__arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0 0 5px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 5, 9, .82);
  font-family: Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.jana-testimonials__arrow:hover,
.jana-testimonials__arrow:focus-visible {
  border-color: #f6cb64;
  background: #1a1a2e;
  transform: translateY(-50%) scale(1.05);
}

.jana-testimonials__prev {
  right: 0;
}

.jana-testimonials__next {
  left: 0;
}

.jana-testimonials__dots {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.jana-testimonials__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: transparent;
  transition: width .2s ease, border-radius .2s ease, background-color .2s ease;
}

.jana-testimonials__dot.is-active {
  width: 34px;
  border-color: #f6cb64;
  border-radius: 999px;
  background: #f6cb64;
}

@media (max-width: 1100px) {
  .jana-about__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr);
    gap: 44px;
  }

  .jana-achievements {
    grid-template-columns: 1fr;
  }

  .jana-achievement {
    min-height: 0;
  }

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

  .jana-protocol-card {
    min-height: 280px;
  }

  .jana-paths__grid {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .jana-path-card,
  .jana-path-card--featured {
    min-height: 0;
    transform: none;
  }

  .jana-path-card__subtitle {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .jana-section-shell {
    width: min(100% - 40px, 760px);
  }

  .jana-about__inner,
  .jana-audience__grid {
    grid-template-columns: 1fr;
  }

  .jana-about__portrait {
    width: min(430px, calc(100% - 28px));
  }

  .jana-audience__heading {
    position: static;
  }

  .jana-testimonial-card {
    width: min(650px, 78vw);
  }
}

@media (max-width: 767px) {
  .jana-section-shell {
    width: calc(100% - 32px);
  }

  .jana-section-header {
    margin-bottom: 38px;
  }

  .jana-section-title {
    font-size: clamp(34px, 10.4vw, 48px);
    line-height: 1.08;
  }

  .jana-section-intro {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.65;
  }

  .jana-about,
  .jana-protocol,
  .jana-audience,
  .jana-paths,
  .jana-testimonials {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .jana-about__inner {
    gap: 44px;
  }

  .jana-about__copy {
    margin-top: 24px;
  }

  .jana-about__copy p {
    font-size: 17px;
    line-height: 1.72;
  }

  .jana-about__portrait::before {
    inset: 10px -10px -10px 10px;
  }

  .jana-achievements {
    gap: 12px;
    margin-top: 0;
  }

  .jana-achievement {
    padding: 20px;
  }

  .jana-protocol__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .jana-protocol-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .jana-protocol-card__icon {
    margin-bottom: 22px;
  }

  .jana-audience__grid {
    gap: 36px;
  }

  .jana-audience__list li {
    min-height: 0;
    padding: 17px 54px 17px 16px;
    font-size: 17px;
  }

  .jana-audience__list li::before {
    right: 15px;
  }

  .jana-audience__note {
    padding: 20px;
    font-size: 16px;
  }

  .jana-path-card {
    padding: 32px 24px 24px;
  }

  .jana-path-card__number {
    top: 16px;
    left: 18px;
    font-size: 58px;
  }

  .jana-path-card h3 {
    max-width: 78%;
  }

  .jana-testimonials {
    padding-bottom: 92px;
  }

  .jana-testimonials__carousel {
    min-height: 560px;
  }

  .jana-testimonials__stage {
    height: 520px;
  }

  .jana-testimonial-card,
  .jana-testimonial-card.is-active {
    width: calc(100% - 20px);
    min-height: 450px;
    padding: 48px 28px 30px;
  }

  .jana-testimonial-card.is-prev,
  .jana-testimonial-card.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .jana-testimonial-card blockquote {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .jana-testimonial-card__footer {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .jana-testimonial-card__result {
    grid-column: 1 / -1;
    max-width: none;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-right: 0;
  }

  .jana-testimonials__arrow {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .jana-testimonials__prev {
    right: -5px;
  }

  .jana-testimonials__next {
    left: -5px;
  }

  .jana-testimonials__dots {
    margin-top: 10px;
  }
}

@media (max-width: 390px) {
  .jana-achievement {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jana-achievement__icon {
    margin-inline: auto;
  }

  .jana-path-card__cta {
    font-size: 14px;
  }

  .jana-testimonial-card,
  .jana-testimonial-card.is-active {
    min-height: 470px;
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jana-path-card__cta,
  .jana-testimonial-card,
  .jana-testimonials__arrow,
  .jana-testimonials__dot {
    transition: none;
  }

  .jana-testimonials__stage {
    transition: none;
  }
}
