/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* fonts */

/* POPPINS REGULAR 400 */
@font-face {
  font-family: 'Poppins';
  src: url('/fontsFSCC/poppins-regularFSCC.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* POPPINS BOLD 700 */
@font-face {
  font-family: 'Poppins';
  src: url('/fontsFSCC/poppins-boldFSCC.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* SIGMAR REGULAR */
@font-face {
  font-family: 'Sigmar';
  src: url('/fontsFSCC/sigmar-regularFSCC.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* container */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* header */
.headerFSCC {
  width: 100%;
  background: #020202;
  padding: 16px 0;
}

.header__containerFSCC {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-imgFSCC {
  width: 79px;
  height: 58.56px;
  flex-shrink: 0;
  object-fit: contain;
  transition: 0.25s ease;
}

@media (max-width: 450px) {
  .logo-imgFSCC {
    width: 52.019px;
    height: 38.56px;
  }
}

.navFSCC {
  margin-left: auto;
  margin-right: 40px;
}

.nav__listFSCC {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__linkFSCC {
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav__linkFSCC:hover {
  opacity: 0.7;
}

.catalogFSCC {
  position: relative;
}

.catalog__btnFSCC {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
}

.catalog__arrowFSCC {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: 0.25s ease;
}

.catalog__btnFSCC.active .catalog__arrowFSCC {
  transform: rotate(180deg);
}

.catalog__dropdownFSCC {
  position: absolute;
  top: 130%;
  left: 0;
  background: #2f2a2a;
  border-radius: 10px;
  padding: 18px 24px;
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 180px;
  z-index: 10;
}

.catalog__itemFSCC {
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.catalog__itemFSCC:hover {
  opacity: 0.7;
}

.contact-btnFSCC {
  padding: 12px 30px;
  background: #10fcfc;
  border-radius: 24px;
  color: #000;
  text-decoration: none;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s ease;
}

.contact-btnFSCC:hover {
  opacity: 0.85;
}

.burgerFSCC {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: opacity 0.2s ease;
}

.burgerFSCC span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .navFSCC {
    display: none;
  }

  .burgerFSCC {
    display: flex;
  }

  .contact-btnFSCC {
    padding: 10px 22px;
    font-size: 17px;
    border-radius: 20px;
    margin-right: 16px; /* расстояние от бургера */
  }

  .header__containerFSCC {
    justify-content: space-between;
  }
}

@media (max-width: 380px) {
  .contact-btnFSCC {
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 18px;
    margin-right: 12px;
  }
}

.mobile-menuFSCC {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 350px;
  height: 100vh;
  background: #020202;
  padding: 40px 24px;
  transition: 0.35s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu__listFSCC {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-linkFSCC {
  text-decoration: none;
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
}

.mobile-closeFSCC {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.mobile-closeFSCC::before,
.mobile-closeFSCC::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  transform-origin: center;
}

.mobile-closeFSCC::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-closeFSCC::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 991px) {
  .header__containerFSCC {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .logoFSCC {
    grid-column: 1;
  }

  .contact-btnFSCC {
    grid-column: 2;
    justify-self: end;

    padding: 6px 18px;
    font-size: 16px;
    border-radius: 20px;
  }

  .burgerFSCC {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 420px) {
  .contact-btnFSCC {
    padding: 5px 14px;
    font-size: 14px;
    border-radius: 18px;
    margin-right: 4px;
  }
}

/* hero */

.heroFSCC {
  width: 100%;
  background-image: url('/imagesFSCC/hero-neural-manbg-deskFSCC.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  padding-top: 42px;
  padding-bottom: 300px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-bottom: -1px;
}

@media (max-width: 768px) {
  .heroFSCC {
    background-image: url('/imagesFSCC/hero-neural-bg-mbFSCC.webp');

    padding-top: 74px;
    padding-bottom: 150px;

    background-position: center;
  }
}

.hero__contentFSCC {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

/* TITLE */
.hero__titleFSCC {
  color: #fafafa;
  font-family: 'Sigmar', sans-serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin: 0;
}

@media (max-width: 768px) {
  .hero__titleFSCC {
    font-size: 40px;
    line-height: 40px;
  }
}

.hero__subtitleFSCC {
  color: #c5c5c5;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin: 0 auto;
  max-width: 700px;
}

/* FEATURES LIST */
.hero__featuresFSCC {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;

  display: flex;
  justify-content: center;
  gap: 80px;
}

@media (max-width: 768px) {
  .hero__featuresFSCC {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero__featuresFSCC {
    gap: 24px;
    justify-content: space-around;
  }

  .hero__subtitleFSCC {
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
  }
}

.hero-featureFSCC {
  text-align: center;
}

.hero-feature__iconFSCC {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.hero-feature__textFSCC {
  color: #c5c5c5;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 0;
}
.ai-sectionFSCC {
  background: #000;
  padding: 60px 0;
}

.ai-titleFSCC {
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.ai-listFSCC {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
  .ai-listFSCC {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.ai-itemFSCC {
  width: 414px;
  height: 244px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 252, 252, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 450px) {
  .ai-itemFSCC {
    width: 100%;
    max-width: 366px;
    height: 230px;
  }
}

.ai-mlFSCC {
  background: linear-gradient(
      0deg,
      rgba(18, 21, 28, 0.6),
      rgba(18, 21, 28, 0.6)
    ),
    url('/imagesFSCC/machine-learning-bg-FSCC.webp') center/cover no-repeat;
}

.ai-promptFSCC {
  background: linear-gradient(
      0deg,
      rgba(18, 21, 28, 0.6),
      rgba(18, 21, 28, 0.6)
    ),
    url('/imagesFSCC/promt-bgFSCC.webp') center/cover no-repeat;
}

.ai-toolsFSCC {
  background: linear-gradient(
      0deg,
      rgba(18, 21, 28, 0.6),
      rgba(18, 21, 28, 0.6)
    ),
    url('/imagesFSCC/ai-bgFSCC.webp') center/cover no-repeat;
}

.ai-item__contentFSCC {
  padding: 100px 30px 30px 30px;
  width: calc(100% - 90px);
}

@media (max-width: 450px) {
  .ai-item__contentFSCC {
    padding: 95px 12px 30px 12px;
    width: calc(100% - 70px);
  }
}

.ai-item__descFSCC {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}

.ai-item__titleFSCC {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.ai-item__btnFSCC {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #10fcfc;
  border: none;
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ai-item__btnFSCC img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 450px) {
  .ai-item__btnFSCC {
    width: 48px;
    height: 48px;
    right: 20px;
    bottom: 20px;
  }
}

.howFSCC {
  padding: 50px 0;
  background: #000;
}

.how__gridFSCC {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.how__imageFSCC img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 2px 10px #10fcfc;
  object-fit: cover;
}

@media (max-width: 900px) {
  .how__imageFSCC {
    order: 3;
    margin-top: 40px;
  }
}

.how__titleFSCC {
  color: #fafafa;
  font-family: Sigmar;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

.how__subtitleFSCC {
  color: rgba(250, 250, 250, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 40px;
}

.how__stepsFSCC {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-stepFSCC {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #1e1e1e;
  padding: 24px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.25s ease;
}

.how-step__titleFSCC {
  margin: 0;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.9px;
}

.how-stepFSCC:not(.how-step--activeFSCC) .how-step__titleFSCC {
  color: #fafafa;
}

.how-stepFSCC:not(.how-step--activeFSCC) .how-step__descFSCC {
  color: rgba(250, 250, 250, 0.9);
}

.how-step__descFSCC {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0;
}

.how-step__iconFSCC img {
  width: 28px;
  height: 28px;
}

.how-step--activeFSCC {
  background: #8ffbff;
}

.how-step--activeFSCC .how-step__titleFSCC,
.how-step--activeFSCC .how-step__descFSCC {
  color: #000;
}

/* pricing section  */
.pricingFSCC {
  background: #000;
  padding: 80px 0;
}

.pricingFSCC__title {
  color: #fafafa;
  font-family: Sigmar;
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.9px;
  margin: 0 0 20px;
}

.pricingFSCC__subtitle {
  color: rgba(250, 250, 250, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 640px;
  margin: 0 0 32px;
}

.pricingFSCC__label {
  color: #fafafa;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}

.pricingFSCC__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-rowFSCC {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 6px;
}

/* ===== PILLS ===== */

.pricing-pillFSCC {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 24px;
  background: #1e1e1e;
  border-radius: 30px;
  transition: background 0.25s ease, color 0.25s ease;
}

.pricing-pillFSCC--level {
  border-radius: 30px;
}

.pricing-pillFSCC--price {
  border-radius: 30px;
}

.pricing-pillFSCC__text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.9px;
  color: #fafafa;
  white-space: nowrap;
}

.pricing-pillFSCC__icon {
  width: 24px;
  height: 24px;
}

/* ===== ACTIVE STATE ===== */

.pricing-rowFSCC--active .pricing-pillFSCC {
  background: #10fcfc;
}

.pricing-rowFSCC--active .pricing-pillFSCC__text {
  color: rgba(0, 0, 0, 0.9);
}

/* ===== CTA BUTTON ===== */

.pricingFSCC__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 30px;
  border: none;
  background: #10fcfc;
  cursor: pointer;

  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 24px 0 0;
}

.pricingFSCC__cta-icon {
  width: 28px;
  height: 28px;
}

.pricingFSCC__footnote {
  margin: 24px 0 0;
  color: rgba(250, 250, 250, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

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

  .pricingFSCC__title {
    font-size: 32px;
    line-height: 32px;
  }

  .pricing-rowFSCC {
    grid-template-columns: 1.4fr 1fr;
  }

  .pricing-pillFSCC {
    padding: 14px 18px;
  }

  .pricing-pillFSCC__text {
    font-size: 18px;
    letter-spacing: -0.5px;
  }

  .pricingFSCC__cta {
    font-size: 22px;
    padding: 16px 26px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .pricing-rowFSCC {
    grid-template-columns: 1.3fr 1fr;
  }

  .pricing-pillFSCC__text {
    font-size: 16px;
  }

  .pricing-pillFSCC__icon {
    width: 20px;
    height: 20px;
  }
}

.reviewsFSCC {
  background: #000;
  padding: 80px 0;
}

.reviewsFSCC__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.reviewsFSCC__title {
  font-family: Sigmar;
  font-size: 36px;
  color: #fafafa;
  margin: 0;
}

.reviewsFSCC__rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewsFSCC__rating-icon {
  width: 48px;
}

.reviewsFSCC__rating-text {
  color: #fafafa;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.reviewsFSCC__rating-value {
  color: #10fcfc;
}

.reviewsFSCC__rating-sub {
  color: #a1a1aa;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: -0.4px;
  margin: 2px 0 0 0;
}

.reviewsFSCC__slider {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: visible;
}

.reviewCardFSCC {
  background: #161616;
  border-radius: 34px;
  padding: 28px;
  width: 100%;
  border: 1px solid rgba(16, 252, 252, 0.25);
  box-shadow: 0 0 20px rgba(16, 252, 252, 0.2);
}

.reviewCardFSCC__badge {
  display: inline-block;
  padding: 6px 12px;
  background: #2a2a2a;
  color: #a1a1aa;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 16px;
}

.reviewCardFSCC__user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* FIXED — идеально круглый аватар + правильный размер */
.reviewCardFSCC__user-icon {
  width: 48px;
  height: 48px;
  background: #3c3c3c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.reviewCardFSCC__user-icon img {
  width: 24.25px;
  height: 29.659px;
  object-fit: contain;
}

.reviewCardFSCC__name {
  color: #fafafa;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0 0 4px 0;
}

.reviewCardFSCC__location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewCardFSCC__location span {
  color: #a1a1aa;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 16px;
}

.reviewCardFSCC__location img {
  width: 14px;
}

.reviewCardFSCC__text {
  color: #a1a1aa;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 20px;
}

.reviewsFSCC__dots {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dotFSCC {
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  transition: 0.3s;
}

.dotFSCC.active {
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .reviewsFSCC {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .reviewsFSCC__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .reviewsFSCC__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 0;
  }

  .reviewsFSCC__slider::-webkit-scrollbar {
    display: none;
  }
  .reviewsFSCC__slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .reviewCardFSCC {
    min-width: 100%;
    scroll-snap-align: center;
  }

  .reviewsFSCC__dots {
    display: flex;
  }
}
.faqFSCC {
  padding: 80px 0;
  background: #000;
}

.faq-gridFSCC {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-titleFSCC {
  color: #fafafa;
  font-family: Sigmar;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.faq-subtitleFSCC {
  color: #c5c5c5;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.faq-listFSCC {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-itemFSCC {
  border-radius: 20px;
  background: rgba(18, 21, 28, 0.6);
  box-shadow: 0 2px 10px rgba(16, 252, 252, 0.5);
  padding: 24px 30px;
  transition: 0.3s ease;
}

.faq-headerFSCC {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.faq-headerFSCC span {
  color: #fafafa;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.faq-arrowFSCC {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-itemFSCC.active .faq-arrowFSCC {
  transform: rotate(180deg);
}

.faq-contentFSCC {
  color: #c5c5c5;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.25s ease;
  margin-top: 0;
}

.faq-itemFSCC.active .faq-contentFSCC {
  margin-top: 12px;
}

@media (max-width: 480px) {
  .faqFSCC {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .faq-gridFSCC {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-titleFSCC {
    font-size: 36px;
    line-height: 36px;
  }

  .faq-subtitleFSCC {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-itemFSCC {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .faq-headerFSCC span {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-contentFSCC {
    font-size: 11px;
    line-height: 16px;
  }

  .faq-arrowFSCC {
    width: 18px;
    height: 18px;
  }
}

/* contact section */

.contactFSCC {
  background: #000;
  padding: 80px 0 120px;
}

.contact__gridFSCC {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* --- FORM LEFT --- */

.contact-formFSCC {
  flex: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inputFSCC,
.textareaFSCC {
  width: 100%;
  border: none;
  outline: none;
  padding: 18px 26px;
  border-radius: 40px;

  background: #262626;
  color: #fafafa;

  font-family: 'Poppins', sans-serif, sans-serif;
  font-size: 16px;
  font-weight: 400;

  box-shadow: 0 0 14px rgba(16, 252, 252, 0.6);
}

.textareaFSCC {
  height: 190px;
  resize: none;
  border-radius: 40px;
}

.btn-enrollFSCC {
  width: 100%;
  padding: 20px 0;
  border: none;
  border-radius: 40px;
  cursor: pointer;

  background: #10fcfc;
  color: #000;

  font-family: Poppins, system-ui;
  font-size: 20px;
  font-weight: 600;
}

.contact-infoFSCC {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-titleFSCC {
  margin: 0 0 24px;
  color: #fafafa;
  font-family: Sigmar, system-ui;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.contact-text-blockFSCC {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.support-iconFSCC {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 30px;
  background: transparent;
}

.contact-textFSCC {
  color: #c5c5c5;
  font-family: Poppins, system-ui;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.4px;
}

.popupFSCC {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.popupFSCC.active {
  opacity: 1;
  visibility: visible;
}

.popup-innerFSCC {
  width: min(800px, 94%);
  padding: 50px 30px;
  border-radius: 30px;

  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url('/imagesFSCC/messageFSCC.png') center/cover no-repeat;

  box-shadow: 0 2px 10px rgba(16, 252, 252, 0.5);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* TEXT */
.popup-titleFSCC {
  margin: 0 0 14px;
  color: #fff;
  font-family: Sigmar, system-ui;
  font-size: clamp(30px, 5vw, 58px);
}

.popup-subtitleFSCC {
  margin: 0 0 20px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  max-width: 85%;
}

.popup-logoFSCC {
  width: clamp(90px, 16vw, 150px);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .popup-innerFSCC {
    width: 92%;
    padding: 30px 18px;
    border-radius: 20px;
  }

  .popup-titleFSCC {
    font-size: 26px;
  }

  .popup-subtitleFSCC {
    font-size: 14px;
  }

  .popup-logoFSCC {
    width: 80px;
  }
}

@media (max-width: 1024px) {
  .contact__gridFSCC {
    gap: 40px;
  }

  .contact-titleFSCC {
    font-size: 40px;
  }

  .contact-infoFSCC {
    flex-basis: 360px;
  }
}

@media (max-width: 768px) {
  .contactFSCC {
    padding: 60px 0 80px;
  }

  .contact__gridFSCC {
    flex-direction: column;
    gap: 40px;
  }

  .contact-infoFSCC {
    order: 1;
    flex-basis: auto;
  }

  .contact-formFSCC {
    order: 2;
    width: 100%;
  }

  .contact-titleFSCC {
    font-size: 38px;
  }

  .support-iconFSCC {
    width: 76px;
    height: 76px;
  }

  .contact-textFSCC {
    font-size: 13px;
    line-height: 18px;
  }

  .inputFSCC,
  .textareaFSCC {
    font-size: 14px;
    padding: 16px 20px;
  }

  .btn-enrollFSCC {
    font-size: 18px;
    padding: 18px 0;
  }
}

/* payments section */
.paymentsFSCC {
  width: 100%;
  background: #000;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.paymentsFSCC__wrapper {
  display: flex;
  width: max-content;
  animation: scrollFSCC 18s linear infinite;
}

.paymentsFSCC__track {
  display: flex;
  gap: 80px;
}

.paymentsFSCC__track img {
  height: 42px;
  opacity: 0.35;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

@keyframes scrollFSCC {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .paymentsFSCC__track {
    gap: 50px;
  }

  .paymentsFSCC__track img {
    height: 30px;
  }

  .paymentsFSCC__wrapper {
    animation-duration: 14s;
  }
}
.footerFSCC {
  background: #000;
  padding: 80px 0;
}

.footer-containerFSCC {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID 2×2: logo | right / left | right */
.footer-gridFSCC {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 32px;
  grid-template-areas:
    'logo right'
    'left right';
}

/* ЛОГО В СВОЕЙ ОБЛАСТИ СВЕРХУ СЛЕВА */
.footer-logoFSCC {
  grid-area: logo;
  width: 79px;
  height: auto;
}

/* ЛЕВЫЙ ТЕКСТОВЫЙ БЛОК */
.footer-leftFSCC {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-titleFSCC {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.footer-descFSCC,
.footer-copyFSCC {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.footer-18FSCC {
  width: 60px;
  height: auto;
  margin-top: 16px;
}

/* ПРАВАЯ КОЛОНКА, ЗАНИМАЕТ ДВЕ СТРОКИ И ЦЕНТРУЕТСЯ ПО ВЕРТИКАЛИ */
.footer-rightFSCC {
  grid-area: right;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* КНОПКА CONTACT */
.footer-btnFSCC {
  background: #10fcfc;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  cursor: pointer;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-btnFSCC:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* НАВИГАЦИЯ СПРАВА */
.footer-navFSCC {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav-titleFSCC {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-nav-listFSCC {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-listFSCC li {
  margin-bottom: 10px;
}

.footer-nav-listFSCC a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-nav-listFSCC a:hover {
  opacity: 0.6;
}

/* МОБИЛКА */
@media (max-width: 768px) {
  .footerFSCC {
    padding: 60px 0;
  }

  .footer-gridFSCC {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 32px;
    grid-template-areas:
      'logo'
      'left'
      'right';
  }

  .footer-rightFSCC {
    align-self: flex-start;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
  }

  .footer-btnFSCC {
    text-align: center;
    font-size: 18px;
  }

  .footer-navFSCC {
    align-items: flex-start;
  }

  .footer-nav-titleFSCC {
    font-size: 18px;
  }
}

/* terms */
.terms {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
}

.terms h1 {
  color: #fafafa;
  font-family: Sigmar;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 100% */
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.terms p,
ul,
ol,
li {
  color: #c5c5c5;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}

@media (max-width: 720px) {
  .terms {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .terms h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .terms p,
  ul,
  ol,
  li {
    font-size: 12px;
  }
}

.terms ul {
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin-left: 0;
}

.terms ol {
  list-style-type: decimal !important;
  padding-left: 20px !important;
  margin-left: 0;
}

.terms ul ul,
.terms ol ol {
  list-style-type: circle !important;
}

.terms li {
  display: list-item !important;
}
