/* =============================================================================
   /invest-club - ЛОКАЛЬНІ стилі ери дизайн-системи.
   ─────────────────────────────────────────────────────────────────────────
   Сюди під час поблокової міграції (2026-08) переїжджають:
     - дрібні доповнення до спільних блоків course.css (напр. списки у FAQ);
     - ізольовані УНІКАЛЬНІ блоки клубу, яких у системі немає
       (чат-бабли, мапа-обгортка, учасники, донат-чарт, фліп-картки, кейси).
   Легасі style.css поступово порожніє і наприкінці видаляється.
   Файл вантажиться ПІСЛЯ course.css (див. extra_css у index.php).
   ============================================================================= */

/* ── Вертикальний ритм: блоки course.css ідуть без margin-top ──
   (той самий рецепт, що course/investor/css/land.css) */
.lv-author { margin-top: var(--space-20); }
.lv-faq    { margin-top: var(--space-20); }
@media only screen and (max-width: 743.98px) {
  .lv-author { margin-top: var(--space-12); }
  .lv-faq    { margin-top: var(--space-12); }
}

/* ── FAQ: списки всередині відповідей ──
   course.css стилізує лише <p>; у клубних відповідях є <ul> (термін, дохідність,
   час). Типографіка 1:1 з .lv-faq__item p, маркер - брендова крапка. */
.lv-faq__item ul {
  margin: 0;
  padding: 0 48px 16px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a5661;
}
.lv-faq__item ul li { margin-top: 4px; list-style: disc; }
.lv-faq__item ul li::marker { color: #00bfa5; }
/* Абзац перед списком уже дав 16px знизу - підтягуємо список до нього */
.lv-faq__item p + ul { margin-top: -8px; }
@media only screen and (max-width: 743.98px) {
  .lv-faq__item ul { padding-right: 0; }
}

/* ── Спільний заголовок кастомних клубних блоків ──
   Дзеркалить .outcomes h2 із course.css; потрібен, щоб кастомні секції
   пережили смерть глобального h2 {} з легасі style.css наприкінці міграції. */
.club-h2 {
  margin: 0 0 var(--space-10);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-2xl);
  line-height: 34px;
  color: var(--color-text);
  text-align: center;
}
@media only screen and (max-width: 743.98px) {
  .club-h2 { margin-bottom: var(--space-6); font-size: 22px; line-height: 29px; }
}

/* ── Соціальний доказ ($1млн+): фото + цитата засновника ──
   Рецепт картки - як lv-author (м'ятне тло, фото-колонка), фото ліворуч. */
.club-proof { margin-top: var(--space-20); }
.club-proof__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--color-bg-mint);
  border-radius: var(--radius-2xl);
}
.club-proof__media img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}
.club-proof__quote { margin: 0; }
.club-proof__quote::before {
  content: '“';
  display: block;
  font-size: 64px;
  line-height: 0.6;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}
.club-proof__quote p {
  margin: 0;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}
.club-proof__quote p + p { margin-top: var(--space-4); }
.club-proof__quote .club-proof__accent {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}
@media only screen and (max-width: 1279.98px) {
  .club-proof__card { gap: 24px; padding: 24px; }
  .club-proof__quote p { font-size: var(--text-md); }
}
@media only screen and (max-width: 743.98px) {
  .club-proof { margin-top: var(--space-12); }
  .club-proof__card { grid-template-columns: 1fr; padding: 16px; }
  .club-proof__media img { max-height: 320px; }
}

/* ── Автор: клубне біо - кілька абзаців + лінк на анкету ──
   Компонент передає їх однією обгорткою .lv-author__bio (див. index.php). */
.lv-author__bio p + p { margin-top: 12px; }
.lv-author__bio a { color: #00a890; text-decoration: underline; text-underline-offset: 3px; }
.lv-author__bio a:hover { color: #00bfa5; }

/* ── Гарантія: клубні доповнення до спільного .guarantee ──
   Обіцянка з цифрами - виділений «квотою» рядок; умови - список із
   системними чеками (той самий SVG, що в .for-whom__list). */
.guarantee__text .club-guarantee__promise {
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-mint);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}
.club-guarantee__terms {
  max-width: 470px;
  margin: var(--space-4) auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.club-guarantee__terms li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
}
.club-guarantee__terms li + li { margin-top: 10px; }
.club-guarantee__terms li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
/* Список - теж «абзац» у потоці guarantee__text: наступному p потрібен відступ */
.club-guarantee__terms + p { margin-top: var(--space-4); }
@media only screen and (max-width: 743.98px) {
  .club-guarantee__terms li { font-size: var(--text-base); align-items: flex-start; }
  .club-guarantee__terms li::before { margin-top: 2px; }
}

/* =============================================================================
   ЧАТ-HERO (sc1) та «Хто в клубі» (sc3) - УНІКАЛЬНІ блоки клубу.
   Перенесено з легасі style.css ДОСЛІВНО (2026-08): бабл-«повідомлення» на
   фонових PNG, кругле фото Кіра з градієнтним кільцем, живий час (#time_1/2
   ставить інлайн-скрипт унизу сторінки). Верстка піксель-тюнена офсетами під
   3 брейкпоінти - НЕ «оптимізувати» значення без візуальної звірки.
   ============================================================================= */
.sc1 {
  margin-top: 64px;
}
.sc1__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc1__col h1 {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #212121;
}
.sc1__col .h1_descr {
  margin-top: 16px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #212121;
}
.sc1__col .row1 {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sc1__col .row1 .wrap {
  width: 33%;
}
.sc1__col .row1 .row-item1 {
  position: relative;
  left: -80px;
  top: 170px;
  width: 365px;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
}
.sc1__col .row1 .row-item1 img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc1__col .row1 .row-item2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sc1__col .row1 .row-item2 .item-foto {
  width: 353px;
  height: 353px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#0CBD66), to(#049DCB));
  background: linear-gradient(180deg, #0CBD66 0%, #049DCB 100%);
  border-radius: 50%;
}
.sc1__col .row1 .row-item2 .item-foto img {
  width: 330.94px;
  height: 330.94px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}
.sc1__col .row1 .row-item2 span {
  display: none;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #212121;
}
.sc1__col .row1 .row-item3 {
  position: relative;
  left: 15px;
  top: 60px;
  width: 422px;
  height: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/sc1/4xdesk.png) no-repeat;
  background-size: 100% 100%;
}
.sc1__col .row1 .row-item3 span {
  position: absolute;
  right: 45px;
  bottom: 17px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #48db65;
}
.sc1__col .row2 {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1279.98px) {
  .sc1 {
    margin-top: 32px;
  }
  .sc1__col .row1 {
    height: 287px;
  }
  .sc1__col .row1 .row-item1 {
    width: 247px;
    height: 142px;
    left: -25px;
    top: 140px;
  }
  .sc1__col .row1 .row-item2 .item-foto {
    width: 247px;
    height: 247px;
  }
  .sc1__col .row1 .row-item2 .item-foto img {
    width: 231.56px;
    height: 231.56px;
    border: 1px solid #FFFFFF;
  }
  .sc1__col .row1 .row-item2 span {
    display: none;
  }
  .sc1__col .row1 .row-item3 {
    width: 310px;
    height: 115px;
    left: -26px;
    top: 70px;
    background: url(../img/sc1/4xtab.png) no-repeat;
    background-size: 100%;
    background-position: 6px 0;
  }
  .sc1__col .row1 .row-item3 span {
    position: absolute;
    right: 31px;
    bottom: 12px;
  }
  .sc1__col .row2 {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc1 {
    margin-top: 9px;
  }
  .sc1__col h1 {
    font-size: 24px;
    line-height: 29px;
  }
  .sc1__col .h1_descr {
    display: none;
  }
  .sc1__col .row1 {
    margin-top: 24px;
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sc1__col .row1 .wrap:first-child {
    width: 50%;
  }
  .sc1__col .row1 .wrap:nth-child(2) {
    width: 50%;
  }
  .sc1__col .row1 .wrap:nth-child(3) {
    width: 100%;
  }
  .sc1__col .row1 .row-item1 {
    margin-top: 24px;
    width: 343px;
    height: auto;
    left: 0;
    top: 0;
  }
  .sc1__col .row1 .row-item2 .item-foto {
    width: 160px;
    height: 160px;
  }
  .sc1__col .row1 .row-item2 .item-foto img {
    width: 150px;
    height: 150px;
  }
  .sc1__col .row1 .row-item2 span {
    display: none;
  }
  .sc1__col .row1 .row-item3 {
    width: 216px;
    height: 72px;
    left: -5px;
    top: 10px;
    background: url(../img/sc1/4xmob.png) no-repeat;
    background-size: 100%;
  }
  .sc1__col .row1 .row-item3 span {
    position: absolute;
    right: 27px;
    bottom: 2px;
    font-size: 8px;
  }
  .sc1__col .row2 {
    margin-top: 24px;
  }
}

.sc3 {
  margin-top: 84px;
}
.sc3 .row1 {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 70px;
}
.sc3 .row1 .wrap {
  width: 33%;
}
.sc3 .row1 .row-item1 {
  position: relative;
  width: 346px;
  height: 240px;
  left: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}
.sc3 .row1 .row-item1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 22px;
  gap: 20px;
  list-style: none;
}
.sc3 .row1 .row-item1 ul li {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  color: #212121;
}
.sc3 .row1 .row-item2 {
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sc3 .row1 .row-item2 .item-foto {
  width: 274px;
  height: 274px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#0CBD66), to(#049DCB));
  background: linear-gradient(180deg, #0CBD66 0%, #049DCB 100%);
  border-radius: 50%;
}
.sc3 .row1 .row-item2 .item-foto img {
  width: 256px;
  height: 256px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}
.sc3 .row1 .row-item2 span {
  display: none;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #212121;
}
.sc3 .row1 .row-item3 {
  position: relative;
  left: -15px;
  top: -30px;
  width: 422px;
  height: 164px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/sc3/4xdesk.png) no-repeat;
  background-size: 100% 100%;
}
.sc3 .row1 .row-item3 span {
  position: absolute;
  right: 50px;
  bottom: 15px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #48db65;
}

@media only screen and (max-width: 1279.98px) {
  .sc3 .row1 {
    padding: 0 18px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sc3 .row1 .row-item1 {
    width: 271px;
    height: 204px;
  }
  .sc3 .row1 .row-item1 ul li {
    font-size: 17px;
  }
  .sc3 .row1 .row-item2 {
    margin-left: 24px;
  }
  .sc3 .row1 .row-item2 .item-foto {
    width: 190px;
    height: 190px;
  }
  .sc3 .row1 .row-item2 .item-foto img {
    width: 177px;
    height: 177px;
  }
  .sc3 .row1 .row-item2 span {
    margin-top: 4px;
  }
  .sc3 .row1 .row-item3 {
    width: 255px;
    height: 116px;
    left: 24px;
    top: -35px;
    background: url(../img/sc3/4xtab.png) no-repeat;
    background-size: 100%;
    background-position: 6px 0;
  }
  .sc3 .row1 .row-item3 span {
    position: absolute;
    right: 28px;
    bottom: 18px;
    font-size: 11px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc3 {
    margin-top: 40px;
  }
  .sc3 .row1 {
    margin-top: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0px;
  }
  .sc3 .row1 .wrap:first-child {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sc3 .row1 .wrap:nth-child(2) {
    width: 50%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sc3 .row1 .wrap:nth-child(3) {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sc3 .row1 .row-item1 {
    width: 236px;
    height: 138px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: unset;
  }
  .sc3 .row1 .row-item1 ul {
    gap: 6px;
    padding: 12px;
  }
  .sc3 .row1 .row-item1 ul li {
    font-size: 16px;
  }
  .sc3 .row1 .row-item2 {
    margin: 0;
    margin-top: 24px;
  }
  .sc3 .row1 .row-item2 .item-foto {
    width: 140px;
    height: 140px;
  }
  .sc3 .row1 .row-item2 .item-foto img {
    width: 130px;
    height: 130px;
  }
  .sc3 .row1 .row-item2 span {
    margin-top: 4px;
    -webkit-transform: translateX(28px);
            transform: translateX(28px);
  }
  .sc3 .row1 .row-item3 {
    width: 177px;
    height: 70px;
    left: 25px;
    top: 5px;
    background: url(../img/sc3/4xmob.png) no-repeat;
    background-size: 100%;
  }
  .sc3 .row1 .row-item3 span {
    position: absolute;
    right: 22px;
    bottom: 5px;
    font-size: 8px;
  }
}

/* =============================================================================
   УЧАСНИКИ ТА КАПІТАЛ (sc4) - унікальний блок клубу, перенесено ДОСЛІВНО.
   Дані карток - PHP-масив $clubMembers в index.php (одне джерело для
   десктопа і мобільного «Показати ще»; кнопку обслуговує js/app.js).
   ============================================================================= */
.sc4 {
  margin-top: 90px;
}

.sc4 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.sc4__row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.sc4__row-mob {
  display: none;
}

.sc4__col {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 32px 24px;
  gap: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}

.sc4__col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc4__col-item img {
  width: 16px;
  height: 16px;
}

.sc4__col-item span:first-of-type {
  min-width: 55px;
  padding-left: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #00BFA5;
}

.sc4__col-item span:last-of-type {
  padding-left: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
}

.sc4__row-last {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #00BFA5;
  text-align: center;
}

@media only screen and (max-width: 1279.98px) {
  .sc4 {
    margin-top: 64px;
  }
  .sc4 p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
  }
  .sc4__row {
    display: none;
  }
  .sc4__row-mob {
    display: block;
    margin-top: 24px;
    padding: 32px 22px 0px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
    box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
    border-radius: 16px;
  }
  .sc4__row-mob-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
  .sc4__row-mob-body {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
  }
  .sc4__row-mob-body.close {
    height: 0;
  }
  .sc4__row-mob-btn {
    margin-top: 16px;
    width: 100%;
    height: 49px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #00BFA5;
    border-top: 1px solid #eee;
    cursor: pointer;
  }
  .sc4__row-mob-btn img {
    margin-left: 8px;
    width: auto;
  }
  .sc4__row-last {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc4__row-last {
    margin-top: 24px;
  }
}

/* =============================================================================
   ФОРМАТ КЛУБУ (sc8), ~100 ЗУСТРІЧЕЙ (sc9, донат-чарт + легенди),
   «ПОГЛЯНЬ ВСЕРЕДИНУ» (sc14) - унікальні блоки, перенесено ДОСЛІВНО.
   ============================================================================= */
.sc8 {
  margin-top: 90px;
}
.sc8 h2 {
  font-size: 28px;
}
.sc8__row1 {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sc8__row1 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.sc8__row1 .wrap .row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.sc8__row1 .wrap .row-item:first-child {
  color: #FFFFFF;
  background: #263238;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.sc8__row2 {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sc8__row2 .wrap {
  width: 552px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12.75px;
}
.sc8__row2 .wrap .h3 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 21px;
  color: #212121;
}
.sc8__row2 .wrap .list {
  margin-top: 21px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
.sc8__row2 .wrap .list li {
  position: relative;
  padding-left: 10px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #364153;
}
.sc8__row2 .wrap .list li::before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  background-color: #155DFC;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sc8__row2 .wrap .list li:nth-child(2)::before {
  background-color: #C27AFF;
}
.sc8__row2 .wrap .list li:nth-child(3)::before {
  background-color: #FF8904;
}
.sc8__row2 .wrap .list li:nth-child(4)::before {
  background-color: #05DF72;
}
.sc8__row2 .wrap img {
  margin-top: 22px;
  width: 426px;
  height: auto;
}

@media only screen and (max-width: 1279.98px) {
  .sc8 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc8 {
    margin-top: 40px;
  }
  .sc8 h2 {
    font-size: 24px;
  }
  .sc8__row1 {
    margin-top: 24px;
  }
  .sc8__row1 .wrap .row-item {
    padding: 4px 38px;
    font-size: 12px;
  }
  .sc8__row2 .wrap {
    padding: 12px 26px;
  }
  .sc8__row2 .wrap .h3 {
    font-size: 13px;
  }
  .sc8__row2 .wrap .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sc8__row2 .wrap .list li {
    width: 50%;
    font-size: 10px;
  }
  .sc8__row2 .wrap img {
    width: 283px;
  }
}

.sc9 {
  margin-top: 90px;
}
.sc9 h2 {
  font-size: 28px;
}
.sc9__row {
  margin-top: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sc9__row .wrap {
  width: 552px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12.75px;
}
.sc9__row .wrap .tg {
  width: 24px;
  height: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.sc9__row .wrap .h3 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 21px;
  color: #212121;
}
.sc9__row .wrap .row1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.sc9__row .wrap .row1 .item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 6px 7px 7px;
  background: #DBEAFE;
  border-radius: 8.75px;
}
.sc9__row .wrap .row1 .item span {
  -ms-flex-item-align: center;
      align-self: center;
  font-style: normal;
  font-weight: 700;
  font-size: 11.1469px;
  line-height: 18px;
  color: #1447E6;
}
.sc9__row .wrap .row1 .item span:last-child {
  font-weight: 400;
  color: #155DFC;
}
.sc9__row .wrap .row1 .item:last-child {
  background: #DCFCE7;
}
.sc9__row .wrap .row1 .item:last-child span {
  color: #008236;
}
.sc9__row .wrap .row1 .item:last-child span:last-child {
  color: #00A63E;
}
.sc9__row .wrap .chart {
  width: 270px;
  height: auto;
}
.sc9__row .wrap .row2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sc9__row .wrap .row2 .item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px;
  gap: 7px;
  background: #EFF6FF;
  border-radius: 8.75px;
}
.sc9__row .wrap .row2 .item p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #1C398E;
}
.sc9__row .wrap .row2 .item .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  list-style: none;
}
.sc9__row .wrap .row2 .item .list li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sc9__row .wrap .row2 .item .list li span:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sc9__row .wrap .row2 .item .list li span:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: #364153;
}
.sc9__row .wrap .row2 .item .list li span:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-style: normal;
  font-weight: 600;
  font-size: 10.3359px;
  line-height: 14px;
  color: #101828;
}
.sc9__row .wrap .row2 .item .list li:nth-child(1) span:first-child {
  background-color: #1E40AF;
}
.sc9__row .wrap .row2 .item .list li:nth-child(2) span:first-child {
  background-color: #3B82F6;
}
.sc9__row .wrap .row2 .item .list li:nth-child(3) span:first-child {
  background-color: #60A5FA;
}
.sc9__row .wrap .row2 .item .list li:nth-child(4) span:first-child {
  background-color: #93C5FD;
}
.sc9__row .wrap .row2 .item:last-child {
  background-color: #F0FDF4;
}
.sc9__row .wrap .row2 .item:last-child .list li:nth-child(1) span:first-child {
  background-color: #047857;
}
.sc9__row .wrap .row2 .item:last-child .list li:nth-child(2) span:first-child {
  background-color: #059669;
}
.sc9__row .wrap .row2 .item:last-child .list li:nth-child(3) span:first-child {
  background-color: #10B981;
}
@media only screen and (max-width: 1279.98px) {
  .sc9 {
    margin-top: 80px;
  }
  .sc9__row .wrap .tg {
    width: 20px;
    height: auto;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc9 {
    margin-top: 40px;
  }
  .sc9 h2 {
    font-size: 16px;
  }
  .sc9__row {
    margin-top: 24px;
  }
  .sc9__row .wrap {
    width: 100%;
    gap: 0;
  }
  .sc9__row .wrap .tg {
    display: none;
  }
  .sc9__row .wrap .h3 {
    font-size: 14px;
  }
  .sc9__row .wrap .row1 {
    margin-top: 4px;
  }
  .sc9__row .wrap .chart {
    margin-top: 21px;
    width: 130px;
  }
  .sc9__row .wrap .row2 {
    margin-top: 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc9__row .wrap .row2 .item {
    width: 100%;
  }
}

.sc14 {
  margin-top: 90px;
}
.sc14__row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px 16px;
  gap: 24px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}
.sc14__row .col1 {
  width: 435px;
  border-radius: 16px;
  overflow: hidden;
}
.sc14__row .col1 img {
  width: auto;
  height: 291px;
}
.sc14__row .col2 .wrap p {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #212121;
}
.sc14__row .col2 .wrap ul {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 30px;
  list-style: none;
}
.sc14__row .col2 .wrap ul li {
  position: relative;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}
.sc14__row .col2 .wrap ul li:not(:first-child) {
  margin-top: 8px;
}
.sc14__row .col2 .wrap ul li::before {
  position: absolute;
  top: 8px;
  left: -20px;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #00BFA5;
  border-radius: 50%;
}
.sc14__row .col2 .wrap .btn {
  margin-top: 24px;
  width: 192px;
  height: auto;
}
.sc14__row .col2 .wrap .btn span {
  font-size: 14px;
}

@media only screen and (max-width: 1279.98px) {
  .sc14 {
    margin-top: 80px;
  }
  .sc14__row {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  .sc14__row .col1 {
    width: 436px;
  }
  .sc14__row .col2 {
    width: 436px;
  }
  .sc14__row .col2 .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc14__row .col2 .wrap .btn {
    width: 324px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc14 {
    margin-top: 40px;
  }
  .sc14__row {
    margin-top: 24px;
  }
  .sc14__row .col1 {
    width: 100%;
  }
  .sc14__row .col2 {
    width: 100%;
  }
  .sc14__row .col2 .wrap .btn {
    width: 100%;
  }
}

/* =============================================================================
   ФЛІП-КАРТКИ «Що отримає учасник» (sc10) та КЕЙСИ (sc13) - унікальні
   інтерактиви клубу, перенесено ДОСЛІВНО (рішення власника: механіку
   зберігаємо). 3D-фліп і свайпери ініціює js/app.js.
   ============================================================================= */
.sc10 {
  margin-top: 40px;
}
.sc10 .sc10__row .swiper1 {
  width: 100%;
  padding: 40px 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sc10 .sc10__row .swiper1 .swiper-slide {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card {
  position: relative;
  width: 268px;
  height: 354px;
  max-width: 300px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #00BFA5;
  border-radius: 16px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front,
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  font-size: 14px;
  color: #414955;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row1 .wrap {
  width: 81px;
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  border: 1px solid #20C7B0;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 50%;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row1 .wrap img {
  width: 42px;
  height: 42px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row2 {
  margin-top: 21px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row2 span {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #212121;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row3 span {
  display: none;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #212121;
}
@media only screen and (max-width: 1279.98px) {
  .sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row3 span {
    display: block;
  }
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-front .row3 img {
  width: 38px;
  height: 38px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row1 .wrap {
  width: 81px;
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  border: 1px solid #20C7B0;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 50%;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row1 .wrap img {
  width: 42px;
  height: 42px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row2 {
  margin-top: 21px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row2 span {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #414955;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row3 span {
  display: none;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #212121;
}
@media only screen and (max-width: 1279.98px) {
  .sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row3 span {
    display: block;
  }
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back .row3 img {
  width: 38px;
  height: 38px;
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card .flip-inner .flip-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.sc10 .sc10__row .swiper1 .swiper-slide .flip-card.active .flip-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .sc10 .sc10__row .swiper1 .swiper-slide .flip-card:hover .flip-inner {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
.sc10 .sc10__row .swiper1 .swiper-scrollbar1 {
  display: block !important;
  height: 5px;
  margin-top: 10px;
}
@media only screen and (max-width: 1279.98px) {
  .sc10 .sc10__row .swiper1 .swiper-scrollbar1 {
    display: none !important;
  }
}

@media only screen and (max-width: 743.98px) {
  .sc10__row .swiper .swiper-scrollbar {
    display: none;
  }
}

.sc13 {
  margin-top: 90px;
}
.sc13__row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc13__row .swiper3 {
  width: 100%;
  padding: 0;
  padding-bottom: 24px;
}
.sc13__row .swiper3 .swiper-wrapper {
  align-items: stretch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sc13__row .swiper3 .swiper-slide {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: auto;
}
.sc13__row .swiper3 .swiper-slide .card {
  position: relative;
  width: 100%;
  min-height: 408px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px 0px 16px;
  gap: 16px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
  overflow: hidden;
}
.sc13__row .swiper3 .swiper-slide .card .img-wrap {
  position: relative;
  width: 100%;
  height: 165px;
  /* фиксируем высоту */
  overflow: hidden;
}
.sc13__row .swiper3 .swiper-slide .card .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc13__row .swiper3 .swiper-slide .card p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}
/* ⚠️ Фікс легасі-бага (24.08): іконки рядків загорнуті в <picture>, тож
   старий селектор «p > img» ніколи не матчив - PNG рендерились натуральними
   36px і розпирали рядки. Другий селектор ловить img усередині picture. */
.sc13__row .swiper3 .swiper-slide .card p > img,
.sc13__row .swiper3 .swiper-slide .card p > picture > img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  flex-shrink: 0;
}
.sc13__row .swiper3 .swiper-slide .card hr {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  border: none;
  height: 1px;
  background-color: #00C2A8;
}
.sc13__row .swiper3 .swiper-slide .card .r1 {
  font-size: 16px;
  line-height: 19px;
}
.sc13__row .swiper3 .swiper-slide .card .r2 {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
.sc13__row .btn {
  margin-top: 16px;
  width: auto;
}

@media only screen and (max-width: 1279.98px) {
  .sc13__row .btn {
    margin-top: 8px;
    width: auto;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc13__row .btn span {
    font-size: 15px;
  }
}

/* =============================================================================
   УМОВИ УЧАСТІ (sc15) - ЛЕГАСІ-вигляд повернено за рішенням власника 24.08
   («раніше був набагато красивіше і лаконічніше»): тіл-рамка, великі номери,
   ховер-інверсія. CSS відновлено дослівно з доміграційного git (3005eca).
   ============================================================================= */
.sc15 {
  margin-top: 90px;
}
.sc15__row {
  margin-top: 40px;
}
.sc15__row .swiper4 {
  padding-bottom: 40px;
}
.sc15__row .swiper4 .swiper-slide {
  width: 268px;
  height: 354px;
  padding: 24px 17px 24px 24px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border: 1px solid #00BFA5;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sc15__row .swiper4 .swiper-slide .numb {
  font-weight: 600;
  font-size: 70px;
  line-height: 100%;
  color: #00BFA5;
}
.sc15__row .swiper4 .swiper-slide .title {
  margin-top: 38px;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #212121;
}
.sc15__row .swiper4 .swiper-slide .desc {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #212121;
}
.sc15__row .swiper4 .swiper-slide:hover {
  background: #00BFA5;
}
.sc15__row .swiper4 .swiper-slide:hover .numb, .sc15__row .swiper4 .swiper-slide:hover .title, .sc15__row .swiper4 .swiper-slide:hover .desc {
  color: #FFFFFF;
}
.sc15__row .swiper-scrollbar {
  margin-top: 32px;
  background: none;
}
.sc15__row .swiper-scrollbar .swiper-scrollbar-drag {
  background: #00BFA5;
}
.sc15__row .wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1279.98px) {
  .sc15__row .swiper4 .swiper-slide:hover {
    background: #fff;
  }
  .sc15__row .swiper4 .swiper-slide:hover .numb {
    color: #00BFA5;
  }
  .sc15__row .swiper4 .swiper-slide:hover .title,
  .sc15__row .swiper4 .swiper-slide:hover .desc {
    color: #212121;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc15__row {
    margin-top: 24px;
  }
  .sc15__row .swiper4 {
    padding-bottom: 24px;
  }
}

/* =============================================================================
   БАЗА, УСПАДКОВАНА ВІД ЛЕГАСІ (перенесено дослівно при смерті style.css):
   глобальні a/h2/.btn, легасі-контейнери [class*=__container] (у т.ч. блід
   слайдерних секцій управо), дрібні правки шапки, мобільне меню.
   Reset (*), html і body НЕ переносились - їх дає brand.css (+ header.css
   scroll-behavior). Компат по line-height - скоупним правилом нижче.
   ============================================================================= */
a {
  text-decoration: none;
  color: #212121;
  cursor: pointer;
}

h2 {
  text-align: center;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
}

@media only screen and (max-width: 1279.98px) {
  h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
  }
}
.btn {
  width: 343px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 32px;
  gap: 8px;
  background: #263238;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: pointer;
}
.btn span {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.btn img {
  width: 24px;
  height: 24px;
}

.btn:hover {
  background: #32424a;
}


.wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  overflow: clip;
}

@media only screen and (max-width: 1279.98px) {
  .wrapper {
    max-width: 743.98px;
  }
}
@media only screen and (max-width: 743.98px) {
  .wrapper {
    max-width: 374.98px;
  }
}
[class*=__container] {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 80px;
  overflow: clip;
}

@media only screen and (max-width: 1279.98px) {
  [class*=__container] {
    max-width: 743.98px;
    padding: 0px 16px;
  }
}
@media only screen and (max-width: 743.98px) {
  [class*=__container] {
    max-width: 374.98px;
    padding: 0px 16px;
  }
}
[class*=__container__slider] {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 80px;
  padding-right: 0;
  overflow: clip;
}
[class*=__container__slider] h2 {
  margin-right: 80px;
}
[class*=__container__slider] [class*=__row] .btn {
  margin-right: 80px;
}

@media only screen and (max-width: 1279.98px) {
  [class*=__container__slider] {
    max-width: 743.98px;
    padding: 0px 16px;
    padding-right: 0;
  }
  [class*=__container__slider] h2 {
    margin-right: 16px;
  }
  [class*=__container__slider] [class*=__row] .btn {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 743.98px) {
  [class*=__container__slider] {
    max-width: 374.98px;
    padding: 0px 16px;
    padding-right: 0;
  }
  [class*=__container__slider] h2 {
    margin-right: 16px;
  }
  [class*=__container__slider] [class*=__row] .btn {
    margin-right: 16px;
  }
}
.header_new {
  position: relative;
}

.header-mob-logo {
  display: none;
}
.header-mob-logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 743.98px) {
  .header-mob-logo {
    display: block;
    position: absolute;
    left: 50%;
    margin: 0 auto;
    width: 68px;
    height: 39px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* Video modal styles are in /resources/css/video-modal.css */



/* мобільне меню (легасі-правила клубу; працюють у парі зі спільним header.css) */
body.mob-menu-open .mob-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 16px;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
}

body.mob-menu-open .mob-menu .mob-menu-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

body.mob-menu-open .mob-menu .mob-menu-header .mob-menu-logo {
  width: 56px;
  height: 56px;
}

body.mob-menu-open .mob-menu .mob-menu-header .mob-menu-close {
  width: 15px;
  height: 15px;
  margin-left: auto;
}

body.mob-menu-open .mob-menu .mob-menu-list {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  font-size: 16px;
  line-height: 1.2;
}

body.mob-menu-open .mob-menu .mob-menu-list li {
  margin-top: 16px;
}

body.mob-menu-open .mob-menu .mob-menu-list li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #212529;
}

@media only screen and (max-width: 1279.98px) {
  body.mob-menu-open .mob-menu {
    padding: 0 0;
  }
}
@media only screen and (max-width: 743.98px) {
  body.mob-menu-open .mob-menu {
    padding: 0 0;
  }
}

/* =============================================================================
   МАПА (sc2) - НЕ ЧІПАТИ без візуальної звірки: стилі працюють у парі з
   js/map.js (d3 + world-atlas, фікс Криму). Перенесено дослівно.
   ============================================================================= */
.sc2 {
  margin-top: 100px;
  padding-left: 53px;
  padding-right: 53px;
}
.sc2__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc2__col h2 {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 48px;
  text-align: center;
  color: #212121;
}
.sc2__col .h2_descr {
  margin-top: 8px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #212121;
}
.sc2 img {
  margin-top: 40px;
  width: 100%;
  height: auto;
}
.sc2 .crop {
  display: none;
}

@media only screen and (max-width: 1279.98px) {
  .sc2__col h2 {
    font-size: 24px;
  }
  .sc2 {
    margin-top: 64px;
    padding: 0px;
  }
  .sc2 > picture {
    display: none;
  }
  .sc2 .crop {
    position: relative;
    display: block;
    margin-top: 24px;
    width: 100%;
    height: 580px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
    -webkit-filter: drop-shadow(0px 0px 1px rgba(12, 26, 75, 0.24));
    filter: drop-shadow(0px 0px 1px rgba(12, 26, 75, 0.24));
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .sc2 .crop::-webkit-scrollbar {
    display: none;
  }
  .sc2 .crop img {
    height: 100%;
    width: auto;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc2__col .h2_descr {
    font-size: 16px;
  }
}

/* === Polza SVG Map — final === */

/* Контейнер карти (без рамки/тіней) + тема кольорів і розмір прапорців */
.sc2 .map-wrap{
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  background: transparent;      /* без фону/рамок */
  box-shadow: none;
  -webkit-filter: none;
  filter: none;
  border-radius: 0;

  /* ТЕМА */
  --land:#fafbfc;        /* неактивні країни - майже білий як у PNG */
  --active: #00BFA6;     /* колір PNG - тіловий/м'ятний */
  --activeHover: #00A595; /* на ~10–12% темніше для hover */
  --stroke:#e0e0e0;      /* межі країн (дуже світло-сірі як у PNG) */
  --flagSize: 10px;      /* базова висота прапорця (4:3) десктоп */
}

.sc2 .borders-layer path{ shape-rendering: crispEdges; }

/* Сам SVG */
.sc2 svg#map{
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

/* Країни (контури легкі й гладкі) */
.sc2 .country{
  stroke: var(--stroke);
  stroke-width: 1px;
  stroke-opacity: 1;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.sc2 .country.is-active{ fill: var(--active); }
.sc2 .country.is-active:hover{ fill: var(--activeHover); }

/* Прапорці */
.sc2 .flag-img{
  pointer-events: none;
  user-select: none;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 0 1px rgba(0,0,0,.22)) drop-shadow(0 1px 1px rgba(0,0,0,.18));
  transition: transform .15s ease;
}
@media (hover:hover){ .sc2 .flag-img:hover{ transform: scale(1.05); } }

/* Кнопки зуму: приховані (горизонтальний скрол замість зуму на мобільному) */
.sc2 .zoom-controls{ display:none !important; }

/* Лоадер */
.sc2 .loading{ text-align:center; padding:2rem; }
.sc2 .spinner{
  display:inline-block;
  width:32px; height:32px;
  border:3px solid #e5e7eb;
  border-top-color: var(--active);
  border-radius:50%;
  animation: polza-spin 1s linear infinite;
}
@keyframes polza-spin{ to{ transform: rotate(360deg); } }

/* Адаптивні прапорці */
@media (max-width:1279.98px){
  .sc2 .map-wrap{ --flagSize: 8px; }
  .sc2 .country{
    stroke-width: 1px;
  }
}
@media (max-width:743.98px){
  .sc2 .map-wrap{
    background: transparent;
    --land:#ffffff;
    border-radius: 12px;
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.05),
                0px 0px 1px rgba(12, 26, 75, 0.24);
    padding: 2px;
    --flagSize: 7px;
    /* Горизонтальний скрол */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .sc2 svg#map{
    /* Дозволяємо SVG бути ширшим за контейнер */
    width: 250%;  /* Відповідає width * 2.5 в JS */
    max-width: none;
  }

  .sc2 .country{
    stroke-width: 1px;
  }
}

/* Swipe Hint для горизонтального скролу на мобільному */
.sc2 .map-swipe-hint {
  display: none !important;
}

@media (max-width:743.98px) {
  .sc2 .map-swipe-hint {
    display: none;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999 !important;
    pointer-events: none;
    align-items: center;
    gap: 12px;
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
    font-size: 19.5px;
    font-weight: 500;
    padding: 15px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20), 0 3px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease;
    will-change: transform, opacity;
  }

  .sc2 .map-swipe-hint.is-visible {
    display: flex !important;
  }

  .sc2 .map-swipe-hint.is-hidden {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(10px) !important;
  }

  .sc2 .map-swipe-hint__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    animation: swipeHint 1.5s ease-in-out infinite;
  }

  @keyframes swipeHint {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
  }
}


/* =============================================================================
   «ЧИМ МИ НЕ ЗАЙМАЄМОСЯ» (sc7) - лишається в легасі-вигляді за рішенням
   власника (20.08.2026); перенесено дослівно.
   ============================================================================= */
.sc7 {
  margin-top: 85px;
}
.sc7__row1 {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sc7__row1 .wrap {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}
.sc7__row1 .wrap .row-item {
  list-style-type: none;
}
.sc7__row1 .wrap .row-item li {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #212121;
}
/* Лапки: селектор мусить іти через picture - всередині <picture> першим стоїть
   <source>, тож "img:first-child" не матчив нічого, а "img:last-child" матчив
   обидві картинки (обидві лапки падали вниз і жодна не перевертались). */

@media only screen and (max-width: 1279.98px) {
  .sc7 {
    margin-top: 80px;
  }
  .sc7__row1 {
    margin-top: 40px;
  }
  .sc7__row1 .wrap {
    gap: 8px;
    padding: 24px 16px;
  }
  .sc7__row1 .wrap .row-item {
    width: 255px;
  }
  .sc7__row1 .wrap .row-item li {
    font-size: 14px;
  }
  .sc7__row1 .wrap .row-item li:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc7 {
    margin-top: 40px;
  }
  .sc7__row1 {
    margin-top: 24px;
  }
  .sc7__row1 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc7__row1 .wrap .row-item {
    width: 100%;
  }
  .sc7__row1 .wrap .row-item li {
    font-size: 14px;
  }
  .sc7__row1 .wrap .row-item li:not(:last-child) {
    margin-bottom: 8px;
  }
}

/* ── Фінальний банер (club-final) - перенесено дослівно ── */
.club-final {
  position: relative;
  margin-top: 90px;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1b1a;
  isolation: isolate;
}
.club-final::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--club-final-bg);
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.club-final::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(0, 191, 165, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(13, 27, 26, 0.80) 0%, rgba(13, 27, 26, 0.90) 100%);
}
.club-final__inner { text-align: center; padding: 80px 40px; color: #fff; }
.club-final__inner h2 {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
}
.club-final__sub {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.9;
}
.club-final__cta { margin-top: 32px; display: flex; justify-content: center; }
/* .btn у цьому ленді темний (#263238) і фіксований 343px - на фото він губиться,
   тому фінальна кнопка teal і по ширині контенту. */
.club-final__btn {
  width: auto;
  background: #00BFA5;
  box-shadow: 0 8px 24px rgba(0, 191, 165, 0.3);
  transition: background-color 0.2s ease;
}
.club-final__btn:hover { background: #00a890; }

@media only screen and (max-width: 1279.98px) {
  .club-final { margin-top: 80px; }
  .club-final__inner { padding: 64px 32px; }
}

@media only screen and (max-width: 743.98px) {
  .club-final { margin-top: 48px; border-radius: 16px; }
  .club-final__inner { padding: 48px 16px; }
  .club-final__inner h2 { font-size: 24px; line-height: 30px; }
  .club-final__sub { font-size: 16px; }
  .club-final__btn { width: 100%; max-width: 343px; }
}

/* WebP <picture> wrappers must be layout-neutral (img keeps its box) */
picture { display: contents; }

/* ── Компат: легасі-народжені блоки верстались під line-height:normal ──
   brand.css дає body 1.5; у цих піддеревах десятки правил із font-size без
   line-height - повертаємо їм успадковане normal, щоб нічого не попливло.
   Мігровані системні блоки (hero тут немає) ставлять свої line-height самі. */
.sc1, .sc2, .sc3, .sc4, .sc7, .sc8, .sc9, .sc10, .sc13, .sc15,
.mob-menu, .btn { line-height: normal; }


/* =============================================================================
   «КУДИ І ЯК ІНВЕСТУЄМО?» (sc6) та «ІДЕАЛЬНИЙ ШЛЯХ ІНВЕСТОРА» (sc11) -
   ЛЕГАСІ-вигляд повернено за рішенням власника 24.08 («раніше краще
   виглядав»). CSS відновлено дослівно з доміграційного git (3005eca).
   ============================================================================= */
.sc6 {
  margin-top: 86px;
}
.sc6__row1 {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.sc6__row1 .row-item {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px;
  gap: 4px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}
.sc6__row1 .row-item img {
  width: auto;
  height: 24px;
}
.sc6__row1 .row-item .h3 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #212121;
}
.sc6__row1 .row-item span {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #212121;
}
.sc6__row2 {
  margin-top: 38px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1279.98px) {
  .sc6 {
    margin-top: 80px;
  }
  .sc6__row1 {
    margin-top: 40px;
  }
  .sc6__row1 .row-item .h3 {
    font-size: 14px;
  }
  .sc6__row1 .row-item span {
    font-size: 10px;
  }
  .sc6__row2 {
    margin-top: 32x;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc6 {
    margin-top: 40px;
  }
  .sc6__row1 {
    margin-top: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .sc6__row1 .row-item {
    width: 48%;
  }
  .sc6__row1 .row-item .h3 {
    font-size: 14px;
  }
  .sc6__row1 .row-item span {
    font-size: 10px;
  }
  .sc6__row2 {
    margin-top: 32x;
  }
}
.sc11 {
  margin-top: 90px;
}
.sc11__row {
  margin-top: 40px;
}
.sc11__row .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
}
.sc11__row .wrap .row-item {
  position: relative;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc11__row .wrap .row-item:not(:first-child) .row1::before {
  position: absolute;
  left: -193px;
  top: 50%;
  height: 30px;
  content: url(../img/sc11/r_arr.svg);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.sc11__row .wrap .row-item .row1 {
  position: relative;
  top: 10px;
  width: 72px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #C3F2EC;
  border-radius: 50%;
}
.sc11__row .wrap .row-item .row1 img {
  width: 24px;
  height: 24px;
}
.sc11__row .wrap .row-item .row2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 16px 16px;
  gap: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
          box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.24), 0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  border-radius: 16px;
}
.sc11__row .wrap .row-item .row2 .h3 {
  height: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #212121;
}
.sc11__row .wrap .row-item .row2 hr {
  width: 100%;
  height: 1px;
  background: #00C2A8;
  border: none;
}
.sc11__row .wrap .row-item .row2 .descr {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #212121;
}
.sc11__row .wrap .btn {
  display: none;
}

@media only screen and (max-width: 1279.98px) {
  .sc11 {
    margin-top: 80px;
  }
  .sc11__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sc11__row .wrap {
    width: 343px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc11__row .wrap .row-item {
    width: 100%;
  }
  .sc11__row .wrap .row-item:not(:first-child) .row1::before {
    content: url(../img/sc11/mob-r_arr.svg);
    -webkit-transform: translate(213px, -230px);
            transform: translate(213px, -230px);
  }
  .sc11__row .wrap .row-item .row2 .h3 {
    height: 21px;
    margin-bottom: 8px;
  }
  .sc11__row .wrap .row-item .row2 .descr {
    margin-top: 4px;
  }
}
@media only screen and (max-width: 743.98px) {
  .sc11 {
    margin-top: 16px;
  }
  .sc11__row {
    margin-top: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sc11__row .wrap {
    width: 343px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc11__row .wrap .row-item {
    width: 100%;
  }
  .sc11__row .wrap .row-item:not(:first-child) .row1::before {
    content: url(../img/sc11/mob-r_arr.svg);
    -webkit-transform: translate(213px, -230px);
            transform: translate(213px, -230px);
  }
  .sc11__row .wrap .row-item .row2 .h3 {
    height: 21px;
    margin-bottom: 8px;
  }
  .sc11__row .wrap .row-item .row2 .descr {
    margin-top: 4px;
  }
  .sc11__row .wrap .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
