/* FAQ page template */
.sfc-faq-page {
  --sfc-blue: #173d5b;
  --sfc-dark: #1f2326;
  --sfc-red: #ff3326;
  --sfc-sky: #2096d3;
  --sfc-white: #ffffff;
  --sfc-text: #0f2a43;
  --sfc-border: rgba(255, 255, 255, .55);
  color: var(--sfc-text);
  overflow: hidden;
}

.sfc-faq-page .sfc-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sfc-faq-page .sfc-bg-blue { background: var(--sfc-blue); }
.sfc-faq-page .sfc-bg-white { background: var(--sfc-white); }
.sfc-faq-page .sfc-bg-sky { background: var(--sfc-sky); }
.sfc-faq-page .sfc-bg-red { background: var(--sfc-red); }

.sfc-faq-hero {
  position: relative;
  padding: clamp(46px, 7vw, 86px) 0 clamp(74px, 8vw, 112px);
  color: #fff;
}

.sfc-faq-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.sfc-faq-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.40 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.sfc-faq-hero__content {
  max-width: 620px;
}

.sfc-faq-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.sfc-faq-hero__subtitle {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
  font-weight: 800;
}

.sfc-faq-hero__text {
  color: rgba(255, 255, 255, .95);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.sfc-faq-hero__text p,
.sfc-faq-statement__text p,
.sfc-faq-lifestyle__intro p {
  margin: 0;
}

.sfc-faq-brush {
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: -1px;
  height: 54px;
  pointer-events: none;
  z-index: 2;
}

.sfc-faq-brush--white {
  background: var(--sfc-white);
  clip-path: polygon(0 48%, 6% 60%, 13% 49%, 21% 63%, 29% 48%, 37% 58%, 46% 45%, 55% 61%, 64% 48%, 73% 56%, 82% 46%, 90% 57%, 100% 48%, 100% 100%, 0 100%);
}

.sfc-faq-brush--red {
  background: var(--sfc-red);
  clip-path: polygon(0 42%, 7% 52%, 15% 38%, 23% 55%, 32% 40%, 42% 51%, 51% 36%, 62% 55%, 72% 41%, 82% 51%, 91% 39%, 100% 47%, 100% 100%, 0 100%);
}

.sfc-faq-statement {
  padding: clamp(58px, 7vw, 96px) 0 clamp(54px, 7vw, 96px);
  text-align: center;
}

.sfc-faq-statement__text {
  max-width: 790px;
  margin-inline: auto;
  color: var(--sfc-text);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.17;
  font-weight: 900;
  letter-spacing: -.025em;
}

.sfc-faq-accordion-section {
  position: relative;
  padding: clamp(78px, 9vw, 118px) 0 clamp(100px, 12vw, 160px);
}

.sfc-faq-accordion__grid {
  display: grid;
  grid-template-columns: minmax(230px, 315px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.sfc-faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sfc-faq-tab {
  display: flex;
  align-items: center;
  min-height: 48px;
  width: 100%;
  padding: 13px 28px;
  border: 2px solid #fff;
  border-radius: 0;
  background: var(--sfc-red);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.sfc-faq-tab:hover,
.sfc-faq-tab:focus-visible,
.sfc-faq-tab.is-active {
  background: var(--sfc-blue);
  color: #fff;
  outline: none;
}

.sfc-faq-tab:focus-visible,
.sfc-faq-question:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}

.sfc-faq-panels {
  min-width: 0;
}

.sfc-faq-panel[hidden],
.sfc-faq-answer[hidden] {
  display: none !important;
}

.sfc-faq-item {
  border-bottom: 1px solid var(--sfc-border);
}

.sfc-faq-question {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 0;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 900;
  line-height: 1.22;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.sfc-faq-question__icon {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  background: var(--sfc-blue);
  transition: background-color .2s ease;
}

.sfc-faq-question__icon::before,
.sfc-faq-question__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.sfc-faq-question__icon::after {
  transform: rotate(90deg);
  transition: opacity .2s ease, transform .2s ease;
}

.sfc-faq-item.is-open .sfc-faq-question__icon {
  background: var(--sfc-red);
}

.sfc-faq-item.is-open .sfc-faq-question__icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(.25);
}

.sfc-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 42px;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  opacity: 0;
  transition: max-height .32s ease, opacity .22s ease, padding .22s ease;
  will-change: max-height;
}

.sfc-faq-item.is-open .sfc-faq-answer {
  padding: 4px 0 28px 42px;
  opacity: 1;
}

.sfc-faq-answer p {
  margin: 0 0 14px;
}

.sfc-faq-answer p:last-child {
  margin-bottom: 0;
}

.sfc-faq-empty {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sfc-faq-accordion-section .sfc-faq-brush--red {
  bottom: -1px;
}

.sfc-faq-lifestyle {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0 0;
  color: #fff;
  text-align: center;
}

.sfc-faq-lifestyle::after {
  content: "";
  display: block;
  height: clamp(90px, 10vw, 150px);
  background: #fff;
  margin-top: clamp(0px, 2vw, 20px);
}

.sfc-faq-lifestyle__inner {
  position: relative;
  z-index: 2;
}

.sfc-faq-lifestyle__logo {
  display: block;
  width: clamp(92px, 9vw, 132px);
  height: auto;
  margin: 0 auto 28px;
}

.sfc-faq-lifestyle h2 {
  max-width: 850px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.sfc-faq-lifestyle__intro {
  max-width: 820px;
  margin: 0 auto 30px;
  color: #fff;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.45;
  font-weight: 800;
}

.sfc-faq-lifestyle .sfc-btn,
.sfc-faq-lifestyle .sfc-btn--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 34px;
  border-radius: 5px;
  background: #101e2a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
}

.sfc-faq-lifestyle__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1060px;
  margin: clamp(56px, 7vw, 84px) auto calc(clamp(90px, 10vw, 150px) * -1);
}

.sfc-faq-lifestyle-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(310px, 29vw, 405px);
  overflow: hidden;
  border-radius: 8px;
  text-align: left;
  background-color: #071522;
  background-image: linear-gradient(180deg, rgba(6, 18, 29, .04) 0%, rgba(5, 15, 24, .62) 43%, rgba(5, 15, 24, .96) 100%), var(--sfc-card-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .24);
}

.sfc-faq-lifestyle-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.sfc-faq-lifestyle-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1;
}

.sfc-faq-lifestyle-card p {
  min-height: 5.1em;
  margin: 0 0 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
}

.sfc-faq-lifestyle-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.sfc-faq-lifestyle-card__link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  color: #10233a;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1024px) {
  .sfc-faq-hero__grid,
  .sfc-faq-accordion__grid {
    grid-template-columns: 1fr;
  }

  .sfc-faq-hero__content {
    max-width: none;
  }

  .sfc-faq-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sfc-faq-lifestyle__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .sfc-faq-lifestyle__cards {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .sfc-faq-lifestyle::after {
    height: 70px;
  }

  .sfc-faq-lifestyle__cards {
    margin-bottom: -70px;
  }
}

@media (max-width: 640px) {
  .sfc-faq-page .sfc-container {
    width: min(100% - 28px, 1180px);
  }

  .sfc-faq-hero {
    padding-top: 36px;
  }

  .sfc-faq-hero__grid {
    gap: 28px;
  }

  .sfc-faq-hero h1,
  .sfc-faq-lifestyle h2 {
    font-size: 34px;
  }

  .sfc-faq-statement__text {
    font-size: 20px;
  }

  .sfc-faq-tabs {
    grid-template-columns: 1fr;
  }

  .sfc-faq-tab {
    min-height: 46px;
    padding: 12px 18px;
  }

  .sfc-faq-question {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 13px;
    min-height: 50px;
    font-size: 17px;
  }

  .sfc-faq-answer {
    padding-left: 35px;
    font-size: 16px;
  }

  .sfc-faq-accordion-section {
    padding-top: 58px;
  }
}
