.kok-home-faqs {
  --kok-home-faqs-accent: #d8d8d8;
  --kok-home-faqs-border: rgba(255, 255, 255, 0.12);
  --kok-home-faqs-surface: rgba(255, 255, 255, 0.03);
  --kok-home-faqs-surface-strong: rgba(255, 255, 255, 0.06);
  padding: 56px 0 72px;
  color: #fff;
  font-family: var(--site-font-family, "Gilroy", Helvetica, Arial, sans-serif);
}

.kok-home-faqs__head {
  max-width: 560px;
  margin: 0 auto 30px;
}

.kok-home-faqs__title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.kok-home-faqs__title span {
  color: var(--kok-home-faqs-accent);
}

.kok-home-faqs__lede {
  margin: 10px auto 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.kok-home-faqs__accordion {
  display: grid;
  gap: 8px;
  max-width: 660px;
  margin: 0 auto;
}

.kok-home-faqs__item {
  overflow: hidden;
  border: 1px solid var(--kok-home-faqs-border);
  border-radius: 16px;
  background: var(--kok-home-faqs-surface);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.kok-home-faqs__item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--kok-home-faqs-surface-strong);
}

@supports selector(:has(*)) {
  .kok-home-faqs__item:has(.kok-home-faqs__button:not(.collapsed)) {
    border-color: rgba(255, 255, 255, 0.24);
    background: var(--kok-home-faqs-surface-strong);
  }
}

.kok-home-faqs__header {
  margin: 0;
}

.kok-home-faqs__button {
  position: relative;
  padding: 18px 60px 18px 22px;
  background: transparent;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  box-shadow: none;
}

.kok-home-faqs__button,
.kok-home-faqs__button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

.kok-home-faqs__button:not(.collapsed) {
  color: var(--kok-home-faqs-accent);
}

.kok-home-faqs__button:focus {
  box-shadow: none;
}

.kok-home-faqs__button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background-image: none;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.kok-home-faqs__button:not(.collapsed)::after {
  content: "\2212";
  background-image: none;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--kok-home-faqs-accent);
  transform: translateY(-50%);
}

.kok-home-faqs__body {
  padding: 0 60px 18px 22px;
}

.kok-home-faqs__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.kok-home-faqs__footer {
  margin-top: 28px;
}

.kok-home-faqs__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.kok-home-faqs__cta-icon {
  width: 14px;
  flex: 0 0 auto;
}

.kok-home-faqs__cta-icon img {
  display: block;
  width: 100%;
  filter: invert(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.kok-home-faqs__cta:hover,
.kok-home-faqs__cta:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #212121;
  outline: none;
}

.kok-home-faqs__cta:hover .kok-home-faqs__cta-icon img,
.kok-home-faqs__cta:focus-visible .kok-home-faqs__cta-icon img {
  filter: invert(0);
  transform: translate3d(2px, -2px, 0);
}

@media screen and (max-width: 991px) {
  .kok-home-faqs {
    padding: 52px 0 64px;
  }

  .kok-home-faqs__head {
    margin-bottom: 26px;
  }

  .kok-home-faqs__button {
    padding-right: 56px;
  }

  .kok-home-faqs__body {
    padding-right: 22px;
  }

  .kok-home-faqs__footer {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .kok-home-faqs {
    padding: 42px 0 54px;
  }

  .kok-home-faqs__title {
    font-size: 28px;
  }

  .kok-home-faqs__lede {
    font-size: 14px;
  }

  .kok-home-faqs__item {
    border-radius: 14px;
  }

  .kok-home-faqs__button {
    padding: 16px 48px 16px 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  .kok-home-faqs__button::after {
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .kok-home-faqs__body {
    padding: 0 16px 16px;
  }

  .kok-home-faqs__body p {
    font-size: 14px;
  }

  .kok-home-faqs__footer {
    margin-top: 20px;
  }
}

@media screen and (prefers-reduced-motion: reduce) {
  .kok-home-faqs__item,
  .kok-home-faqs__cta,
  .kok-home-faqs__cta-icon img {
    transition: none;
  }

  .kok-home-faqs__cta:hover .kok-home-faqs__cta-icon img,
  .kok-home-faqs__cta:focus-visible .kok-home-faqs__cta-icon img {
    transform: none;
  }
}
