/* ==========================================================
   CLUB V2 — стили в духе главной (home.css)
   палитра: #6C7AF5, #5D6EFF, #8B60FF, #152397, #33DFA6, #12062A
   ========================================================== */

/* === ОБЩИЕ === */
.cv2 h2 {
    text-align: center;
    margin-bottom: 20px;
}
.cv2 .description-section {
    text-align: center;
    margin: 0 auto 50px;
}

/* === HERO === */
.cv2-hero {
    position: relative;
    background: linear-gradient(180deg, #f6f7fd 0%, #e8eafe 100%);
    overflow: hidden;
    padding: 130px 0 80px;
}
.cv2-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 800px 400px at 80% 30%, rgba(139, 96, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 600px 500px at 15% 70%, rgba(108, 122, 245, 0.20), transparent 65%);
}
.cv2-hero-wrap {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}
.cv2-hero-left {
    flex: 1;
    max-width: 700px;
}
.cv2-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(139, 96, 255, 0.1);
    color: #8B60FF;
    border-radius: 50rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.cv2-hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: #8B60FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #8B60FF;
}
.cv2-hero-title {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    color: #152397;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.cv2-hero-title span {
    color: #5D6EFF;
}
.cv2-hero-desc {
    font-size: 18px;
    line-height: 28px;
    color: #6B7094;
    margin-bottom: 35px;
    max-width: 600px;
}
.cv2-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.cv2-hero-buttons a {
    flex: 1;
    max-width: 280px;
    min-width: 200px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 20px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cv2-hero-buttons a::before,
.cv2-hero-buttons a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.6s ease;
}
.cv2-hero-buttons a:first-child::before {
    background: linear-gradient(90deg, #6A5CFF 0%, #8B5CF6 50%, #4F46E5 100%);
    opacity: 1;
}
.cv2-hero-buttons a:first-child::after {
    background: linear-gradient(90deg, #6A5CFF 0%, #6624fa 50%, #4F46E5 100%);
    opacity: 0;
}
.cv2-hero-buttons a:first-child:hover::after { opacity: 1; }
.cv2-hero-buttons a:first-child {
    box-shadow: 0 10px 30px rgba(139, 96, 255, 0.35);
}
.cv2-hero-buttons a:last-child {
    border: 1px solid #5D6EFF;
    color: #5D6EFF;
    background: #fff;
}
.cv2-hero-buttons a:last-child:hover {
    background: #5D6EFF;
    color: #fff;
}
.cv2-hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(107, 112, 148, 0.2);
    flex-wrap: wrap;
}
.cv2-hero-stat-num {
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 42px;
    line-height: 1;
    color: #5D6EFF;
    margin-bottom: 5px;
}
.cv2-hero-stat-label {
    font-size: 12px;
    color: #6B7094;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.cv2-hero-right {
    flex: 0 0 380px;
    position: relative;
}
.cv2-hero-img-wrap {
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #8B60FF 0%, #62c1ee 100%);
    box-shadow: 0 30px 60px rgba(83, 58, 153, 0.25);
    position: relative;
}
.cv2-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.cv2-hero-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding: 30px;
}

/* === ОБЩАЯ СЕКЦИЯ-WRAP === */
.cv2-section {
    max-width: 1190px;
    margin: 80px auto;
    padding: 0 20px;
}

/* === ОТЗЫВЫ (Истории успеха) === */
.cv2-reviews {
    background: #F1F2FE;
    padding: 80px 0;
}
.cv2-reviews-wrap {
    max-width: 1190px;
    margin: auto;
    padding: 0 20px;
}
.cv2-reviews-note {
    background: rgba(139, 96, 255, 0.08);
    border: 1px dashed rgba(139, 96, 255, 0.4);
    color: #8B60FF;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.cv2-reviews-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.cv2-review-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(204, 208, 214, 0.6);
    transition: all 0.4s ease;
}
.cv2-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(83, 58, 153, 0.2);
}
.cv2-review-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.cv2-review-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B60FF, #62c1ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 26px;
    flex-shrink: 0;
}
.cv2-review-name {
    font-size: 16px;
    font-weight: 700;
    color: #12062A;
    line-height: 1.2;
    margin-bottom: 4px;
}
.cv2-review-role {
    font-size: 12px;
    color: #6B7094;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cv2-review-stars {
    color: #FFB400;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.cv2-review-text {
    font-size: 14px;
    line-height: 22px;
    color: #6B7094;
}

/* === КОМУ ПОДОЙДЁТ — 4 карточки с градиентом, как .item-basic-numerology === */
.cv2-audience-list {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.cv2-audience-item {
    flex: 1;
    min-width: 240px;
    background: radial-gradient(72.16% 124.64% at 72.22% 44.02%, #8b60ff 0%, #62c1ee 85.58%);
    border-radius: 20px;
    padding: 35px 25px;
    color: #fff;
    transition: transform 0.4s ease;
}
.cv2-audience-item:nth-child(2) {
    background: radial-gradient(65.15% 76.64% at 39.72% 50.1%, #8b60ff 0%, rgba(132, 112, 252, 0.9) 46.22%, #62c1ee 85.58%, rgba(98, 193, 238, 0.97) 100%);
}
.cv2-audience-item:nth-child(3) {
    background: linear-gradient(289deg, #8b60ff 0%, #62c1ee 60.19%, #62c1ee 100%);
}
.cv2-audience-item:nth-child(4) {
    background: linear-gradient(135deg, #533A99 0%, #6C7AF5 100%);
}
.cv2-audience-item:hover {
    transform: translateY(-5px);
}
.cv2-audience-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.cv2-audience-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.cv2-audience-desc {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
}

/* === ЧТО ВНУТРИ — тёмная фиолетовая секция как section-subscribe === */
.cv2-features {
    position: relative;
    background: linear-gradient(180deg, #6C7AF5, #533A99);
    padding: 100px 0 120px;
    overflow: hidden;
}
.cv2-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 20%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(ellipse 500px 400px at 90% 80%, rgba(115, 245, 173, 0.08), transparent 60%);
    z-index: 0;
}
.cv2-features-wrap {
    max-width: 1190px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.cv2-features h2 {
    text-align: center;
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cv2-features h2 span {
    color: #6CE9BB;
}
.cv2-features-subtitle {
    text-align: center;
    color: #EAECF4;
    font-size: 20px;
    line-height: 28px;
    max-width: 700px;
    margin: 0 auto 60px;
}
.cv2-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.cv2-feature-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}
.cv2-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(115, 245, 173, 0.4);
}
.cv2-feature-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(63, 81, 181, 0.25);
    backdrop-filter: blur(8px);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.cv2-feature-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        inset 5px 5px 14px rgba(255, 255, 255, 0.05),
        inset -6px -6px 16px rgba(0, 0, 0, 0.1);
}
.cv2-feature-num {
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 36px;
    color: #6CE9BB;
    line-height: 1;
}
.cv2-feature-title {
    color: #73F5AD;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.cv2-feature-desc {
    color: #EAECF4;
    font-size: 14px;
    line-height: 1.45;
}

/* === ПРОГРАММА КУРСОВ — горизонтальные карточки как .item-basic-direction === */
.cv2-programs {
    background: rgba(108, 122, 245, 0.05);
    padding: 80px 0;
}
.cv2-programs-wrap {
    max-width: 1190px;
    margin: auto;
    padding: 0 20px;
}
.cv2-programs-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cv2-program-item {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(83, 58, 153, 0.08);
    transition: all 0.4s ease;
}
.cv2-program-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(83, 58, 153, 0.15);
}
.cv2-program-cover {
    width: 240px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B60FF 0%, #62c1ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 80px;
    line-height: 1;
    position: relative;
}
.cv2-program-item:nth-child(2) .cv2-program-cover { background: linear-gradient(135deg, #6C7AF5 0%, #533A99 100%); }
.cv2-program-item:nth-child(3) .cv2-program-cover { background: linear-gradient(135deg, #62c1ee 0%, #8B60FF 100%); }
.cv2-program-item:nth-child(4) .cv2-program-cover { background: linear-gradient(135deg, #33DFA6 0%, #6C7AF5 100%); }
.cv2-program-item:nth-child(5) .cv2-program-cover { background: linear-gradient(135deg, #ff7eb8 0%, #8B60FF 100%); }
.cv2-program-item:nth-child(6) .cv2-program-cover { background: linear-gradient(135deg, #FFB400 0%, #ff7eb8 100%); }
.cv2-program-cover-decor {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.cv2-program-info {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cv2-program-meta {
    font-size: 11px;
    color: #8B60FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}
.cv2-program-title {
    font-size: 26px;
    font-weight: 800;
    color: #152397;
    line-height: 1.15;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.cv2-program-desc {
    color: #6B7094;
    font-size: 15px;
    line-height: 22px;
}

/* === 7 ЧАКР === */
.cv2-chakras {
    background: #F1F2FE;
    padding: 80px 0;
}
.cv2-chakras-wrap {
    max-width: 1190px;
    margin: auto;
    padding: 0 20px;
}
.cv2-chakras-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
    max-width: 900px;
    margin: 40px auto 0;
}
.cv2-chakra-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(107, 112, 148, 0.15);
}
.cv2-chakra-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cv2-chakra-1 { background: linear-gradient(135deg, #e84a4a, #c92020); }
.cv2-chakra-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cv2-chakra-3 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.cv2-chakra-4 { background: linear-gradient(135deg, #10b981, #059669); }
.cv2-chakra-5 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.cv2-chakra-6 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.cv2-chakra-7 { background: linear-gradient(135deg, #e879f9, #c026d3); }
.cv2-chakra-name {
    font-size: 16px;
    font-weight: 800;
    color: #152397;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px;
}
.cv2-chakra-question {
    font-size: 14px;
    color: #6B7094;
    line-height: 1.3;
}

/* === ЦЕНА === */
.cv2-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f7fd 0%, #ffffff 100%);
}
.cv2-pricing-wrap {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}
.cv2-pricing-card {
    background: #fff;
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(83, 58, 153, 0.12);
    position: relative;
    overflow: hidden;
}
.cv2-pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(139, 96, 255, 0.06), transparent 70%);
    pointer-events: none;
}
.cv2-pricing-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
.cv2-pricing-side {
    text-align: center;
}
.cv2-pricing-label {
    font-size: 12px;
    color: #6B7094;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}
.cv2-pricing-price-big {
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 56px;
    line-height: 1;
    color: #152397;
    margin-bottom: 8px;
}
.cv2-pricing-side-old .cv2-pricing-price-big {
    color: #6B7094;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}
.cv2-pricing-side-new .cv2-pricing-price-big {
    background: linear-gradient(90deg, #8B60FF 0%, #5D6EFF 50%, #33DFA6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cv2-pricing-price-detail {
    font-size: 13px;
    color: #6B7094;
    line-height: 1.3;
}
.cv2-pricing-arrow {
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 40px;
    color: #8B60FF;
}
.cv2-pricing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid rgba(107, 112, 148, 0.12);
    border-bottom: 1px solid rgba(107, 112, 148, 0.12);
}
.cv2-pricing-features li {
    list-style: none;
    background: rgba(139, 96, 255, 0.08);
    border-radius: 50rem;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7094;
}
.cv2-pricing-features li::before {
    content: '✓ ';
    color: #33DFA6;
    font-weight: 800;
}
.cv2-pricing-button-wrap {
    text-align: center;
}
.cv2-pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 60px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    border-radius: 50rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cv2-pricing-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6A5CFF 0%, #8B5CF6 50%, #4F46E5 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
}
.cv2-pricing-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #4F46E5 0%, #6624fa 50%, #6A5CFF 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.cv2-pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 96, 255, 0.35);
}
.cv2-pricing-button:hover::after { opacity: 1; }
.cv2-pricing-guarantee {
    margin-top: 20px;
    font-size: 13px;
    color: #6B7094;
    text-align: center;
}

/* === ЭКСПЕРТ === */
.cv2-expert {
    padding: 80px 0;
    background: rgba(108, 122, 245, 0.05);
}
.cv2-expert-wrap {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}
.cv2-expert-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(83, 58, 153, 0.08);
}
.cv2-expert-photo {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #8B60FF 0%, #62c1ee 100%);
    box-shadow: 0 15px 40px rgba(83, 58, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-align: center;
    padding: 30px;
}
.cv2-expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.cv2-expert-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: #152397;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.1;
}
.cv2-expert-tag {
    display: inline-block;
    background: rgba(139, 96, 255, 0.1);
    color: #8B60FF;
    padding: 6px 18px;
    border-radius: 50rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.cv2-expert-desc {
    color: #6B7094;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 14px;
}
.cv2-expert-stats {
    display: flex;
    gap: 35px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(107, 112, 148, 0.15);
    flex-wrap: wrap;
}
.cv2-expert-stats > div strong {
    display: block;
    font-family: 'BebasNaueBold', Impact, sans-serif;
    font-size: 36px;
    color: #5D6EFF;
    line-height: 1;
    margin-bottom: 6px;
}
.cv2-expert-stats > div span {
    font-size: 12px;
    color: #6B7094;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === БОНУСЫ === */
.cv2-bonuses-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.cv2-bonus-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(83, 58, 153, 0.06);
    border: 1px solid rgba(108, 122, 245, 0.1);
    transition: all 0.4s ease;
    position: relative;
}
.cv2-bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(83, 58, 153, 0.15);
    border-color: rgba(139, 96, 255, 0.4);
}
.cv2-bonus-tag {
    display: inline-block;
    background: linear-gradient(90deg, #8B60FF 0%, #5D6EFF 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.cv2-bonus-title {
    font-size: 16px;
    font-weight: 800;
    color: #152397;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cv2-bonus-desc {
    color: #6B7094;
    font-size: 13px;
    line-height: 1.5;
}

/* === FAQ (используем стиль) === */
.cv2-faq {
    padding: 80px 0;
    background: #f6f7fd;
}
.cv2-faq-wrap {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}
.cv2-faq details {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(83, 58, 153, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}
.cv2-faq summary {
    cursor: pointer;
    padding: 22px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #152397;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    line-height: 1.3;
}
.cv2-faq summary::-webkit-details-marker { display: none; }
.cv2-faq summary::after {
    content: '+';
    font-size: 26px;
    color: #8B60FF;
    flex-shrink: 0;
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
}
.cv2-faq details[open] summary::after {
    content: '−';
}
.cv2-faq details p {
    padding: 0 30px 22px;
    color: #6B7094;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* === FINAL CTA === */
.cv2-final {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #6C7AF5 0%, #533A99 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.cv2-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(115, 245, 173, 0.12), transparent 60%);
}
.cv2-final-wrap {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.cv2-final h2 {
    color: #fff;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cv2-final h2 span {
    color: #6CE9BB;
}
.cv2-final-desc {
    font-size: 18px;
    color: #EAECF4;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* === MOBILE === */
@media screen and (max-width: 991px) {
    .cv2-hero-wrap { flex-direction: column; }
    .cv2-hero-right { max-width: 380px; width: 100%; }
    .cv2-hero-title { font-size: 38px; }
    .cv2-features-list { grid-template-columns: repeat(2, 1fr); }
    .cv2-program-cover { width: 180px; font-size: 60px; }
    .cv2-program-info { padding: 25px; }
    .cv2-bonuses-list { grid-template-columns: repeat(2, 1fr); }
    .cv2-expert-card { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 35px; }
    .cv2-expert-photo { max-width: 280px; margin: 0 auto; }
    .cv2-expert-stats { justify-content: center; }
}
@media screen and (max-width: 767px) {
    .cv2-hero { padding: 80px 0 50px; }
    .cv2-hero-title { font-size: 28px; line-height: 1.15; }
    .cv2-hero-desc { font-size: 14px; line-height: 22px; }
    .cv2-hero-buttons { flex-direction: column; }
    .cv2-hero-buttons a { max-width: 100%; width: 100%; height: 50px; font-size: 13px; }
    .cv2-hero-stats { gap: 25px; }
    .cv2-hero-stat-num { font-size: 32px; }
    .cv2-section { margin: 50px auto; }
    .cv2-reviews { padding: 50px 0; }
    .cv2-reviews-list { flex-direction: column; }
    .cv2-audience-list { gap: 15px; }
    .cv2-audience-item { min-width: 100%; padding: 25px 20px; }
    .cv2-features { padding: 60px 0 80px; }
    .cv2-features h2 { font-size: 30px; padding: 0 15px; }
    .cv2-features-subtitle { font-size: 15px; padding: 0 15px; margin-bottom: 35px; }
    .cv2-features-list { grid-template-columns: 1fr; }
    .cv2-programs { padding: 50px 0; }
    .cv2-program-item { flex-direction: column; }
    .cv2-program-cover { width: 100%; height: 140px; font-size: 70px; }
    .cv2-program-info { padding: 25px 20px; }
    .cv2-program-title { font-size: 22px; }
    .cv2-chakras { padding: 50px 0; }
    .cv2-chakras-list { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
    .cv2-chakra-circle { width: 48px; height: 48px; font-size: 22px; }
    .cv2-pricing { padding: 50px 0; }
    .cv2-pricing-card { padding: 35px 20px; border-radius: 22px; }
    .cv2-pricing-compare { grid-template-columns: 1fr; gap: 20px; margin-bottom: 25px; }
    .cv2-pricing-arrow { transform: rotate(90deg); }
    .cv2-pricing-price-big { font-size: 42px; }
    .cv2-pricing-button { padding: 18px 35px; font-size: 14px; }
    .cv2-pricing-features li { font-size: 12px; padding: 6px 14px; }
    .cv2-expert { padding: 50px 0; }
    .cv2-expert-card { padding: 25px; }
    .cv2-expert-info h3 { font-size: 26px; }
    .cv2-expert-stats { gap: 20px; }
    .cv2-expert-stats > div strong { font-size: 28px; }
    .cv2-bonuses-list { grid-template-columns: 1fr; }
    .cv2-faq { padding: 50px 0; }
    .cv2-faq summary { padding: 18px 22px; font-size: 14px; }
    .cv2-faq details p { padding: 0 22px 18px; font-size: 13px; }
    .cv2-final { padding: 60px 0; }
    .cv2-final h2 { font-size: 28px; }
    .cv2-final-desc { font-size: 14px; }
}
/* ===== PATCH1: fonts swap ===== */

/* H2 — главные заголовки секций: ЖИРНЕЕ И ТЕМНЕЕ */
.cv2 h2 {
    font-weight: 900 !important;
    color: #12062A !important;
    font-size: 40px !important;
    line-height: 1.1 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}
.cv2-features h2,
.cv2-final h2 { color: #fff !important; }

/* Подзаголовки карточек: МЕНЕЕ ЖИРНЫЕ (700 вместо 800) */
.cv2-bonus-title,
.cv2-program-title,
.cv2-audience-title,
.cv2-feature-title,
.cv2-chakra-name,
.cv2-review-name,
.cv2-expert-info h3,
.cv2-pricing-label {
    font-weight: 700 !important;
}

/* Цифры hero и крупные числа: Montserrat 800, БЕЗ BebasNeue */
.cv2-hero-stat-num,
.cv2-pricing-price-big,
.cv2-expert-stats > div strong,
.cv2-program-cover,
.cv2-chakra-circle,
.cv2-feature-num,
.cv2-review-avatar,
.cv2-pricing-arrow {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
}

/* Тоньше размер цифр hero (было 42px → 32px) */
.cv2-hero-stat-num { font-size: 32px !important; }

/* Цифры курсов на обложке — крупнее, без bebas */
.cv2-program-cover { font-size: 64px !important; font-weight: 900 !important; }

@media screen and (max-width: 767px) {
    .cv2 h2 { font-size: 26px !important; letter-spacing: 1px !important; padding: 0 15px; }
    .cv2-hero-stat-num { font-size: 26px !important; }
}

/* ===== END PATCH1 ===== */
/* ===== PATCH2: hero stats refine ===== */
.cv2-hero-stat-num {
    font-size: 28px !important;
    font-weight: 600 !important;
}
.cv2-hero-stat-label {
    font-weight: 500 !important;
    font-size: 11px !important;
}
@media screen and (max-width: 767px) {
    .cv2-hero-stat-num { font-size: 24px !important; }
}
/* ===== END PATCH2 ===== */
