:root {
  --font-sans: "Fraunces", serif;
}

/* HEADER */
.header {
  background-color: var(--secondStyleColor);
  color: var(--textColor2);
}
.headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.headerButton {
  transition: 0.2s all linear;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  background-color: var(--textColor2);
  color: var(--textColor1);
  cursor: pointer;
  border-radius: var(--borderRadius);
}
.headerButton:hover {
  transform: translateY(-2px);
}
.ham {
  display: none;
}

.nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-left: 0;
  margin: 0;
}

.nav li {
  list-style: none;
}

.nav a {
  color: var(--textColor2);
  text-decoration: none;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  position: relative;
  font-weight: 600;
}

.nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background-color: var(--textColor2);
  transition: 0.2s all linear;
}

.nav a:hover::after {
  width: 100%;
}

.stopScroll {
  overflow: hidden;
}
.logo {
  position: relative;
  z-index: 1000;
  font-weight: 800;
  font-size: 24px;
  color: var(--textColor2);
  text-decoration: none;
}

@media (max-width: 800px) {
  .headerWrapper {
    padding: 0 20px;
  }
  .headerButton {
    display: none;
  }
  .nav {
    position: fixed;
    inset: 0;
    background-color: var(--bodyBG);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .header:has(.nav.active) .logo {
    color: var(--textColor1);
  }
  .header:has(.nav.active) .nav a {
    color: var(--textColor1);
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    z-index: 1000;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill: none;
    transition:
      stroke-dasharray 400ms,
      stroke-dashoffset 400ms;
    stroke: var(--textColor2);
    stroke-width: 5.5;
    stroke-linecap: round;
  }
  .header:has(.nav.active) .line {
    stroke: var(--textColor1);
  }
  .ham7 .top {
    stroke-dasharray: 40 82;
  }
  .ham7 .middle {
    stroke-dasharray: 40 111;
  }
  .ham7 .bottom {
    stroke-dasharray: 40 161;
  }
  .ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
  }
  .ham7.active .middle {
    stroke-dashoffset: 23px;
  }
  .ham7.active .bottom {
    stroke-dashoffset: -83px;
  }
  .ham8 .top {
    stroke-dasharray: 40 160;
  }
}

/* ===== HERO v27 — Layered animated waves background ===== */

.hr28 {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 160px) 0;
  color: var(--textColor1);
  overflow: hidden;
}

/* Background image */
.hr28__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hr28__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

/* Waves SVG */
.hr28__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hr28 .container {
  position: relative;
  z-index: 2;
}

/* Content */
.hr28__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hr28__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondStyleColor);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hr28__kicker i {
  font-size: 11px;
}

.hr28__content h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hr28__content > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  max-width: 540px;
}

/* Actions */
.hr28__actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.hr28__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--borderRadius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hr28__btn--fill {
  background: var(--secondStyleColor);
  color: var(--bodyBG);
}

.hr28__btn--fill i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.hr28__btn--fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px
    color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
}

.hr28__btn--fill:hover i {
  transform: translateX(3px);
}

.hr28__btn--glass {
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  color: var(--textColor1);
  background: color-mix(in srgb, var(--bodyBG) 30%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hr28__btn--glass:hover {
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 800px) {
  .hr28 {
    min-height: 500px;
  }

  .hr28__content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hr28 {
    padding: 80px 0;
    min-height: 420px;
  }

  .hr28__content h1 {
    font-size: 28px;
  }

  .hr28__content > p {
    font-size: 15px;
  }

  .hr28__actions {
    flex-direction: column;
    width: 100%;
  }

  .hr28__btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hr28__waves * {
    animation: none !important;
  }

  .hr28__btn,
  .hr28__btn--fill i {
    transition: none;
  }
}

:root {
  --scrollbarBg: rgba(255, 255, 255, 0.1);
  --itemBgColor: transparent;
}
.swiper {
  padding-bottom: 10px !important;
}

.toc .swiper-slide {
  width: fit-content;
}

.toc h2 {
  margin: 0 !important;
  text-align: center;
  color: var(--textColor1);
}

.toc {
  background-color: transparent;
}

.toc a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--bodyBG);
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--secondStyleColor);
}

.toc .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 24px;
}

.toc-swiper .swiper-scrollbar {
  background: var(--scrollbarBg);
  height: 4px;
  border-radius: 2px;
}

.toc-swiper .swiper-scrollbar-drag {
  background: var(--secondStyleColor);
  border-radius: 2px;
  width: 20%;
}

.toc.wrapper {
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.toc-swiper {
  max-width: calc(var(--maxWidthContainer) - 40px);
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

@media screen and (max-width: 750px) {
  .toc.wrapper {
    margin-left: auto;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 90% !important;
    margin: 0 auto;
  }
}

/* ===== HOW v13 — Bento grid ===== */

.hw13__sec {
  padding: clamp(60px, 7vw, 100px) 0;
  color: var(--textColor1);
}

.hw13__head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 55px;
}

.hw13__head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hw13__head p {
  margin: 0;
  line-height: 1.65;
  color: color-mix(in srgb, var(--textColor1) 70%, transparent);
}

/* Bento grid */
.hw13__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.hw13__card--lg {
  grid-row: 1 / 3;
}

.hw13__card--wide {
  grid-column: 1 / -1;
}

/* Card */
.hw13__card {
  position: relative;
  border-radius: var(--borderRadius);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  padding: 30px 26px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.hw13__card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
}

/* Left accent stripe */
.hw13__stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--secondStyleColor),
    color-mix(in srgb, var(--secondStyleColor) 15%, transparent)
  );
  border-radius: 0 2px 2px 0;
}

.hw13__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  color: var(--secondStyleColor);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hw13__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.hw13__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor1) 72%, transparent);
}

/* Responsive */
@media (max-width: 950px) {
  .hw13__bento {
    max-width: 100%;
  }

  .hw13__card {
    padding: 26px 22px;
  }

  .hw13__card h3 {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .hw13__bento {
    grid-template-columns: 1fr;
  }

  .hw13__card--lg {
    grid-row: auto;
  }

  .hw13__card--wide {
    grid-column: auto;
  }

  .hw13__card {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .hw13__sec {
    padding: 50px 0;
  }

  .hw13__head {
    margin-bottom: 32px;
  }

  .hw13__head h2 {
    font-size: 24px;
  }

  .hw13__card {
    padding: 20px 18px;
  }

  .hw13__card h3 {
    font-size: 16px;
  }

  .hw13__card p {
    font-size: 13px;
  }

  .hw13__tag {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hw13__card {
    transition: none;
  }
}

/* ===== ROADMAP v6 — SVG curve path + glass cards + travelling light ===== */

.rm6 {
  padding: clamp(70px, 8vw, 110px) 0;
  color: var(--textColor1);
  overflow: hidden;
}

.rm6__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 55px;
}

.rm6__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  margin-bottom: 12px;
}

.rm6__head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm6__head p {
  margin: 0;
  line-height: 1.65;
  color: color-mix(in srgb, var(--textColor1) 68%, transparent);
}

/* Track container */
.rm6__track {
  position: relative;
}

/* SVG curve */
.rm6__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.rm6__path {
  stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  stroke-width: 2;
}

.rm6__path--dash {
  stroke: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  stroke-width: 2;
  stroke-dasharray: 8 12;
}

.rm6__light {
  fill: var(--secondStyleColor);
  filter: drop-shadow(0 0 8px var(--secondStyleColor));
  opacity: 0.7;
}

/* Phases grid */
.rm6__phases {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Stagger vertically to follow curve */
.rm6__phase--1 {
  padding-top: 0;
}
.rm6__phase--2 {
  padding-top: 50px;
}
.rm6__phase--3 {
  padding-top: 100px;
}
.rm6__phase--4 {
  padding-top: 150px;
}

/* Number circle */
.rm6__num {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.rm6__num span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondStyleColor);
  box-shadow: 0 0 0 0
    color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  animation: rm6Pulse 2.5s ease-in-out infinite;
}

@keyframes rm6Pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }
  50% {
    box-shadow: 0 0 0 10px
      color-mix(in srgb, var(--secondStyleColor) 0%, transparent);
  }
}

/* Card */
.rm6__card {
  padding: 24px 20px;
  border-radius: var(--borderRadius);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.rm6__card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
}

.rm6__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.rm6__card:hover .rm6__ico {
  transform: scale(1.12) rotate(-5deg);
}

.rm6__ico i {
  font-size: 17px;
  color: var(--secondStyleColor);
}

.rm6__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.rm6__card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor1) 66%, transparent);
}

/* Badges */
.rm6__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  color: color-mix(in srgb, var(--textColor1) 55%, transparent);
}

.rm6__badge--done {
  background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  color: var(--secondStyleColor);
  border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
}

.rm6__badge--active {
  background: var(--secondStyleColor);
  color: var(--bodyBG);
  border-color: var(--secondStyleColor);
}

/* Responsive */
@media (max-width: 950px) {
  .rm6__phases {
    grid-template-columns: 1fr 1fr;
  }

  .rm6__phase--1 {
    padding-top: 0;
  }
  .rm6__phase--2 {
    padding-top: 0;
  }
  .rm6__phase--3 {
    padding-top: 0;
  }
  .rm6__phase--4 {
    padding-top: 0;
  }

  .rm6__svg {
    display: none;
  }
}

@media (max-width: 800px) {
  .rm6__card h3 {
    font-size: 16px;
  }

  .rm6__card p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .rm6 {
    padding: 50px 0;
  }

  .rm6__head {
    margin-bottom: 36px;
  }

  .rm6__head h2 {
    font-size: 24px;
  }

  .rm6__phases {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rm6__card {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rm6__num span {
    animation: none;
  }

  .rm6__light animateMotion {
    dur: 0s;
  }

  .rm6__card,
  .rm6__ico {
    transition: none;
  }
}

/* ===== FEATURES v18 — Isometric cards with SVG diamond-grid bg ===== */

.ft18 {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  color: var(--textColor1);
  overflow: hidden;
}

.ft18__grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  z-index: 0;
  pointer-events: none;
}

.ft18 .container {
  position: relative;
  z-index: 1;
}

.ft18__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 55px;
}

.ft18__head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ft18__head p {
  margin: 0;
  line-height: 1.65;
  color: color-mix(in srgb, var(--textColor1) 68%, transparent);
}

.ft18__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card with isometric tilt */
.ft18__card {
  perspective: 800px;
}

.ft18__card-inner {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--borderRadius);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: rotateX(4deg) rotateY(-3deg);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}

.ft18__card:hover .ft18__card-inner {
  transform: rotateX(0deg) rotateY(0deg) translateY(-6px);
  border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ft18__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.ft18__card:hover .ft18__icon {
  transform: scale(1.1) rotate(-4deg);
}

.ft18__icon i {
  font-size: 20px;
  color: var(--secondStyleColor);
}

.ft18__card-inner h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.ft18__card-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor1) 68%, transparent);
}

.ft18__num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 32px;
  font-weight: 800;
  color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.ft18__card:hover .ft18__num {
  color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
}

/* Responsive */
@media (max-width: 950px) {
  .ft18__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft18__card-inner {
    transform: rotateX(3deg) rotateY(-2deg);
  }
}

@media (max-width: 800px) {
  .ft18__card-inner {
    padding: 24px 20px;
  }

  .ft18__card-inner h3 {
    font-size: 16px;
  }

  .ft18__card-inner p {
    font-size: 13px;
  }

  .ft18__icon {
    width: 42px;
    height: 42px;
  }

  .ft18__icon i {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .ft18 {
    padding: 50px 0;
  }

  .ft18__head {
    margin-bottom: 36px;
  }

  .ft18__head h2 {
    font-size: 24px;
  }

  .ft18__grid {
    grid-template-columns: 1fr;
  }

  .ft18__card-inner {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft18__card-inner,
  .ft18__icon,
  .ft18__num {
    transition: none;
  }
}

/* =========================================================
   Testimonials (unique classes: tstx7k1-*)
   ========================================================= */

.tstx7k1-sec {
  position: relative;
  padding: 74px 0 92px;
  color: var(--textColor1);
  overflow: hidden;
}

/* декоративные "веточки" по бокам (inline SVG как фон) */
.tstx7k1-sec::before,
.tstx7k1-sec::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(420px, 28vw);
  opacity: 0.22;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1);
}

.tstx7k1-shell {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tstx7k1-head {
  text-align: center;
  margin-bottom: 28px;
}

.tstx7k1-title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 40px);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.tstx7k1-dots {
  margin: 12px auto 0;
  display: inline-flex;
  gap: 12px;
  opacity: 0.6;
}
.tstx7k1-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--textColor1);
}

/* ----- stage (slider area) ----- */

.tstx7k1-stage {
  position: relative;
  padding-top: 8px;
}

.tstx7k1-sw {
  width: 100%;
  overflow: visible;
}

.tstx7k1-slide {
  display: flex;
  justify-content: center;
  padding: 40px 0 18px;
  opacity: 0.18;
  transform: scale(0.86);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    filter 320ms ease;
  filter: blur(0.3px);
}

.tstx7k1-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.tstx7k1-card {
  width: min(720px, 92vw);
  text-align: center;
}

.tstx7k1-quoteMark {
  display: inline-flex;
  color: var(--secondStyleColor);
  opacity: 0.86;
  margin-bottom: 18px;
}

.tstx7k1-text {
  margin: 0 auto;
  width: min(720px, 92%);
  font-size: 18px;
  line-height: 1.9;
  font-style: italic;
  color: var(--textColor1);
}

.tstx7k1-author {
  margin-top: 54px;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--secondStyleColor);
  opacity: 0.9;
}

/* ----- nav buttons (круглые) ----- */

.tstx7k1-nav {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 36, 38, 0.45);
  background: var(--secondStyleColor);
  color: var(--textColor2);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
  user-select: none;
}

.tstx7k1-nav span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.tstx7k1-prev {
  left: clamp(12px, 7vw, 160px);
}
.tstx7k1-next {
  right: clamp(12px, 7vw, 160px);
}

.tstx7k1-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.tstx7k1-nav:active {
  transform: translateY(-50%) scale(0.98);
}

.tstx7k1-nav:focus-visible {
  outline-offset: 4px;
}

.tstx7k1-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ----- pagination dots ----- */

.tstx7k1-pagi {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tstx7k1-pagi .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--textColor1);
  opacity: 1;
  margin: 0 !important;
}

.tstx7k1-pagi .swiper-pagination-bullet-active {
  background: var(--secondStyleColor);
}

/* ----- responsive ----- */

@media (max-width: 900px) {
  .tstx7k1-sec {
    padding: 60px 0 72px;
  }
  .tstx7k1-prev {
    left: 14px;
  }
  .tstx7k1-next {
    right: 14px;
  }
  .tstx7k1-text {
    font-size: 16px;
    line-height: 1.85;
  }
  .tstx7k1-author {
    margin-top: 40px;
  }
}

@media (max-width: 520px) {
  .tstx7k1-nav {
    display: none;
  }
  .tstx7k1-slide {
    padding-top: 26px;
  }
}

/* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

.ab15 {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  color: var(--textColor1);
  overflow: hidden;
}

.ab15__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  z-index: 0;
  pointer-events: none;
}

.ab15 .container {
  position: relative;
  z-index: 1;
}

/* Hero */
.ab15__hero {
  position: relative;
  border-radius: calc(var(--borderRadius) * 1.4);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  margin-bottom: 50px;
}

.ab15__hero-img {
  position: absolute;
  inset: 0;
}

.ab15__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 0.5s ease;
}

.ab15__hero:hover .ab15__hero-img img {
  transform: scale(1.03);
}

.ab15__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 48px);
  gap: 10px;
}

.ab15__kicker {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  padding: 5px 14px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ab15__hero h2 {
  margin: 0;
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 600px;
  line-height: 1.15;
  color: #fff;
}

/* Body */
.ab15__body {
  max-width: 960px;
  margin: 0 auto;
}

.ab15__desc {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* Feature row */
.ab15__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ab15__feat {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--borderRadius);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.ab15__feat:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
}

.ab15__feat-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.3s ease;
}

.ab15__feat:hover .ab15__feat-ico {
  transform: scale(1.12);
}

.ab15__feat-ico i {
  font-size: 18px;
  color: var(--secondStyleColor);
}

.ab15__feat h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.ab15__feat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--textColor1) 62%, transparent);
}

/* Responsive */
@media (max-width: 950px) {
  .ab15__features {
    grid-template-columns: 1fr 1fr;
  }

  .ab15__hero {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 800px) {
  .ab15__hero h2 {
    font-size: 22px;
  }

  .ab15__desc {
    font-size: 14px;
  }

  .ab15__feat h3 {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .ab15 {
    padding: 50px 0;
  }

  .ab15__hero {
    aspect-ratio: 16 / 10;
    margin-bottom: 36px;
  }

  .ab15__features {
    grid-template-columns: 1fr;
  }

  .ab15__desc {
    margin-bottom: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab15__hero-img img,
  .ab15__feat,
  .ab15__feat-ico {
    transition: none;
  }
}

.b7x-wrap {
  padding: 80px 0;
  color: var(--textColor1);
}

.b7x-inner {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.b7x-head {
  max-width: calc(var(--maxWidthContainer) - 40px);
  margin: 0 auto 40px auto;
  text-align: center;
}

.b7x-label {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 8px;
}

.b7x-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.b7x-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.b7x-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Cards */
.b7x-card {
  border-radius: var(--borderRadius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  padding: 20px 18px;
  transition: 0.2s ease;
}

.b7x-card:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.b7x-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.b7x-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #dedede;
}

/* Responsive */
@media (max-width: 900px) {
  .b7x-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .b7x-grid {
    grid-template-columns: 1fr;
  }

  .b7x-head {
    margin-bottom: 30px;
  }
}

/*  */
.partners--luxe {
  padding: var(--sectionPadding);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 20px 0;
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
}

.partners--luxe::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
    transparent 70%
  );
  opacity: 0.75;
  z-index: -2;
  pointer-events: none;
}

.partners--luxe::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% auto;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--mainStyleColor) 26%, transparent),
    transparent 72%
  );
  opacity: 0.6;
  z-index: -3;
  pointer-events: none;
}

.partnersShell {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 4vw, 44px);
}

.partnersKicker {
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  color: var(--secondStyleColor);
  font-size: 13px;
}

.partnersHead h2 {
  margin: 0 0 10px 0;
}

.partnersCopy {
  margin: 0;
  color: var(--textColor1);
  opacity: 0.92;
}

.partnerCard {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(14px, 2.6vw, 26px);
  border-radius: calc(var(--borderRadius) * 0.9);
  padding: clamp(18px, 3vw, 32px);
  border: 2px solid color-mix(in srgb, var(--secondStyleColor) 44%, transparent);
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--mainStyleColor) 14%, transparent),
      transparent 60%
    ),
    color-mix(in srgb, var(--mainStyleColor) 6%, transparent);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.partnerCard--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  mask:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(#000, #000);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

.partnerMedia {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 26px;
  padding: clamp(16px, 2.6vw, 26px);
  min-height: 200px;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  background:
    radial-gradient(
      120% 120% at 10% 10%,
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
      transparent 65%
    ),
    color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
    0 18px 40px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.partnerMedia:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 24%, transparent),
    0 26px 60px rgba(0, 0, 0, 0.34);
}

.partnerMedia img {
  max-width: min(190px, 80%);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.32));
}

.partnerMeta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partnerMeta h3 {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.15;
}

.partnerMeta > p {
  margin: 0;
  color: var(--textColor1);
  opacity: 0.95;
  line-height: 1.7;
  max-width: 56ch;
}

.partnerBullets {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.partnerBullets li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  background: color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
  font-weight: 600;
}

.partnerAura {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
    transparent 70%
  );
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.partnerSide {
  display: grid;
  gap: 12px;
}

.partnerMini {
  border-radius: calc(var(--borderRadius) * 0.8);
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
  position: relative;
  overflow: hidden;
}

.partnerMini::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
    transparent 72%
  );
  opacity: 0.7;
  pointer-events: none;
}

.miniLabel {
  margin: 0 0 6px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--secondStyleColor);
}

.miniText {
  margin: 0;
  color: var(--textColor1);
  opacity: 0.92;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .partnerCard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .partnersStage {
    grid-template-columns: 1fr;
  }
}

/* ===========================
     FAQ 10 — Geometric Pulse
     Rotating conic-gradient borders + SVG background
     =========================== */

@property --faq10-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.faq10 {
  position: relative;
  padding: clamp(56px, 6vw, 100px) 0;
  overflow: hidden;
  color: var(--textColor1);
  background:
    radial-gradient(
      1200px 700px at 20% 15%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      1000px 650px at 80% 85%,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
      transparent 65%
    ),
    var(--bodyBG);
}

/* SVG background layer */
.faq10__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.faq10__head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 44px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq10__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
}

.faq10__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.faq10__sub {
  margin: 0;
  color: var(--textColor1);
  line-height: 1.55;
}

/* List */
.faq10__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

/* Card */
.faq10__card {
  position: relative;
  border-radius: var(--borderRadius);
  background: color-mix(in srgb, var(--bodyBG) 80%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  transition:
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

/* Rotating conic-gradient border (active state) */
.faq10__card::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: var(--borderRadius);
  padding: 1.5px;
  background: conic-gradient(
    from var(--faq10-angle),
    transparent 0%,
    var(--secondStyleColor) 8%,
    color-mix(in srgb, var(--secondStyleColor) 60%, transparent) 16%,
    transparent 28%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.faq10__card.is-open::before {
  opacity: 1;
  animation: faq10-rotate 4s linear infinite;
}

.faq10__card.is-open {
  border-color: transparent;
  box-shadow:
    0 4px 24px color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
    0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
}

@keyframes faq10-rotate {
  to {
    --faq10-angle: 360deg;
  }
}

/* Trigger button */
.faq10__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

/* Number badge */
.faq10__num {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  transition: background 0.4s ease;
}

.faq10__numText {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--secondStyleColor);
  position: relative;
  z-index: 1;
}

.faq10__card.is-open .faq10__num {
  background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
}

/* Pulsing ring around number */
.faq10__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--secondStyleColor);
  opacity: 0;
  pointer-events: none;
}

.faq10__card.is-open .faq10__pulse {
  animation: faq10-pulse 2.2s ease-in-out infinite;
}

@keyframes faq10-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Question text */
.faq10__question {
  flex: 1;
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  line-height: 1.35;
}

/* Plus / Cross icon */
.faq10__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.53, 1);
}

.faq10__iconLine {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--textColor1);
  transform: translate(-50%, -50%);
  transition: background 0.4s ease;
}

.faq10__iconLine:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq10__card.is-open .faq10__icon {
  transform: rotate(45deg);
}

.faq10__card.is-open .faq10__iconLine {
  background: var(--secondStyleColor);
}

/* Panel */
.faq10__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s cubic-bezier(0.33, 1, 0.53, 1);
}

.faq10__card.is-open .faq10__panel {
  grid-template-rows: 1fr;
}

.faq10__answer {
  overflow: hidden;
}

.faq10__answerText {
  padding: 0 22px 22px 80px;
  margin: 0;
  color: var(--textColor1);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.5s ease 0.12s,
    transform 0.5s cubic-bezier(0.33, 1, 0.53, 1) 0.12s;
}

.faq10__card.is-open .faq10__answerText {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.faq10__card:not(.is-open):hover {
  border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq10__bg * {
    animation: none !important;
  }
  .faq10__card::before {
    animation: none !important;
  }
  .faq10__pulse {
    animation: none !important;
  }
  .faq10__panel,
  .faq10__answerText,
  .faq10__icon,
  .faq10__card {
    transition: none !important;
  }
}

/* Responsive — tablets */
@media (max-width: 950px) {
  .faq10__head {
    max-width: 520px;
  }
}

/* Responsive — small tablets */
@media (max-width: 800px) {
  .faq10__trigger {
    gap: 14px;
    padding: 18px 18px;
  }
  .faq10__answerText {
    padding: 0 18px 20px 74px;
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .faq10__num {
    width: 36px;
    height: 36px;
  }
  .faq10__numText {
    font-size: 12px;
  }
  .faq10__trigger {
    gap: 12px;
    padding: 16px 14px;
  }
  .faq10__answerText {
    padding: 0 14px 18px 62px;
  }
  .faq10__icon {
    width: 24px;
    height: 24px;
  }
  .faq10__iconLine {
    width: 14px;
  }
}

.site-footer {
  border-top: 0.5px solid var(--secondStyleColor);
  padding: 20px 0;
}
.footerLogo {
  color: var(--textColor1);
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intoLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  span {
    width: 8px;
    height: 8px;
    background-color: var(--secondStyleColor);
    border-radius: 50%;
  }
  a {
    transition: 0.3s all linear;
    transform-origin: left;
    text-decoration: none;
    color: var(--textColor1);
  }
  a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 750px) {
  .intoLinks {
    flex-direction: column;
    span {
      display: none;
    }
  }
}

.f-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.f-social i {
  color: var(--secondStyleColor);
}
.copy {
  text-align: center;
  opacity: 0.5;
}
.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: #fff;
}
