  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  body {
      font-family: "Inter", sans-serif;
      font-size: 18px;
      color: #0f0f0f;

  }

  .cf-page {
      /* min-height: 100vh; */
      background: radial-gradient(circle at top left, #ff3bff 0%, #5c00ff 35%, #120032 70%, #050014 100%);
      overflow: hidden;
  }

  .cf-page__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 16px 80px;
  }

  /* HEADER */
  .cf-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
  }

  .cf-header__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 1px;
  }

  .cf-header__logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #ffdd3b, #ff7c39);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  }

  .cf-header__logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
  }

  .cf-header__logo-main {
      font-size: 18px;
      color: #fff;
  }

  .cf-header__logo-sub {
      font-size: 12px;
      color: #fff;
      text-transform: uppercase;
      opacity: 0.8;
  }

  .cf-header-nav {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .cf-header-nav__link {
      padding: 8px 14px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 16px;
      color: #ffffff;
      transition: background-color 0.2s ease, color 0.2s ease;
      border: 1px solid transparent;
  }

  .cf-header-nav__link:hover {
      background-color: rgba(255, 255, 255, 0.06);
  }

  .cf-header-nav__link--primary {
      background-color: #ffdd3b;
      color: #2b0054;
      font-weight: 600;
      border-color: #ffdd3b;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }

  .cf-header-nav__link--primary:hover {
      background-color: #ffe670;
      border-color: #ffe670;
  }

  /* HERO */
  .cf-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      align-items: center;
      gap: 32px;
  }

  .cf-hero__content {
      max-width: 560px;
  }

  .cf-hero__suptitle {
      font-size: 16px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.8;
      margin-bottom: 12px;
  }

  .cf-hero__title {
      font-size: 56px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 16px;
  }

  .cf-hero__title span {
      display: block;
      color: #fff;
  }

  .cf-hero__subtitle {
      font-size: 56px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 24px;
  }

  .cf-hero__text {
      line-height: 1.6;
      max-width: 520px;
      opacity: 0.92;
      color: #fff;
  }

  .cf-hero__highlight {
      color: #ffdd3b;
      font-weight: 700;
  }

  .cf-hero__media-wrap {
      position: relative;
  }

  .cf-hero__glow {
      position: absolute;
      inset: 10% 5% 0 0;
      filter: blur(40px);
      background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.35), transparent 60%),
          radial-gradient(circle at 80% 50%, rgba(255, 221, 59, 0.65), transparent 70%),
          radial-gradient(circle at 20% 80%, rgba(255, 59, 255, 0.5), transparent 70%);
      opacity: 0.65;
      z-index: 0;
  }

  .cf-hero__media {
      position: relative;
      z-index: 1;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  }

  .cf-hero__image {
      display: block;
      width: 100%;
      height: auto;
  }

  /* simple decorative coins */
  .cf-hero__coin {
      position: absolute;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      background: radial-gradient(circle at 30% 20%, #fff7c7, #ffdd3b 40%, #ff9b2d 80%);
      box-shadow: 0 0 22px rgba(0, 0, 0, 0.7);
  }

  .cf-hero__coin--one {
      top: 6%;
      right: 5%;
  }

  .cf-hero__coin--two {
      bottom: 10%;
      left: -10px;
      width: 44px;
      height: 44px;
  }

  .cf-hero__coin--three {
      top: 20%;
      left: 45%;
      width: 32px;
      height: 32px;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
      .cf-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
      }

      .cf-header-nav {
          flex-wrap: wrap;
          justify-content: flex-start;
      }

      .cf-hero__title,
      .cf-hero__subtitle {
          font-size: 40px;
      }

      .cf-hero {
          grid-template-columns: minmax(0, 1fr);
          gap: 28px;
      }

      .cf-hero__content {
          max-width: 100%;
      }
  }

  @media (max-width: 600px) {
      .cf-page__inner {
          padding: 20px 16px 56px;
      }

      .cf-header {
          margin-bottom: 24px;
      }

      .cf-header-nav__link {
          padding: 6px 10px;
          font-size: 14px;
      }

      .cf-hero {
          text-align: left;
      }

      .cf-hero__title,
      .cf-hero__subtitle {
          font-size: 32px;
      }

      .cf-hero__text {
          font-size: 16px;
      }

      .cf-hero__coin {
          display: none;
      }
  }

  .cf-hero__coin {
      position: absolute;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      background: radial-gradient(circle at 30% 20%, #fff7c7, #ffdd3b 40%, #ff9b2d 80%);
      box-shadow: 0 0 22px rgba(0, 0, 0, 0.7);
      will-change: transform;
  }

  /* стартовые позиции как были */
  .cf-hero__coin--one {
      top: 6%;
      right: 5%;
      animation: cf-coin-one 11s ease-in-out infinite alternate;
  }

  .cf-hero__coin--two {
      bottom: 10%;
      left: -10px;
      width: 44px;
      height: 44px;
      animation: cf-coin-two 9s ease-in-out infinite alternate;
  }

  .cf-hero__coin--three {
      top: 20%;
      left: 45%;
      width: 32px;
      height: 32px;
      animation: cf-coin-three 13s ease-in-out infinite alternate;
  }

  /* «хаотичные» траектории */
  @keyframes cf-coin-one {
      0% {
          transform: translate3d(0, 0, 0) rotate(0deg);
      }

      20% {
          transform: translate3d(-15px, 10px, 0) rotate(25deg);
      }

      40% {
          transform: translate3d(10px, 25px, 0) rotate(-10deg);
      }

      60% {
          transform: translate3d(-20px, 5px, 0) rotate(35deg);
      }

      80% {
          transform: translate3d(8px, -15px, 0) rotate(-20deg);
      }

      100% {
          transform: translate3d(-10px, 5px, 0) rotate(15deg);
      }
  }

  @keyframes cf-coin-two {
      0% {
          transform: translate3d(0, 0, 0) rotate(0deg);
      }

      15% {
          transform: translate3d(18px, -8px, 0) rotate(-20deg);
      }

      30% {
          transform: translate3d(12px, 12px, 0) rotate(10deg);
      }

      50% {
          transform: translate3d(-10px, 20px, 0) rotate(-35deg);
      }

      75% {
          transform: translate3d(-18px, 5px, 0) rotate(15deg);
      }

      100% {
          transform: translate3d(5px, -10px, 0) rotate(-5deg);
      }
  }

  @keyframes cf-coin-three {
      0% {
          transform: translate3d(0, 0, 0) rotate(0deg);
      }

      25% {
          transform: translate3d(-10px, -15px, 0) rotate(30deg);
      }

      45% {
          transform: translate3d(16px, -5px, 0) rotate(-15deg);
      }

      65% {
          transform: translate3d(8px, 18px, 0) rotate(25deg);
      }

      85% {
          transform: translate3d(-14px, 10px, 0) rotate(-30deg);
      }

      100% {
          transform: translate3d(4px, -8px, 0) rotate(10deg);
      }
  }

  .co3-list-section {
      padding: 64px 12px 60px;
  }

  .co3-list-section__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .co3-list {
      display: grid;
      gap: 24px;
      justify-content: center;
      /* центрируем всю сетку внутри 1200px */

      /* 3 фиксированные колонки; при 1–2 элементах они просто занимают
       1 или 2 из этих колонок, а вся сетка остаётся по центру */
      grid-template-columns: repeat(3, 384px);
      /* 3 * 384 + 2 * 24 = 1200 */
  }


  .co3-list {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      justify-content: center;
      justify-items: center;
  }

  .co3-card {
      max-width: 380px;
      display: flex;
      flex-direction: column;
      /* border: 1px solid #c8c8c8; */
      background-color: #f5f6010a;
      border-radius: 24px;
      box-shadow: 0 10px 25px rgb(216 164 39 / 99%);
      overflow: hidden;
  }

  .co3-card__top {
      position: relative;
      padding: 0;
      height: 180px;
      border-radius: 24px 24px 0 0;
      color: #ffffff;
  }

  .co3-card__top img {
      width: 100%;
      object-fit: cover;
      height: 100%;

  }

  .co3-card--green .co3-card__top {
      background: linear-gradient(135deg, #0d5935, #39a66a);
  }

  .co3-card--navy .co3-card__top {
      background: linear-gradient(135deg, #02081f, #171f46);
  }

  .co3-card--violet .co3-card__top {
      background: linear-gradient(135deg, #4f033f, #831b6a);
  }

  .co3-card__logo {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 1px;
  }

  .co3-card__logo-sub {
      font-size: 16px;
      margin-top: 4px;
  }

  .co3-card__flag-pill {
      position: absolute;
      left: 20px;
      bottom: 26px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background-color: #ffffff;
      color: #222222;
      font-size: 14px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .co3-card__flag-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d80027 0%, #ffffff 52%, #012169 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 11px;
  }

  .co3-card__flag-text {
      white-space: nowrap;
  }

  .co3-card__rating-pill {
      position: absolute;
      right: 20px;
      bottom: 26px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background-color: #ffffff;
      color: #222222;
      font-size: 14px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .co3-card__rating-stars {
      display: inline-flex;
      gap: 2px;
      color: #f5b400;
      font-size: 14px;
  }

  .co3-card__rating-text {
      font-weight: 600;
  }

  .co3-card__body {
      text-align: center;
      padding: 18px 20px 20px;
  }

  .co3-card__title {
      font-size: 24px;
      color: #000;
      font-weight: 700;
      margin-bottom: 14px;
  }

  .co3-card__offer {
      font-weight: 600;
      color: #000;
      line-height: 1.4;
      margin-bottom: 10px;
  }

  .co3-card__terms-link {
      font-size: 14px;
      text-decoration: underline;
      color: #1f4fa3;
  }

  .co3-card__bottom {
      border-top: 1px solid #e7e7ea;
      padding: 22px 20px 24px;
      text-align: center;
  }

  .co3-card__cta {
      margin-bottom: 10px;
  }

  .co3-card__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 38px;
      border-radius: 999px;
      border: none;
      background-color: #ffd54a;
      color: #1b1b1b;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
  }

  .co3-card__btn:hover {
      background-color: #ffe16e;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  }

  .co3-card__btn-icon {
      margin-left: 8px;
      font-size: 16px;
  }

  .co3-card__reviews-link {
      display: inline-block;
      margin-bottom: 12px;
      color: #1372d5;
      text-decoration: underline;
      font-size: 16px;
  }

  .co3-card__disclaimer {
      font-size: 13px;
      line-height: 1.6;
      color: #666a72;
  }

  .co3-card__disclaimer a {
      color: #1372d5;
      text-decoration: underline;
  }

  /* RESPONSIVE */

  @media (max-width: 1024px) {
      .co3-list {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .co3-list-section {
          padding: 16px 10px 32px;
      }

      .co3-list {
          grid-template-columns: minmax(0, 1fr);
          gap: 18px;
      }

      .co3-card__top {

          padding: 0;
      }

      .co3-card__top img {
          object-fit: cover;
          width: 100%;
          height: 100%;
      }

      .co3-card__title {
          font-size: 20px;
      }

      .co3-card__btn {
          width: 100%;
      }
  }

  .ab2-about {
      padding: 32px 12px 64px;
  }

  .ab2-about__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  /* верхняя жёлтая плашка */
  .ab2-banner {
      max-width: 100%;
      background-color: #ffd54a;
      border-radius: 32px;
      padding: 12px 32px;
      text-align: center;
      line-height: 1.4;
      color: #2b2b2b;
      margin-bottom: 58px;
  }

  .ab2-banner__small {
      display: block;
      font-size: 16px;
  }

  /* заголовок блока */
  .ab2-header {
      text-align: center;
      margin-bottom: 40px;
  }

  .ab2-header__title {
      font-size: 36px;
      color: #000;
      font-weight: 700;
      margin-bottom: 12px;
  }

  .ab2-header__text {
      font-size: 16px;
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.6;
      color: #555a64;
  }

  /* карточки ценностей */
  .ab2-values {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-bottom: 40px;
  }

  .ab2-values__item {
      background-color: #ffffff;
      border-radius: 24px;
      padding: 36px 28px 32px;
      text-align: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }

  .ab2-values__icon-wrap {
      /* width: 64px; */
      /* height: 64px; */
      border-radius: 20px;
      margin: 0 auto 10px;
      /* background-color: #fff4ca; */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffc107;
      font-size: 77px;
  }

  .ab2-values__title {
      font-weight: 700;
      margin-bottom: 10px;
  }

  .ab2-values__text {
      font-size: 15px;
      line-height: 1.7;
      color: #555a64;
  }

  /* карточка с цитатой */
  .ab2-quote {
      background-color: #ffffff;
      border-radius: 24px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
      padding: 32px 32px 30px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 32px;
      align-items: center;
  }

  .ab2-quote__image-wrap {
      width: 220px;
      max-width: 100%;
  }

  .ab2-quote__image {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 16px;
      object-fit: cover;
  }

  .ab2-quote__content {
      position: relative;
  }

  .ab2-quote__mark-top {
      position: absolute;
      left: -24px;
      top: -63px;
      color: #ffc107;
      font-size: 50px;
  }

  .ab2-quote__mark-bottom {
      position: absolute;
      right: 0;
      bottom: 0;
      color: #ffc107;
      font-size: 50px;
  }

  .ab2-quote__name {
      font-weight: 700;
      color: #000;
      margin-bottom: 4px;
  }

  .ab2-quote__role {
      font-size: 14px;
      color: #70747f;
      margin-bottom: 14px;
  }

  .ab2-quote__text {
      font-size: 15px;
      line-height: 1.7;
      color: #555a64;
      max-width: 760px;
  }

  /* адаптив */

  @media (max-width: 1024px) {
      .ab2-values {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .ab2-about {
          padding: 24px 10px 40px;
      }

      .ab2-banner {
          padding: 10px 18px;
          border-radius: 22px;
          margin-bottom: 32px;
      }

      .ab2-header__title {
          font-size: 28px;
      }

      .ab2-values {
          grid-template-columns: minmax(0, 1fr);
      }

      .ab2-values__item {
          padding: 28px 20px 26px;
      }

      .ab2-quote {
          grid-template-columns: minmax(0, 1fr);
          padding: 24px 20px 26px;
      }

      .ab2-quote__image-wrap {
          width: 180px;
          margin: 0 auto;
      }

      .ab2-quote__content {
          padding-top: 22px;
          padding-bottom: 20px;
      }

      .ab2-quote__mark-bottom {
          position: static;
          display: block;
          text-align: right;
          margin-top: 8px;
      }
  }

  .wa-advantages {
      padding: 40px 12px 60px;
  }

  .wa-advantages__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .wa-advantages__head {
      text-align: center;
      margin-bottom: 32px;
  }

  .wa-advantages__title {
      font-size: 32px;
      color: #000;
      font-weight: 700;
  }

  /* grid */

  .wa-advantages__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
  }

  .wa-advantages-card {
      background-color: #ffffff;
      border-radius: 26px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
      padding: 22px 30px;
      display: flex;
      align-items: center;
  }

  .wa-advantages-card__icon-box {
      width: 80px;
      height: 80px;
      border-radius: 26px;
      background-color: #ffd54a;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 22px;
      color: #ffffff;
      font-size: 42px;
  }

  .wa-advantages-card__content {
      flex: 1;
  }

  .wa-advantages-card__title {
      font-weight: 700;
      margin-bottom: 8px;
  }

  .wa-advantages-card__text {
      font-size: 16px;
      line-height: 1.6;
      color: #565a63;
  }

  /* адаптив */

  @media (max-width: 960px) {
      .wa-advantages__grid {
          grid-template-columns: minmax(0, 1fr);
      }
  }

  @media (max-width: 640px) {
      .wa-advantages {
          padding: 30px 10px 40px;
      }

      .wa-advantages-card {
          padding: 18px 18px;
      }

      .wa-advantages-card__icon-box {
          width: 70px;
          height: 70px;
          font-size: 30px;
          margin-right: 16px;
      }

      .wa-advantages-card__text {
          font-size: 15px;
      }
  }

  .rg18-section {
      padding: 28px 12px 48px;
  }

  .rg18-section__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .rg18-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      background-color: #ffffff;
      border-radius: 32px;
      border: 3px solid #ff3b3b;
      padding: 26px 32px;
  }

  .rg18-banner__age {
      flex-shrink: 0;
      width: 140px;
      height: 96px;
      border-radius: 18px;
      background-color: #ff3b3b;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 800;
      font-size: 40px;
  }

  .rg18-banner__age span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .rg18-banner__age i {
      font-size: 26px;
  }

  .rg18-banner__content {
      flex: 1;
      min-width: 0;
  }

  .rg18-banner__title {
      font-weight: 700;
      color: #ff3b3b;
      margin-bottom: 8px;
  }

  .rg18-banner__text {
      font-size: 16px;
      line-height: 1.6;
      color: #555a64;
  }

  .rg18-banner__cta {
      flex-shrink: 0;
  }

  .rg18-banner__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 999px;
      border: none;
      background-color: #ffd84d;
      color: #1c1c1c;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
      white-space: nowrap;
  }

  .rg18-banner__btn:hover {
      background-color: #ffe472;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  /* адаптив */

  @media (max-width: 900px) {
      .rg18-banner {
          padding: 22px 20px;
          gap: 20px;
      }
  }

  @media (max-width: 720px) {
      .rg18-banner {
          flex-direction: column;
          align-items: flex-start;
      }

      .rg18-banner__age {
          width: 120px;
          height: 80px;
          font-size: 32px;
      }

      .rg18-banner__content {
          width: 100%;
      }

      .rg18-banner__cta {
          width: 100%;
      }

      .rg18-banner__btn {
          width: 100%;
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .rg18-section {
          padding: 20px 10px 32px;
      }

      .rg18-banner__text {
          font-size: 15px;
      }
  }

  .gs-support {
      padding: 40px 12px 60px;
  }

  .gs-support__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .gs-support__head {
      text-align: center;
      margin-bottom: 28px;
  }

  .gs-support__title {
      font-size: 32px;
      font-weight: 700;
  }

  /* cards row */

  .gs-support__cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-bottom: 32px;
  }

  .gs-support-card {
      background-color: #ffffff;
      border-radius: 22px;
      padding: 22px 26px 26px;
      text-align: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .gs-support-card__icon-wrap {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 0 auto 14px;
      background-color: #ffd54a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 30px;
  }

  .gs-support-card__title {
      font-weight: 700;
      margin-bottom: 8px;
  }

  .gs-support-card__text {
      font-size: 15px;
      line-height: 1.5;
      color: #555a64;
  }

  .gs-support-card__text span {
      display: block;
  }

  /* contact box */

  .gs-contact {
      background-color: #ffffff;
      border-radius: 26px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
      padding: 32px 32px 34px;
  }

  .gs-contact__title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .gs-contact__intro {
      font-size: 16px;
      color: #555a64;
      margin-bottom: 22px;
  }

  .gs-contact__row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 16px;
  }

  .gs-contact__row-label {
      font-weight: 700;
  }

  .gs-contact__row-email {
      color: #1372d5;
  }

  .gs-contact__form {
      max-width: 520px;
  }

  .gs-contact__field {
      margin-bottom: 14px;
  }

  .gs-contact__input,
  .gs-contact__textarea {
      width: 100%;
      border-radius: 24px;
      border: 1px solid #e0e0e5;
      background-color: #f7f7f9;
      padding: 10px 18px;
      font-size: 16px;
      outline: none;
      transition: border-color 0.2s ease, background-color 0.2s ease,
          box-shadow 0.2s ease;
  }

  .gs-contact__textarea {
      border-radius: 24px;
      resize: vertical;
      min-height: 140px;
  }

  .gs-contact__input:focus,
  .gs-contact__textarea:focus {
      border-color: #ffd54a;
      background-color: #ffffff;
      box-shadow: 0 0 0 2px rgba(255, 213, 74, 0.25);
  }

  .gs-contact__submit-wrap {
      margin-top: 10px;
  }

  .gs-contact__submit {
      border: none;
      border-radius: 999px;
      padding: 12px 40px;
      background-color: #ffd54a;
      color: #151515;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
  }

  .gs-contact__submit:hover {
      background-color: #ffe474;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  /* adaptive */

  @media (max-width: 1024px) {
      .gs-support__cards {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .gs-support__cards {
          grid-template-columns: minmax(0, 1fr);
      }

      .gs-contact {
          padding: 26px 20px 28px;
      }

      .gs-contact__form {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {
      .gs-support {
          padding: 30px 10px 40px;
      }

      .gs-support__title {
          font-size: 28px;
      }

      .gs-contact__intro,
      .gs-support-card__text {
          font-size: 15px;
      }
  }

  @media (max-width:767px) {
      [data-aos] {
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
      }
  }

  .gf-footer {
      padding: 22px 12px 28px;
      background-color: #b685cb;
  }

  .gf-footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
  }

  /* top nav links */
  .gf-footer-nav {
      margin-bottom: 16px;
  }

  .gf-footer-nav__link {
      display: inline-block;
      margin: 0 8px;
      font-size: 14px;
      color: #ffffff;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .gf-footer-nav__link:hover {
      color: #000000;
  }

  /* logos row */
  .gf-footer-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-bottom: 14px;
      flex-wrap: wrap;
  }

  .gf-footer-logos__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #9e9e9e;
      font-size: 14px;
      filter: grayscale(1);
  }

  .gf-footer-logos__icon-box {
      width: 56px;
      height: 40px;
      border-radius: 6px;
      border: 1px solid #d0d0d0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
  }

  .gf-footer-logos__text {
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
  }

  .gf-footer-logos__small {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }

  /* copyright */
  .gf-footer__copy {
      font-size: 13px;
      text-align: center;
      color: #f5f5f5;
  }

  /* adaptive */
  @media (max-width: 640px) {
      .gf-footer {
          padding: 18px 10px 24px;
      }

      .gf-footer-logos {
          gap: 20px;
      }
  }

  .safeplay_f91__logo img {
      width: auto;
      height: 30px;
  }

  .safeplay_f91__logo.safeplay_f91__logo--circle {
      margin: 20px auto;
      width: 50px;
      min-width: 50px;
      height: 50px;
      border-radius: 100%;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #fff;
  }

  .safeplay_f91__logos {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: center;
  }

  .rg18-modal {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .rg18-modal--hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
  }

  .rg18-modal__dialog {
      background-color: #ffffff;
      border-radius: 28px;
      padding: 32px 36px 30px;
      max-width: 520px;
      width: 90%;
      text-align: center;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .rg18-modal__icon {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 6px solid #ff3b3b;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: #ff3b3b;
      font-size: 40px;
      font-weight: 800;
  }

  .rg18-modal__icon span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .rg18-modal__icon i {
      font-size: 22px;
  }

  .rg18-modal__title {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 10px;
  }

  .rg18-modal__text {
      font-size: 16px;
      line-height: 1.6;
      color: #555a64;
      margin-bottom: 26px;
  }

  .rg18-modal__actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
  }

  .rg18-modal__btn {
      min-width: 180px;
      border-radius: 999px;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
      transition: background-color 0.2s ease, transform 0.2s ease,
          box-shadow 0.2s ease;
  }

  .rg18-modal__btn--yes {
      background-color: #ff3b3b;
      color: #ffffff;
  }

  .rg18-modal__btn--yes:hover {
      background-color: #ff5f5f;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .rg18-modal__btn--no {
      background-color: #ffd84d;
      color: #1c1c1c;
  }

  .rg18-modal__btn--no:hover {
      background-color: #ffe676;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  @media (max-width: 600px) {
      .rg18-modal__dialog {
          padding: 26px 20px 24px;
          border-radius: 22px;
      }

      .rg18-modal__icon {
          width: 100px;
          height: 100px;
          border-width: 5px;
          font-size: 32px;
      }

      .rg18-modal__title {
          font-size: 22px;
      }

      .rg18-modal__text {
          font-size: 15px;
      }

      .rg18-modal__btn {
          width: 100%;
      }
  }

  .rg-block {
      padding: 40px 12px 60px;
  }

  .rg-block__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .rg-block__header {
      text-align: center;
      margin-bottom: 30px;
  }

  .rg-block__title {
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
  }

  .rg-block__intro {
      font-size: 16px;
      line-height: 1.6;
      max-width: 760px;
      margin: 0 auto;
      color: #e0e3e9;
  }

  .rg-block__group {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 28px;
  }

  .rg-block__section {
      background-color: #ffffff;
      border-radius: 24px;
      padding: 22px 26px 20px;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  }

  .rg-block__section-title {
      font-weight: 700;
      margin-bottom: 10px;
  }

  .rg-block__section-title span {
      font-weight: 700;
  }

  .rg-block__section-subtitle {
      font-weight: 700;
      margin-bottom: 8px;
  }

  .rg-block__text {
      font-size: 16px;
      line-height: 1.6;
      color: #555a64;
      margin-bottom: 10px;
  }

  .rg-block__list {
      list-style: disc;
      padding-left: 20px;
      color: #3a3a3a;
  }

  .rg-block__list li {
      margin-bottom: 6px;
      line-height: 1.6;
  }

  .rg-block__list strong {
      font-weight: 700;
  }

  /* адаптив */

  @media (max-width: 768px) {
      .rg-block {
          padding: 30px 10px 40px;
      }

      .rg-block__title {
          font-size: 28px;
      }

      .rg-block__section {
          padding: 18px 16px 18px;
      }

      .rg-block__intro,
      .rg-block__text,
      .rg-block__list {
          font-size: 15px;
      }
  }

  .cf-faqs {
      padding: 40px 12px 60px;
  }

  .cf-faqs__inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .cf-faqs__head {
      text-align: center;
      margin-bottom: 30px;
  }

  .cf-faqs__title {
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .cf-faqs__subtitle {
      font-size: 16px;
      color: #f0f0f1;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.6;
  }

  .cf-faqs__list {
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .cf-faq {
      background-color: #ffffff;
      border-radius: 20px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
      padding: 16px 22px;
  }

  .cf-faq__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      gap: 14px;
  }

  .cf-faq__icon-wrap {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background-color: #ffd54a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      flex-shrink: 0;
      font-size: 16px;
  }

  .cf-faq__question {
      flex: 1;
      font-weight: 700;
      font-size: 18px;
  }

  .cf-faq__toggle {
      margin-left: 10px;
      color: #8c8c8c;
      font-size: 18px;
      transition: transform 0.2s ease;
  }

  .cf-faq__body {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .cf-faq__answer {
      padding-top: 10px;
      padding-left: 48px;
      font-size: 16px;
      line-height: 1.6;
      color: #555a64;
  }

  .cf-faq--open .cf-faq__body {
      max-height: 260px;
      /* достаточно для текста одного ответа */
      opacity: 1;
  }

  .cf-faq--open .cf-faq__toggle {
      transform: rotate(180deg);
  }

  @media (max-width: 768px) {
      .cf-faqs {
          padding: 30px 10px 40px;
      }

      .cf-faqs__title {
          font-size: 28px;
      }

      .cf-faq__answer {
          padding-left: 40px;
          font-size: 15px;
      }
  }

  .ck-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9990;
      display: flex;
      justify-content: center;
      padding: 16px 10px;
      pointer-events: none;
      /* кликаем только по внутреннему блоку */
      font-family: Arial, Helvetica, sans-serif;
      font-size: 18px;
  }

  .ck-banner__inner {
      max-width: 1200px;
      width: 100%;
      background-color: #1f1f27;
      color: #ffffff;
      border-radius: 20px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 14px 20px;
      pointer-events: auto;
  }

  .ck-banner__icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffd54a, #ffb300);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 22px;
      color: #3a2700;
  }

  .ck-banner__content {
      flex: 1;
      min-width: 0;
  }

  .ck-banner__title {
      font-weight: 700;
      margin-bottom: 4px;
  }

  .ck-banner__text {
      font-size: 16px;
      line-height: 1.5;
      opacity: 0.9;
  }

  .ck-banner__actions {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
  }

  .ck-banner__btn {
      border: none;
      border-radius: 999px;
      padding: 10px 26px;
      background-color: #ffd54a;
      color: #1f1f27;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: background-color 0.2s ease,
          transform 0.2s ease,
          box-shadow 0.2s ease;
      white-space: nowrap;
  }

  .ck-banner__btn:hover {
      background-color: #ffe36f;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }

  /* Адаптив */
  @media (max-width: 768px) {
      .ck-banner__inner {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
      }

      .ck-banner__actions {
          width: 100%;
          justify-content: flex-end;
      }
  }

  @media (max-width: 480px) {
      .ck-banner__inner {
          padding: 12px 14px;
      }

      .ck-banner__text {
          font-size: 15px;
      }

      .ck-banner__btn {
          width: 100%;
          text-align: center;
          justify-content: center;
      }

      .ab2-quote__mark-top {
          position: absolute;
          left: -14px;
          top: -63px;
          color: #ffc107;
          font-size: 50px;
      }
  }