
  /* RESET */
 #cj-hero,#cj-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

#cj-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#cj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.10) 38%,
    rgba(0,0,0,0.26) 68%,
    rgba(0,0,0,0.40) 100%
  );
}

.cj-hero__content {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  margin: 0 24px 14px 24px;
  padding: 8px 14px;
  box-sizing: border-box;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

.cj-hero__content * {
  color: #fff;
}

.cj-hero__tag {
  display: block;
  margin: 0 0 4px 0;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,0.84);
}

.cj-hero__content h1 {
  margin: 0 0 6px 0;
  max-width: 980px;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.cj-hero__content h1 .line-1,
.cj-hero__content h1 .line-2 {
  display: block;
}

.cj-hero__content p {
  margin: 0 0 6px 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(255,255,255,0.90);
}

.cj-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 8px 0;
  width: 100%;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255,255,255,0.88);
}

.cj-hero__chips .chip {
  display: inline;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255,255,255,0.88);
}

.cj-hero__chips .chip:not(:last-child)::after {
  content: " • ";
  color: rgba(255,255,255,0.68);
}

.cj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.cj-hero__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
  font-size: 14px;
}

.cj-hero__actions .btn-primary {
  background: linear-gradient(180deg, #d8bf86 0%, #b99657 100%);
  color: #111 !important;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.cj-hero__actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.cj-hero__actions .btn--ghost {
  background: rgba(255,255,255,0.10);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.24);
}

.cj-hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

@media (min-width: 1280px) {
  .cj-hero__content {
    width: calc(100% - 64px);
    margin: 0 32px 34px 32px;
    padding: 8px 16px;
  }
}

@media (max-width: 1024px) {
  .cj-hero__content {
    width: calc(100% - 28px);
    margin: 0 14px 14px 14px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .cj-hero__content h1 {
    max-width: 100%;
    font-size: clamp(34px, 5.6vw, 54px);
  }

  .cj-hero__content p {
    font-size: 16px;
    max-width: 100%;
  }

  .cj-hero__chips {
    font-size: 14px;
  }
}

/* mobile */
/* mobile */
@media (max-width: 767px) {
  #cj-hero {
    min-height: 100svh;
    align-items: flex-end;
    overflow: hidden;
    background: #000;
  }

  #cj-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 33%;
    background: #000;
  }

  #cj-hero::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.04) 0%,
      rgba(0,0,0,0.08) 34%,
      rgba(0,0,0,0.22) 66%,
      rgba(0,0,0,0.38) 100%
    );
  }

  .cj-hero__content {
    width: calc(100% - 16px);
    margin: 0 8px 8px 8px;
    padding: 10px 12px 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
  }

  .cj-hero__tag {
    margin: 0 0 6px 0;
    font-size: 11px;
    line-height: 1.25;
  }

  .cj-hero__content h1 {
    margin: 0 0 8px 0;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    max-width: 100%;
  }

  .cj-hero__content h1 .line-1,
  .cj-hero__content h1 .line-2,
  .cj-hero__content h1 .line-3,
  .cj-hero__content h1 .line-4 {
    display: block;
  }

  .cj-hero__content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.35;
    max-width: 100%;
  }

  .cj-hero__chips {
    display: block;
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .cj-hero__chips .chip {
    display: block;
    margin: 0 0 2px 0;
  }

  .cj-hero__chips .chip:not(:last-child)::after {
    content: "";
  }

  .cj-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .cj-hero__actions .btn,
  .cj-hero__actions .btn-primary,
  .cj-hero__actions .btn--ghost {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}
  

  #cj-marquees, #cj-marquees * {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }

  /* Container */
  #cj-marquees {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  /* Row */
  #cj-marquees .row {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
  }

  /* Inner text loop */
  #cj-marquees .inner {
    display: inline-flex;
    gap: 56px;
    will-change: transform;
    opacity: 0.85;
  }

  /* Animation (smooth, premium slow movement) */
  #cj-marquees .row.top .inner {
    animation: cjMarqueeLeft 42s linear infinite;
  }
  #cj-marquees .row.bottom .inner {
    animation: cjMarqueeRight 48s linear infinite;
  }

  /* Text */
  #cj-marquees span {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #111;
    opacity: 0.42;
    user-select: none;
  }

  /* Keyframes */
  @keyframes cjMarqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes cjMarqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  /* Mobile optimization */
  @media (max-width: 768px) {
    #cj-marquees span {
      font-size: 0.75rem;
      letter-spacing: .18em;
    }
    #cj-marquees .inner {
      gap: 36px;
    }
    #cj-marquees .row {
      padding: 12px 0;
    }
  }


  #cj-band, #cj-band * {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }

  #cj-band {
    padding: 100px 6vw;
    background: #fff;
  }

  #cj-band h2 {
    font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #111;
  }

  #cj-band .lead {
    max-width: 780px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
  }

  .cj-band-facts {
    text-align: center;
    font-size: .95rem;
    color: #666;
    margin-bottom: 70px;
  }

  /* GRID 2×2 */
  .cj-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cj-member {
    background: #fff;
    padding: 22px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  /* Видео-блок */
  .cj-member-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
    cursor: pointer;
  }

  .cj-member-video iframe,
  .cj-member-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Постер */
  .cj-video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity .25s ease;
  }

  /* Play overlay */
  .cj-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
  }

  .cj-play-overlay svg {
    width: 62px;
    height: 62px;
    opacity: 0.92;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
    transition: .25s;
  }

  .cj-member-video:hover .cj-play-overlay svg {
    opacity: 1;
    transform: scale(1.08);
  }

  /* Active state */
  .cj-member-video.playing .cj-video-poster {
    opacity: 0;
    pointer-events: none;
  }
  .cj-member-video.playing .cj-play-overlay {
    opacity: 0;
    pointer-events: none;
  }
  .cj-member-video.playing iframe {
    display: block !important;
  }

  /* Текст */
  .cj-member h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111;
  }

  .cj-member .role {
    font-size: 14px;
    font-weight: 700;
    color: #777;
    letter-spacing: .05em;
    margin-bottom: 14px;
  }

  .cj-member p {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 16px;
  }

  /* Бейджи */
  .cj-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .cj-badge {
    padding: 5px 10px;
    border-radius: 12px;
    background: #efefef;
    font-size: 11px;
    font-weight: 600;
    color: #555;
  }

  @media (max-width: 800px) {
    .cj-members-grid {
      grid-template-columns: 1fr;
    }
  }

  
    #cj-audience, #cj-audience * {
      all: revert;
      box-sizing: border-box;
    }

    #cj-audience {
      position: relative;
      background: #000;
      color: #fff;
      font-family: "Inter", sans-serif;
      padding: 100px 0;
      overflow: hidden;
    }

    /* Фото Ксении — слева */
    #cj-audience .bg-photo {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 60%;
      background: url("https://californiajam.ru/wp-content/uploads/2025/10/ksenia-korobkova-california-jam.jpg") left center no-repeat;
      background-size: contain;
      z-index: 2;
    }

    /* Затемнение справа */
    #cj-audience .fade {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 80%, rgba(0,0,0,1) 100%);
      z-index: 3;
    }

    #cj-audience .w {
      position: relative;
      z-index: 4;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
    }

    #cj-audience h2 {
      font: 800 36px/1.25 "Inter", sans-serif;
      margin: 0 0 18px;
      color: #fff;
      text-shadow: 0 0 18px rgba(255, 200, 100, 0.25);
    }

    #cj-audience .lead {
      color: #ccc;
      margin-bottom: 50px;
      font-size: 18px;
      line-height: 1.5;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    /* === Сетка карточек === */
    #cj-audience .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      justify-items: center;
    }

    /* === Карточки === */
    #cj-audience .card {
      position: relative;
      border-radius: 16px;
      padding: 26px 24px;
      width: 100%;
      min-height: 200px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
      color: #fff;
      text-align: center;
      backdrop-filter: blur(3px);
      transition: all 0.4s ease;
      transform: translateY(40px);
      opacity: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    #cj-audience .card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    #cj-audience .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(255,215,130,0.25);
    }

    /* Фото внутри карточек */
    #cj-audience .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-position: center top;
      background-size: cover;
      z-index: 1;
      opacity: 0.35;
      transition: opacity 0.4s ease;
    }

    #cj-audience .card:hover::before {
      opacity: 0.55;
    }

    /* Фото по карточкам */
    #cj-audience .card:nth-child(1)::before {
      background-image: url("https://californiajam.ru/wp-content/uploads/2025/11/корпорат.jpg");
    }

    #cj-audience .card:nth-child(2)::before {
      background-image: url("https://californiajam.ru/wp-content/uploads/2025/11/17_071.jpg");
    }

    #cj-audience .card:nth-child(3)::before {
      background-image: url("https://californiajam.ru/wp-content/uploads/2025/11/вечеринки.webp");
    }

    #cj-audience .card:nth-child(4)::before {
      background-image: url("https://californiajam.ru/wp-content/uploads/2025/11/фестиваль.jpg");
    }

    /* Контент карточек */
    #cj-audience .card h3,
    #cj-audience .card p {
      position: relative;
      z-index: 2;
    }

    /* Улучшенная типографика — плотнее и выразительнее */
    #cj-audience .card h3 {
      font: 800 26px/1.25 "Inter", sans-serif;
      margin: 0 0 8px;
      color: #fff;
      text-shadow:
        0 0 12px rgba(0,0,0,0.6),
        0 0 24px rgba(0,0,0,0.3);
      letter-spacing: 0.02em;
    }

    #cj-audience .card p {
      margin: 0 auto;
      font: 500 18px/1.4 "Inter", sans-serif;
      max-width: 85%;
      color: #f5f5f5;
      text-shadow:
        0 0 8px rgba(0,0,0,0.6),
        0 0 18px rgba(0,0,0,0.4);
    }

    /* === Адаптив === */
    @media (max-width: 900px) {
      #cj-audience {
        padding: 70px 0;
      }

      #cj-audience h2 {
        font-size: 28px;
      }

      #cj-audience .lead {
        font-size: 15px;
        margin-bottom: 36px;
      }

      #cj-audience .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      #cj-audience .card {
        padding: 22px 14px;
        min-height: 170px;
      }

      #cj-audience .card h3 {
        font-size: 18px;
        margin-bottom: 6px;
      }

      #cj-audience .card p {
        font-size: 14px;
        line-height: 1.3;
      }
    }

    @media (max-width: 480px) {
      #cj-audience {
        padding: 60px 0;
      }

      #cj-audience h2 {
        font-size: 22px;
      }

      #cj-audience .lead {
        font-size: 13.5px;
        line-height: 1.4;
      }

      #cj-audience .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      #cj-audience .card {
        padding: 20px 10px;
        min-height: 150px;
      }

      #cj-audience .card h3 {
        font-size: 15px;
        margin-bottom: 5px;
      }

      #cj-audience .card p {
        font-size: 12.5px;
        line-height: 1.25;
        max-width: 95%;
      }
    }
 

  #cj-benefits, #cj-benefits * {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }

  #cj-benefits {
    padding: 80px 6vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  #cj-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
  }

  #cj-benefits .item {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  #cj-benefits .icon {
    width: 38px;
    height: 38px;
    opacity: 0.75;
  }

  #cj-benefits .item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4;
  }

  #cj-benefits .item p {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.62);
    line-height: 1.55;
    margin: 0;
  }

  /* Mobile */
 @media (max-width: 600px) {
  #cj-benefits {
    padding: 60px 20px;
  }
  #cj-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  #cj-benefits .item {
    text-align: left;
  }
  #cj-benefits .icon {
    width: 32px;
    height: 32px;
  }
}

 
    .cj-contact, .cj-contact * {
      box-sizing: border-box;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ===== SECTION ===== */
    .cj-contact {
      background: #fff;
      padding: 90px 6vw;
      color: #111;
    }

    .contacts-wrapper {
      max-width: 1040px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 40px;
    }

    @media (max-width: 900px) {
      .contacts-wrapper {
        grid-template-columns: 1fr;
      }
    }

    /* ===== LEFT COLUMN — FORM ===== */
    .contact-form-column h3 {
      font-size: clamp(1.6rem, 2.4vw, 2rem);
      font-weight: 800;
      margin-bottom: 18px;
    }

    /* NORMALIZING CF7 INPUTS */
    .cj-contact .wpcf7 form input,
    .cj-contact .wpcf7 form textarea,
    .cj-contact .wpcf7 form select {
      width: 100%;
      border-radius: 14px;
      border: 1px solid #deddd8;
      background: #faf9f6;
      padding: 12px 14px;
      font-size: 1rem;
      outline: none;
      transition: .2s ease;
      font-family: inherit;
    }

    .cj-contact .wpcf7 form input:focus,
    .cj-contact .wpcf7 form textarea:focus {
      border-color: #111;
      background: #fff;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    }

    /* CF7 SUBMIT */
    .cj-contact .wpcf7 .wpcf7-submit {
      background: #111;
      color: #fff;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      transition: .25s ease;
      width: 100%;
      margin-top: 6px;
      box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    }

    .cj-contact .wpcf7 .wpcf7-submit:hover {
      background: #2b2b2b;
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    }

    /* ===== RIGHT COLUMN — CONTACT CARD ===== */
    .contact-info-column {
      background: #faf9f6;
      border: 1px solid #e6e4df;
      border-radius: 20px;
      padding: 28px 30px;
      box-shadow: 0 14px 34px rgba(0,0,0,0.07);
      height: fit-content;
    }

    .contact-info-column h3 {
      font-size: 1.3rem;
      margin-bottom: 16px;
      font-weight: 800;
    }

    .contact-info-column p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 18px;
    }

    .contact-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .contact-links li {
      margin-bottom: 14px;
    }

    .contact-links a {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #333;
      font-size: 0.96rem;
      font-weight: 600;
      transition: .25s ease;
    }

    .contact-links a:hover {
      color: #b48a58;
      transform: translateX(3px);
    }

    .contact-links img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex-shrink: 0;
      opacity: 0.8;
    }
   
    #cj-faq, #cj-faq * {
      box-sizing: border-box;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    #cj-faq {
      background: #fff;
      padding: 90px 6vw;
      color: #111;
    }

    #cj-faq .cjf-shell {
      max-width: 900px;
      margin: 0 auto;
    }

    #cj-faq h2 {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 40px;
      text-align: center;
    }

    /* FAQ ITEMS */
    #cj-faq details {
      background: #faf9f6;
      border-radius: 18px;
      border: 1px solid #e6e4df;
      padding: 22px 26px;
      margin-bottom: 16px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
      transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
      cursor: pointer;
    }

    #cj-faq details:hover {
      border-color: #b48a58;
      box-shadow: 0 14px 40px rgba(180,138,88,0.18);
    }

    #cj-faq details[open] {
      background: #fff;
      border-color: #b48a58;
      box-shadow: 0 18px 46px rgba(180,138,88,0.22);
    }

    /* TITLE */
    #cj-faq summary {
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      user-select: none;
      color: #222;
    }

    #cj-faq summary:hover {
      color: #b48a58;
    }

    #cj-faq summary::-webkit-details-marker { display: none; }

    /* ICON */
    #cj-faq summary::after {
      content: "+";
      font-weight: 800;
      font-size: 24px;
      color: #b48a58;
      transition: transform .3s ease, color .3s ease;
    }

    #cj-faq details[open] summary::after {
      content: "–";
      transform: rotate(180deg);
    }

    /* TEXT */
    #cj-faq p {
      margin-top: 14px;
      font-size: 0.96rem;
      color: #444;
      line-height: 1.58;
      animation: fadeFaq .25s ease;
    }

    #cj-faq a {
      color: #b48a58;
      text-decoration: none;
      font-weight: 600;
    }

    #cj-faq a:hover {
      text-decoration: underline;
    }

    @keyframes fadeFaq {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 720px) {
      #cj-faq {
        padding: 70px 4vw;
      }
      #cj-faq details {
        padding: 18px 20px;
      }
      #cj-faq summary {
        font-size: 1rem;
      }
    }
 

    #cj-showcase, #cj-showcase * { box-sizing: border-box; font-family: Inter, sans-serif; }

    #cj-showcase {
      padding: 100px 6vw;
      background: #fff;
      color: #111;
    }

    #cj-showcase h2 {
      font-size: clamp(2.2rem, 3.8vw, 3.2rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 16px;
    }

    #cj-showcase p.lead {
      max-width: 780px;
      margin: 0 auto 48px;
      color: #555;
      font-size: 1.1rem;
      text-align: center;
      line-height: 1.55;
    }

    .cj-showcase__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 36px;
    }

    .cj-showcase__item {
      background: #fafafa;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }

    .cj-showcase__item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    }

    .cj-showcase__item img,
    .cj-showcase__item video {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .cj-showcase__item .text {
      padding: 22px 24px 26px;
    }

    .cj-showcase__item h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111;
    }

    .cj-showcase__item p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    @media (max-width: 520px) {
      .cj-showcase__item img,
      .cj-showcase__item video {
        height: 180px;
      }
    }
 
    #cj-order, #cj-order * {
      box-sizing: border-box;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    #cj-order {
      background: #fff;
      padding: 90px 6vw;
      color: #111;
      text-align: center;
    }

    #cj-order .cjo-shell {
      max-width: 880px;
      margin: 0 auto;
    }

    #cj-order h2 {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 12px;
    }

    #cj-order p.cjo-lead {
      color: #555;
      font-size: 1rem;
      line-height: 1.55;
      max-width: 600px;
      margin: 0 auto 42px;
    }

    /* GRID */
    #cj-order .cjo-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

    #cj-order .cjo-step {
      background: #faf9f6;
      border: 1px solid #e6e4df;
      border-radius: 20px;
      padding: 28px 22px 32px;
      text-align: left;
      position: relative;
      box-shadow: 0 14px 34px rgba(0,0,0,0.07);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    #cj-order .cjo-step:hover {
      transform: translateY(-4px);
      border-color: #b48a58;
      box-shadow: 0 16px 42px rgba(180,138,88,0.25);
    }

    /* Золотая линия */
    #cj-order .cjo-step::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      border-radius: 20px 20px 0 0;
      background: linear-gradient(90deg, #b48a58, #d4b98f);
    }

    /* Номер шага */
    #cj-order .cjo-step span {
      display: block;
      font-size: 32px;
      font-weight: 800;
      color: #b48a58;
      margin-bottom: 10px;
    }

    #cj-order .cjo-step p {
      font-size: 0.95rem;
      line-height: 1.55;
      color: #444;
      margin: 0;
    }

    /* CTA */
    #cj-order .cjo-btn {
      display: inline-block;
      background: #111;
      color: #fff;
      font-weight: 700;
      padding: 15px 28px;
      border-radius: 14px;
      text-decoration: none;
      font-size: 0.96rem;
      letter-spacing: 0.3px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    #cj-order .cjo-btn:hover {
      background: #2c2c2c;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    #cj-order .cjo-small {
      font-size: 0.8rem;
      color: #777;
      margin-top: 10px;
    }

    @media (max-width: 720px) {
      #cj-order {
        padding: 70px 4vw;
      }
      #cj-order .cjo-step {
        padding: 24px 18px 28px;
      }
      #cj-order .cjo-step span {
        font-size: 26px;
      }
    }
  
    #cj-formats, #cj-formats * {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

#cj-formats {
  padding: 100px 6vw;
  background: #fff;
  color: #111;
}

#cj-formats h2 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

#cj-formats p.lead {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.02rem;
  color: #555;
  line-height: 1.55;
}

#cj-formats .note {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 40px;
}

.cj-formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.cj-format-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 24px 22px 26px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cj-format-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #888;
  margin-bottom: 6px;
}

.cj-format-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.cj-format-price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.cj-format-price span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
}

.cj-format-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.cj-format-meta strong {
  font-weight: 600;
  color: #444;
}

.cj-format-list {
  margin: 10px 0 18px;
  padding-left: 15px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.45;
}

.cj-format-list li {
  margin-bottom: 4px;
}

.cj-format-foot {
  margin-top: auto;
  font-size: 0.82rem;
  color: #888;
}

.cj-formats-cta {
  text-align: center;
  margin-top: 10px;
}

.cj-formats-cta a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  background: #1f2124;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.cj-formats-cta a:hover {
  background: #333;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  #cj-formats {
    padding: 42px 16px;
  }

  #cj-formats h2 {
    font-size: 30px;
  }

  #cj-formats p.lead {
    font-size: 16px;
    margin: 0 auto 24px;
  }

  #cj-formats .note {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .cj-formats-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 10px;
    margin: 0 -4px 24px;
    scrollbar-width: none;
  }

  .cj-formats-grid::-webkit-scrollbar {
    display: none;
  }

  .cj-format-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: start;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }

  .cj-format-name {
    font-size: 1.15rem;
  }

  .cj-format-price {
    font-size: 1rem;
  }

  .cj-format-meta {
    font-size: 0.88rem;
  }

  .cj-format-list {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cj-formats-cta {
    margin-top: 4px;
  }

  .cj-formats-cta a {
    width: 100%;
    max-width: 320px;
    padding: 14px 22px;
    font-size: 0.96rem;
    border-radius: 12px;
  }
}

    /* === MOBILE SLIDER — как в блоке с отзывами === */
    @media (max-width: 720px) {
      .cj-formats-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding: 4px;
      }

      .cj-formats-grid > * {
        flex: 0 0 82%;
        scroll-snap-align: start;
      }

      .cj-formats-grid::-webkit-scrollbar {
        display: none;
      }
    }
  
    #cj-repertoire, #cj-repertoire * {
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    #cj-repertoire {
      padding: 100px 6vw;
      background: #fff;
      color: #111;
    }

    #cj-repertoire h2 {
      font-size: clamp(2.2rem, 3.8vw + 1rem, 3rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 16px;
    }

    #cj-repertoire p.lead {
      max-width: 780px;
      margin: 0 auto 48px;
      font-size: 1.05rem;
      color: #555;
      line-height: 1.55;
      text-align: center;
    }

    /* === GRID === */
    .cj-rep-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 36px;
      margin-bottom: 60px;
    }

    .cj-rep-card {
      background: #fafafa;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      transition: transform .3s ease;
    }

    .cj-rep-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    }

    .cj-rep-card h3 {
      margin-top: 0;
      font-size: 1.3rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 12px;
    }

    .cj-rep-card ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .cj-rep-card ul li {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.45;
      margin-bottom: 6px;
    }

    .cj-rep-cta {
      text-align: center;
      margin-top: 20px;
    }

    .cj-rep-cta a {
      display: inline-block;
      padding: 14px 30px;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      background: #1F2124;
      border-radius: 12px;
      text-decoration: none;
      transition: background .3s ease;
    }

    .cj-rep-cta a:hover {
      background: #333;
    }

    /* === MOBILE: сетка 2×2 === */
    @media (max-width: 640px) {
      #cj-repertoire {
        padding: 70px 4vw;
      }

      .cj-rep-grid {
        grid-template-columns: repeat(2, 1fr); /* ← 2×2 */
        gap: 16px;
      }

      .cj-rep-card {
        padding: 18px 14px;
      }

      .cj-rep-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .cj-rep-card ul li {
        font-size: 0.85rem;
        line-height: 1.35;
      }
    }
 
    #cj-reviews, #cj-reviews * {
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    #cj-reviews {
      padding: 100px 6vw;
      background: #fff;
      color: #111;
    }

    #cj-reviews h2 {
      font-size: clamp(2.2rem, 3.6vw, 3rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 16px;
    }

    #cj-reviews p.lead {
      max-width: 740px;
      margin: 0 auto 48px;
      font-size: 1.02rem;
      color: #555;
      text-align: center;
      line-height: 1.55;
    }

    /* === DESKTOP GRID === */
    .cj-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px;
    }

    .cj-review-card {
      background: #fafafa;
      border-radius: 20px;
      padding: 22px 22px 24px;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .cj-review-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .cj-review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #1f2124;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .cj-review-name {
      font-size: 0.98rem;
      font-weight: 700;
      color: #111;
    }

    .cj-review-tag {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: .09em;
      color: #777;
    }

    .cj-review-body {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 12px;
    }

    .cj-review-footer {
      margin-top: auto;
      font-size: 0.8rem;
      color: #888;
    }

    /* === TABLET === */
    @media (max-width: 1024px) {
      .cj-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* === MOBILE: превращаем в свайп-слайдер === */
   @media (max-width: 720px) {

  .cj-reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .cj-review-card {
    min-width: 78%;
    max-width: 78%;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 18px 18px 20px;

    /* 👉 фиксим перенос */
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }

  .cj-reviews-grid::-webkit-scrollbar {
    display: none;
  }
}
   
 
  #cj-styles,
  #cj-styles * {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }

  #cj-styles {
    padding: 100px 6vw;
    background: #fff;
    color: #111;
    position: relative;
  }

  #cj-styles h2 {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
  }

  #cj-styles .lead {
    max-width: 740px;
    margin: 0 auto 48px;
    font-size: 1.02rem;
    color: #555;
    text-align: center;
    line-height: 1.55;
  }

  /* slider */
  .cj-styles-slider {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .cj-style-card {
    min-width: 340px;
    scroll-snap-align: start;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .cj-style-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .cj-style-text {
    padding: 18px 20px 22px;
  }

  .cj-style-text h3 {
    margin: 0 0 6px;
    font-size: 1.3rem;
    font-weight: 800;
  }

  .cj-style-text p {
   font-size: 0.96rem;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }

  /* arrows */
  .cj-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    border: none;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
  }
  .cj-arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .cj-arrow-left { left: -10px; }
  .cj-arrow-right { right: -10px; }

  /* progress bar */
  .cj-progress {
    margin: 26px auto 0;
    width: 100%;
    height: 5px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
  }

  .cj-progress-fill {
    height: 5px;
    width: 0%;
    background: #111;
    border-radius: 999px;
    transition: width 0.25s linear;
  }

  /* MOBILE: свайп без стрелок */
  @media (max-width: 820px) {
    .cj-arrow { display: none; }
    .cj-style-card { min-width: 78%; }
  }


  #cj-video-showcase, #cj-video-showcase * {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }

  #cj-video-showcase {
    background: #fff;
    padding: 100px 6vw 120px;
    text-align: center;
    color: #111;
  }

  #cj-video-showcase h2 {
    font-size: clamp(2.4rem, 4vw + 1rem, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
  }

  #cj-video-showcase p.lead {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .cj-video-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    justify-items: center;
    align-items: start;
  }

  .cj-video-showcase__item {
    width: 100%;
    max-width: 540px;
    position: relative;
  }

  .cj-video-showcase__item video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }

  .cj-video-showcase__item .label {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
  }

  .cj-video-showcase__item .track {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #777;
    letter-spacing: 0.02em;
  }

  @media (max-width: 640px) {
    #cj-video-showcase {
      padding: 70px 4vw 80px;
    }
    #cj-video-showcase p.lead {
      font-size: 0.95rem;
      margin-bottom: 32px;
    }
    .cj-video-showcase__grid {
      gap: 32px;
    }
  }

    #cj-quiz, #cj-quiz * {
      box-sizing: border-box;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    #cj-quiz {
      padding: 96px 6vw;
      background: #fff; /* фон как у сайта, можно подправить */
      color: #111;
    }

    #cj-quiz .cjq-shell {
      max-width: 880px;
      margin: 0 auto;
    }

    #cj-quiz .cjq-head {
      text-align: center;
      margin-bottom: 28px;
    }

    #cj-quiz .cjq-title {
      font-size: clamp(2rem, 3.4vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 8px;
    }

    #cj-quiz .cjq-lead {
      font-size: 0.98rem;
      color: #555;
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Карточка квиза */
    #cj-quiz .cjq-card {
      background: #fff;
      border-radius: 26px;
      padding: 26px 24px 20px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    }

    /* Прогресс */
    #cj-quiz .cjq-progress {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 0.84rem;
      color: #777;
    }

    #cj-quiz .cjq-progress-bar {
      flex: 1;
      height: 4px;
      border-radius: 999px;
      background: #e2e0da;
      overflow: hidden;
    }

    #cj-quiz .cjq-progress-bar-inner {
      height: 100%;
      width: 0%;
      background: #111;
      border-radius: 999px;
      transition: width .25s ease;
    }

    /* Шаги */
    #cj-quiz .cjq-step {
      display: none;
      animation: cjqFade .25s ease;
    }
    #cj-quiz .cjq-step.cjq-active {
      display: block;
    }

    @keyframes cjqFade {
      from { opacity: 0; transform: translateY(4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    #cj-quiz .cjq-question {
      font-size: 1.06rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    #cj-quiz .cjq-hint {
      font-size: 0.82rem;
      color: #888;
      margin-top: 6px;
    }

    /* Опции-карточки */
    #cj-quiz .cjq-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 12px;
      margin-bottom: 4px;
    }

    #cj-quiz .cjq-option {
      position: relative;
      border-radius: 18px;
      padding: 11px 12px;
      border: 1px solid #deddd8;
      background: #faf9f6;
      font-size: 0.94rem;
      cursor: pointer;
      transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s;
      display: flex;
      align-items: center;
      min-height: 46px;
    }

    #cj-quiz .cjq-option input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    #cj-quiz .cjq-option span {
      position: relative;
      z-index: 1;
    }

    #cj-quiz .cjq-option.cjq-selected {
      background: #111;
      border-color: #111;
      color: #fff;
      box-shadow: 0 10px 28px rgba(0,0,0,0.22);
      transform: translateY(-1px);
    }

    /* Поля */
    #cj-quiz .cjq-field {
      margin-bottom: 14px;
    }

    #cj-quiz .cjq-field label {
      display: block;
      font-size: 0.84rem;
      color: #555;
      margin-bottom: 4px;
    }

    #cj-quiz .cjq-field input,
    #cj-quiz .cjq-field textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid #deddd8;
      padding: 10px 11px;
      font-size: 0.95rem;
      background: #faf9f6;
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
      font-family: inherit;
    }

    #cj-quiz .cjq-field input:focus,
    #cj-quiz .cjq-field textarea:focus {
      border-color: #111;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
      background: #fff;
    }

    #cj-quiz .cjq-field textarea {
      min-height: 70px;
      resize: vertical;
    }

    /* Навигация */
    #cj-quiz .cjq-footer {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    #cj-quiz .cjq-nav {
      display: flex;
      gap: 10px;
    }

    #cj-quiz .cjq-btn {
      border-radius: 14px;
      padding: 10px 18px;
      border: none;
      cursor: pointer;
      font-size: 0.94rem;
      font-weight: 600;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background .2s ease, transform .2s ease, opacity .2s ease, box-shadow .2s ease;
    }

    #cj-quiz .cjq-btn:disabled {
      opacity: .6;
      cursor: default;
      box-shadow: none;
    }

    #cj-quiz .cjq-btn--primary {
      background: #111;
      color: #fff;
      box-shadow: 0 8px 22px rgba(0,0,0,0.22);
    }

    #cj-quiz .cjq-btn--primary:hover:not(:disabled) {
      background: #2b2b2b;
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    }

    #cj-quiz .cjq-btn--ghost {
      background: transparent;
      color: #555;
      border: 1px solid #cfcfc8;
    }

    #cj-quiz .cjq-btn--ghost:hover:not(:disabled) {
      background: #f2f1ed;
    }

    #cj-quiz .cjq-status {
      font-size: 0.82rem;
      color: #777;
    }

    #cj-quiz .cjq-status span {
      font-weight: 600;
    }

    #cj-quiz .cjq-msg {
      display: none;
      margin-top: 12px;
      font-size: 0.9rem;
      text-align: center;
    }

    #cj-quiz .cjq-msg--success {
      color: #1b7a3c;
    }

    #cj-quiz .cjq-msg--error {
      color: #b3261e;
    }

    #cj-quiz .cjq-msg.cjq-visible {
      display: block;
    }

    #cj-quiz .cjq-error-step {
      margin-top: 6px;
      font-size: 0.82rem;
      color: #b3261e;
    }

    @media (max-width: 720px) {
      #cj-quiz {
        padding: 70px 4vw;
      }
      #cj-quiz .cjq-card {
        padding: 20px 16px 16px;
        border-radius: 20px;
      }
      #cj-quiz .cjq-footer {
        flex-direction: column-reverse;
        align-items: stretch;
      }
      #cj-quiz .cjq-nav {
        justify-content: space-between;
      }
    }
    /* Центровка текста и усиление жирности в опциях */
#cj-quiz .cjq-option {
  justify-content: center;      /* центрируем текст горизонтально */
  text-align: center;           /* выравнивание текста по центру */
  font-weight: 600;             /* более жирный текст */
}

#cj-quiz .cjq-option span {
  width: 100%;
  display: block;
}
