.why {
  --why-glass: rgba(255, 255, 255, 0.05);
  --why-glass-border: rgba(255, 255, 255, 0.12);
  --why-card: rgba(255, 255, 255, 0.06);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: left;
}

.why__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--why-glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.why__box::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 24, 255, 0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.why__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  z-index: 1;
}

.why__curtain {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(105%);
  will-change: transform, opacity;
}

.why__curtain.is-sweep {
  animation: why-curtain 1000ms cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes why-curtain {
  0% {
    opacity: 1;
    transform: translateX(105%);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-105%);
  }
}

.why__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.why__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px) scale(0.96);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 700ms;
}

.why__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translateX(-70px) scale(0.92);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(0.5, 0, 0.75, 0);
}

.why__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.why__card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 44px rgba(0, 0, 0, 0.45);
}

.why__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why__slide.is-active .why__img {
  animation: why-pixel-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes why-pixel-in {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(14px) contrast(2.4) brightness(1.5);
    clip-path: inset(0 0 100% 0);
  }
  40% {
    opacity: 1;
    filter: blur(6px) contrast(1.6) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) contrast(1) brightness(1);
    clip-path: inset(0 0 0 0);
  }
}

.why__content {
  padding: 12px 12px 12px 0;
}

.why__count {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-btn, 'Nunito', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--blue, #4318ff);
}

.why__title {
  margin: 0 0 16px;
  font-family: var(--font-heading, 'Fredoka', sans-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.12;
  color: var(--white, #ffffff);
}

.why__text {
  margin: 0;
  max-width: 40ch;
  font-family: var(--font-body, 'Fredoka', sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
  color: var(--muted, #bbbbbb);
}

.why__slide.is-active .why__title,
.why__slide.is-active .why__text {
  animation: why-line-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why__slide.is-active .why__title {
  animation-delay: 380ms;
}

.why__slide.is-active .why__text {
  animation-delay: 540ms;
}

@keyframes why-line-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.why__nav {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white, #ffffff);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.why__nav svg {
  width: 22px;
  height: 22px;
}

.why__nav:hover {
  background: var(--blue, #4318ff);
  border-color: var(--blue, #4318ff);
  transform: scale(1.08);
}

.why__nav:active {
  transform: scale(0.96);
}

.why__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.why__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}

.why__dot.is-active {
  width: 30px;
  background: var(--blue, #4318ff);
}

@media (max-width: 900px) {
  .why__slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .why__content {
    padding: 0;
  }

  .why__text {
    margin: 0 auto;
  }

  .why__card {
    max-width: 260px;
  }
}

@media (max-width: 620px) {
  .why__box {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 18px;
  }

  .why__viewport {
    order: 1;
    width: 100%;
  }

  .why__slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .why__media {
    padding: 0;
  }

  .why__card {
    max-width: 240px;
  }

  .why__content {
    padding: 0;
  }

  .why__text {
    margin: 0 auto;
  }

  .why__nav {
    order: 2;
    width: 48px;
    height: 48px;
  }

  .why__nav--prev {
    position: absolute;
    left: 22px;
    bottom: 22px;
  }

  .why__nav--next {
    position: absolute;
    right: 22px;
    bottom: 22px;
  }

  .why__box {
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why__slide,
  .why__slide.is-active .why__img,
  .why__slide.is-active .why__title,
  .why__slide.is-active .why__text {
    animation: none;
    transition-duration: 1ms;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 40px 0 72px;
  background: var(--black, #000000);
  color: var(--white, #ffffff);
}

.faq__inner {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 40px;
}

.faq__title {
  margin: 0 0 12px;
  font-family: var(--font-heading, 'Fredoka', sans-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--white, #ffffff);
}

.faq__subtitle {
  margin: 0 auto;
  max-width: 40ch;
  font-family: var(--font-body, 'Fredoka', sans-serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.5;
  color: var(--muted, #bbbbbb);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.faq__item.is-open {
  border-color: rgba(67, 24, 255, 0.55);
  box-shadow: 0 12px 34px rgba(67, 24, 255, 0.18);
  background: linear-gradient(160deg, rgba(67, 24, 255, 0.10), rgba(255, 255, 255, 0.02));
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading, 'Fredoka', sans-serif);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.35;
  color: var(--white, #ffffff);
}

.faq__q-text {
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white, #ffffff);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, color 0.35s ease;
}

.faq__icon svg {
  width: 18px;
  height: 18px;
}

.faq__item.is-open .faq__icon {
  transform: rotate(135deg);
  background: var(--blue, #4318ff);
  color: var(--white, #ffffff);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  font-family: var(--font-body, 'Fredoka', sans-serif);
  font-weight: 400;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.6;
  color: var(--muted, #bbbbbb);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease, padding 0.45s ease;
}

.faq__item.is-open .faq__a > p {
  padding: 0 22px 22px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .faq__q {
    padding: 16px 18px;
  }

  .faq__a > p {
    padding: 0 18px;
  }

  .faq__item.is-open .faq__a > p {
    padding: 0 18px 18px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__a,
  .faq__a > p,
  .faq__icon,
  .faq__item {
    transition-duration: 1ms;
  }
}