.scene1 .hd-stack,
  #badge {
    opacity: 1;
    visibility: visible;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: 'IRANSansX', sans-serif;
    font-weight: 500;
    color: #f7f7f7;
    background: #f4f4f4;
    line-height: 1.6;
    overflow-x: clip;
  }

.scene1 {
    position: relative;

    height: 300vh;
    background: #1b29b3;

    z-index: 1;
  }

.scene1-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

#badge {
    position: absolute;
    top: 60px;
    right: calc((100% - 1200px) / 2 + 40px);
    z-index: 2;
    margin-bottom: 16px;
    pointer-events: none;

  }

.scene1 .hd-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.scene1 .heading {
    font-size: 1.625rem;
    font-weight: 900;
    color: #009dff;
    transition: color 0.35s ease;
    user-select: none;
    will-change: color;
  }

.scene1 .heading.active {
    color: #f7f7f7;
  }

.about-wh {
    position: relative;
    background: #1b29b3;

    z-index: 10;
    padding: 80px 0;

    margin-top: -100vh !important;
  }

.about-wh::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        #b8b8b8 30%,
        #b8b8b8 70%,
        transparent);
  }

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

.lbl.wht {
    color: #1b29b3;
    background: #FFDE21;
    font-weight: 700;
  }

#badge {
    font-weight: 700;
  }

@keyframes badge-soft-pulse {
    0% {
      transform: scale(1);
      opacity: 0;
    }

    40% {
      transform: scale(1.1);
      opacity: 1;
    }

    100% {
      transform: scale(1);
    }
  }

.tit-clip {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }

.tit-line {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 11;
    transition: opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1), transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

.about-wh .features .feature {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity .95s cubic-bezier(.22, 1, .36, 1),
      transform .95s cubic-bezier(.22, 1, .36, 1);
  }

@media (max-width: 600px) {
.about-wh .features .feature {
      transition-duration: 1.15s;
    }

.about-wh .features {
      padding-bottom: 40px;
    }
}

.about-wh .features .feature.feat-on {
    opacity: 1;
    transform: translateY(0);
  }

.about-wh .features .feature.feat-on:hover {
    transform: translateY(-6px);
  }

p.lead {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 36px;
    text-align: justify;
    color: #f7f7f7;
    max-width: 800px;
    margin-right: 0;
    margin-left: auto;
  }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 32px;
    column-gap: clamp(30px, 8vw, 140px);
    padding: 60px 0;
  }

.feature {
    flex: 0 1 180px;
    text-align: center;
    transition: transform 0.3s ease;
  }

.about-wh .features .feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f4f4f4;
  }

.icon-wrap {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: border-color 0.3s ease;
  }

.brands-bg {
    background: #f4f4f4;
    padding: 0px 0;
    position: relative;
    z-index: 12;

  }

.brands-lane {
    width: 100%
  }

.brands-run {
    position: relative;
    overflow: hidden;
    height: 120px;
    border-bottom: 1px solid #d6d6d6;
  }

.brands-row {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    white-space: nowrap;
    will-change: transform;
  }

.brands-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform .3s ease, box-shadow .3s ease;
  }

.brands-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter .2s ease, transform .3s ease;
  }

.brands-logo:hover img {
    filter: none
  }

@media (max-width: 768px) {
.brands-run {
      height: 100px;
    }

.brands-logo {
      width: 90px;
      height: 60px;
      padding: 8px;
      transition: transform .3s ease, box-shadow .3s ease;
    }
}

@media (max-width:600px) {
p.lead {
      font-size: 0.875rem;
      text-align: right
    }

.features {
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

.feature {
      max-width: 280px;
      width: 100%;
      margin: 0;
    }

.about-wh .features .feature h3 {
      font-weight: 700;
      margin: 0;
    }
}

@media (max-width: 768px) {
.wrap {
      padding: 0 25px;
    }

.tit-clip {
      margin-bottom: 2rem;
    }

.tit-line {
      font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
#badge {
      top: 30px;
      right: 20px;
      font-size: 0.75rem;
      font-weight: 700;
    }

.scene1 .hd-stack {
      padding: 0 20px;
    }

.scene1 .heading {
      font-size: 1.25rem;
      gap: 15px;
    }

.about-wh {
      padding: 60px 0;
    }

p.lead {
      font-size: 0.875rem;
      text-align: justify;
    }

.features {
      flex-direction: column;
      align-items: center;
    }

.feature {
      max-width: 100%;
    }
}

.shop-hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.shop-hero.blok-stat {
    position: relative;
    height: 100vh;
    min-height: 700px;

    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

.shop-bg {
    position: absolute;
    inset: 0;
    background: #FFDE21;
    z-index: 1;

  }

.shop-guy {
    position: absolute;
    bottom: 60px;

    right: 10%;
    width: auto;
    height: 550px;

    z-index: 3;
    opacity: 0;
    transform: translateY(300px);

    transition: all 1.15s cubic-bezier(0.22, 0.9, 0.3, 1.2);
    pointer-events: none;
  }

.shop-guy img {
    height: 100%;
    width: auto;
    object-fit: contain;

  }

.onview.show {
    opacity: 1;
    transform: translateY(0);
  }

.shop-txt {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    text-align: right;
    opacity: 0;
    transform: translateY(-50%) translateX(-40px);
    transition: all 1.3s cubic-bezier(0.25, 0.8, 0.3, 1) 0.7s;

  }

.shop-txt.delayed.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

.shop-h {
    font-size: 2.375rem;
    color: #fff;
    font-weight: 800;

  }

.shop-go {
    display: inline-flex;
    align-items: center;
    background: #1b29b3;
    margin-top: 20px;
    color: #f7f7f7;
    padding: 10px 26px;
    border-radius: 120px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 222, 33, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
  }

.shop-txt {
    text-align: center;
  }

.shop-go:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 222, 33, 0.55);
  }

.shop-sub {
    font-size: 1.375rem;
    color: #fff;
    font-weight: 500;
  }

@media (max-width: 900px) {
.shop-guy {
      height: 800px;
      right: 3%;
      transform: translateY(200px);

    }

.shop-txt {
      left: 10%;
      top: 20%;

    }

.shop-h {
      font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
.shop-hero.blok-stat {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

.shop-txt {
      position: relative;
      left: unset;
      top: unset;
      transform: translateY(20px);

      order: 1;
      margin-bottom: 80px;
      text-align: center;
    }

.shop-txt.delayed.show {
      transform: translateY(0);
    }

.shop-guy {
      position: relative;
      right: unset;
      bottom: unset;
      height: 300px;
      transform: translateY(200px);

      order: 2;
    }

.shop-guy.show {
      transform: translateY(0);
    }

.shop-go {
      padding: 8px 18px;
      font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
.scene1 {
height: 300vh;
height: 300svh;
  }

.about-wh {
margin-top: -100vh !important;
margin-top: -100svh !important;
  }
}

.arrow-btn {
background-color: #FFDE21;
border: none;
cursor: pointer;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;

  }

.rotate {
transform: rotate(180deg);
  }

.more-fold {
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
  }

.more-fold.open {
max-height: 800px;
opacity: 1;
  }

.ico-ab {
          width: 70px;
          height: 70px;
          object-fit: contain;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

.close-btn{
  position: absolute;
  top: 15px;
  left: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.close-btn img{
  width: 15px;
  height: 15px;
  display: block;
  transition: transform .25s ease;
  transform-origin: 50% 50%;
}

.close-btn:hover img{
  transform: rotate(90deg);
}

.feature {
      background: none;
      border: none;
      cursor: pointer;
      width: 100%;
      text-align: center;
      transition: transform 0.2s ease;
    }

.feature:hover {
      transform: translateY(-6px);
    }

