/* --- СБРОС ОТСТУПОВ ТЕМЫ --- */
main#primary.site-main, .site-content, #content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


:root {
    --cl-green: #7fb98d;
    --cl-orange: #f89f73;
    --cl-beige: #f3f2ee;
    
    
    --cl-heading: #2f3030;
    --cl-text: #0e0f14;
    --cl-gray: #64748b;
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

.cl-wrapper {
    font-family: 'Montserrat', sans-serif !important;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    color: var(--cl-text);
    overflow-x: hidden;
}

.cl-container {
    max-width: 1308px; 
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cl-wrapper * {
    box-sizing: border-box;
}


.cl-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cl-heading);
    margin: 60px 0 30px 0;
    line-height: 1.2;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.cl-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--cl-green);
    border-radius: 2px;
}


.cl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cl-btn-telegram { background: #229ED9; color: #fff !important; }
.cl-btn-whatsapp { background: #25D366; color: #fff !important; }

.cl-btn-telegram:hover, .cl-btn-whatsapp:hover {
    transform: translateY(-2px); opacity: 0.9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.cl-hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--cl-beige);
    padding: 80px 0;
    margin-bottom: 60px;
}

.cl-hero-inner {
    max-width: 1308px; 
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cl-hero-content {
    flex: 1;
    max-width: 650px;
    color: var(--cl-text);
}

.cl-hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cl-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cl-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cl-heading);
}

.cl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--cl-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid var(--cl-green);
}

.cl-hero-buy-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cl-heading);
    margin-bottom: 15px;
}

.cl-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.cl-about-block {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 60px;
    transition: 0.3s;
}
.cl-about-block:hover {
    border-color: var(--cl-green);
    box-shadow: 0 10px 20px rgba(127, 185, 141, 0.15);
}

.cl-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--cl-text);
}
.cl-text:last-child { margin-bottom: 0; }

.cl-signature {
    font-weight: 700;
    font-size: 18px;
    color: var(--cl-green);
    margin-top: 30px;
    font-style: italic;
}

.cl-warning {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--cl-orange);
    background: #fff4ed;
    border-radius: 8px;
    font-size: 14px;
    color: #9a3412;
}


.cl-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.cl-target-card {
    background: var(--cl-beige);
    border: 1px solid rgba(127, 185, 141, 0.3);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.cl-target-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(127, 185, 141, 0.15);
    border-color: var(--cl-green);
}

.cl-target-top { width: 100%; }

.cl-target-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
}

.cl-target-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(127, 185, 141, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cl-target-icon img { width: 24px; height: 24px; object-fit: contain; }

.cl-target-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cl-heading);
    margin: 0;
    line-height: 1.3;
}

.cl-target-desc {
    font-size: 14px;
    color: var(--cl-text);
    line-height: 1.5;
    margin: 0 0 20px 0;
}


.cl-content-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.cl-content-item {
    padding: 25px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
}

.cl-content-item:hover {
    border-color: var(--cl-green);
    box-shadow: 0 5px 15px rgba(127, 185, 141, 0.1);
}

.cl-content-num {
    font-weight: 800;
    color: var(--cl-green);
    font-size: 24px;
    line-height: 1;
    min-width: 35px;
}

.cl-content-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--cl-heading);
}
.cl-content-text p { margin: 0; font-size: 14px; color: var(--cl-gray); line-height: 1.5; }

.cl-note-beige {
    background: var(--cl-beige);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    color: var(--cl-text);
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(127, 185, 141, 0.2);
}


.cl-review-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}
.cl-review-single {
    background: var(--cl-beige);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    border: 1px solid transparent;
    transition: 0.3s;
}
.cl-review-single:hover {
    border-color: var(--cl-green);
    box-shadow: 0 10px 20px rgba(127, 185, 141, 0.1);
}
.cl-review-text { font-style: italic; font-size: 16px; margin-bottom: 15px; line-height: 1.6; color: var(--cl-text); }
.cl-review-author { font-weight: 700; color: var(--cl-heading); }

.cl-target-link {
        font-size: 14px;
        font-weight: 600;
        color: var(--cl-green) !important;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color 0.2s;
        margin-top: auto;
    }
    .cl-target-link:hover { color: #5da86e !important; text-decoration: underline; }


.cl-price-block {
    display: flex;
    background: #fff;
    border: 2px solid rgba(127, 185, 141, 0.3);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.3s;
    max-height: 550px; 
}
.cl-price-block:hover {
    border-color: var(--cl-green);
    box-shadow: 0 20px 50px rgba(127, 185, 141, 0.15);
}

.cl-price-img {
    width: 40%;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cl-price-img img {
    width: 100%; height: 100%; object-fit: contain; max-height: 500px; 
}

.cl-price-content {
    width: 60%; padding: 50px; display: flex; flex-direction: column; justify-content: center;
}
.cl-price-label { font-size: 14px; font-weight: 600; color: var(--cl-gray); text-transform: uppercase; margin-bottom: 5px; }
.cl-price-val { font-size: 48px; font-weight: 800; color: var(--cl-orange); margin: 0 0 20px 0; line-height: 1; }
.cl-price-desc { font-size: 15px; color: var(--cl-gray); margin-bottom: 30px; }
.cl-buy-title { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: var(--cl-heading); }
.cl-price-btns { display: flex; gap: 15px; flex-wrap: wrap; }


.cl-free-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.cl-free-left {
    background-color: var(--cl-green);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center; 
}
.cl-free-left h2 { font-size: 32px; font-weight: 800; margin: 0; line-height: 1.2; color: #fff !important; }

.cl-free-right {
    background-color: var(--cl-beige);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cl-form-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--cl-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cl-form-wrapper { width: 100%; max-width: 450px; }


.wpcf7-form-control {
    width: 100%; padding: 10px 15px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 8px;
    font-family: 'Montserrat', sans-serif; font-size: 14px; background: #fff; height: 44px; 
}
.wpcf7-submit {
    background: var(--cl-orange); color: #fff; font-weight: 700; border: none; cursor: pointer; transition: 0.3s;
    height: 48px; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.wpcf7-submit:hover { background: var(--cl-green); }


#hidden-video-block {
    display: none; margin-top: 40px; animation: fadeIn 1s forwards; width: 100%;
    background: #fff; padding: 20px; border-radius: 16px;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


@media (max-width: 1024px) {
    .cl-target-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-content-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .cl-hero-inner { flex-direction: column-reverse; text-align: center; padding-top: 40px; padding-bottom: 40px; }
    .cl-hero-content { max-width: 100%; text-align: center; }
    .cl-hero-btns { justify-content: center; }
    .cl-hero-title { font-size: 2.5rem; }
    
    .cl-price-block { flex-direction: column; max-height: none; }
    .cl-price-img { width: 100%; height: 300px; min-height: 0; max-height: none; }
    .cl-price-content { width: 100%; padding: 30px; }
    
    .cl-free-section { grid-template-columns: 1fr; }
    .cl-free-left { padding: 40px 20px; }
    .cl-free-right { padding: 40px 20px; }
    .cl-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .cl-wrapper { padding: 0; }
    .cl-container { padding: 0 15px; }
    
    .cl-target-grid { grid-template-columns: 1fr; gap: 15px; }
    .cl-target-card { padding: 20px; min-height: auto; display: block; }
    .cl-target-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
    
    .cl-btn { width: 100%; }
    
    .cl-hero-section { padding: 60px 20px; }
    .cl-hero-image-col { display: none; } 
    .cl-hero-inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .cl-hero-content { text-align: left; }
    .cl-hero-btns { justify-content: flex-start; }
    .cl-hero-title { font-size: 24px; margin-bottom: 15px; }
}