/* =====================================================
   ABOUT PREMIUM (COMPACT VERSION)
   Все стили изолированы префиксом mc-about-
===================================================== */

.mc-about-section{
    --mc-bg:#F8F7F4;
    --mc-white:#ffffff;
    --mc-text:#24344d;
    --mc-title:#14213d;
    --mc-green:#355A5A;
    --mc-green-dark:#284545;
    --mc-gold:#B99257;
    --mc-border:#E6E0D7;

    padding:100px 20px;
    background:linear-gradient(180deg,#faf8f4,#f3eee6);
    font-family:Inter,sans-serif;
}

.mc-about-section *{
    box-sizing:border-box;
}

/*====================================================*/

.mc-about-container{
    max-width:1320px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
}

/*====================================================*/

.mc-about-left,
.mc-about-right{
    display:flex;
    flex-direction:column;
}

/*====================================================*/

.mc-about-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:8px 18px;

    background:#fff;
    border-radius:40px;

    color:var(--mc-green);

    border:1px solid rgba(185,146,87,.25);

    box-shadow:0 6px 22px rgba(0,0,0,.06);

    font-size:15px;
    font-weight:600;

    width:max-content;

    margin-bottom:20px;
}

/*====================================================*/

.mc-about-title{
    font-family:"Playfair Display",serif;

    font-size:48px;
    line-height:1.1;
    font-weight:600;

    color:var(--mc-title);

    margin:0;
}

.mc-about-title span{
    display:block;
    color:var(--mc-green);
}

/*====================================================*/

.mc-about-divider{
    width:90px;
    height:4px;

    margin:22px 0;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        var(--mc-green),
        var(--mc-gold)
    );
}

/*====================================================*/

.mc-about-lead{
    font-size:19px;
    line-height:1.75;
    color:#46556e;

    margin:0 0 30px;
}

/*====================================================*/

.mc-about-card{
    background:rgba(255,255,255,.86);

    border:1px solid rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:28px;

    box-shadow:0 14px 35px rgba(0,0,0,.08);

    transition:.35s;

    margin-bottom:26px;
}

.mc-about-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/*====================================================*/

.mc-about-card h3{
    font-family:"Playfair Display",serif;
    font-size:30px;
    color:var(--mc-title);
    margin:0 0 22px;
}



/*====================================================
  ПРЕИМУЩЕСТВА
====================================================*/

.mc-about-benefits{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/*====================================================*/

.mc-about-item{
    display:flex;
    align-items:flex-start;
    gap:16px;

    font-size:18px;
    line-height:1.6;

    color:var(--mc-text);

    padding-bottom:14px;

    border-bottom:1px dashed #e8e8e8;

    transition:.3s;
}

.mc-about-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.mc-about-item:hover{
    transform:translateX(4px);
}

/*====================================================*/

.mc-about-icon{
    width:40px;
    height:40px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--mc-green),
        var(--mc-green-dark)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    flex-shrink:0;

    box-shadow:0 8px 18px rgba(53,90,90,.22);
}

/*====================================================
  ЦИТАТА
====================================================*/

.mc-about-quote{
    display:flex;
    align-items:center;
    gap:22px;

    padding:24px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        var(--mc-green),
        #274242
    );

    color:#fff;

    box-shadow:0 16px 40px rgba(0,0,0,.16);
}

.mc-about-quote h3{
    margin:0;

    font-family:"Playfair Display",serif;

    font-size:30px;
    line-height:1.45;

    font-weight:500;
}

.mc-about-quote-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    flex-shrink:0;
}

/*====================================================
  ПРАВАЯ КОЛОНКА
====================================================*/

.mc-about-profile{
    background:rgba(255,255,255,.86);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:32px;

    box-shadow:0 16px 40px rgba(0,0,0,.08);

    height:100%;
}

/*====================================================*/

.mc-about-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;

    margin-bottom:28px;
}

.mc-about-header h2{
    margin:0;

    font-family:"Playfair Display",serif;

    font-size:44px;
    line-height:1.1;

    color:var(--mc-title);
}

.mc-about-header h4{
    margin-top:14px;

    font-size:22px;
    line-height:1.5;

    font-weight:600;

    color:var(--mc-green);
}




/*====================================================*/
/* ФОТО */

.mc-about-photo{
    width:220px;
    height:290px;

    flex-shrink:0;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 16px 36px rgba(0,0,0,.16);
}

.mc-about-photo img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .5s ease;
}

.mc-about-photo:hover img{
    transform:scale(1.05);
}

/*====================================================*/
/* КОНТЕНТ */

.mc-about-text{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/*====================================================*/
/* ИНФОРМАЦИОННЫЕ БЛОКИ */

.mc-about-block{
    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:18px 20px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-radius:18px;

    transition:all .35s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.mc-about-block:hover{
    transform:translateX(6px);

    box-shadow:0 16px 32px rgba(0,0,0,.08);

    border-color:rgba(185,146,87,.25);
}

/*====================================================*/
/* ИКОНКИ */

.mc-about-circle{
    width:52px;
    height:52px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--mc-green),
        var(--mc-green-dark)
    );

    color:#fff;

    font-size:22px;

    box-shadow:0 10px 22px rgba(53,90,90,.22);
}

/*====================================================*/

.mc-about-block h5{
    margin:0 0 8px;

    color:var(--mc-title);

    font-size:20px;
    font-weight:700;

    line-height:1.35;
}

/*====================================================*/

.mc-about-block p{
    margin:0;

    color:#4a5b74;

    font-size:16px;

    line-height:1.7;
}

/*====================================================*/

.mc-about-counter{
    color:var(--mc-gold);

    font-size:21px;

    font-weight:700;
}




/*====================================================*/
/* =============== АДАПТИВНОСТЬ =======================*/
/*====================================================*/

@media (max-width:1200px){

    .mc-about-section{
        padding:55px 18px;
    }

    .mc-about-container{
        grid-template-columns:1fr;
        gap:28px;
    }

    .mc-about-header{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
    }

    .mc-about-photo{
        width:100%;
        max-width:320px;
        height:400px;
    }

    .mc-about-title{
        font-size:40px;
    }

    .mc-about-lead{
        font-size:18px;
    }

    .mc-about-header h2{
        font-size:38px;
    }

    .mc-about-header h4{
        font-size:20px;
    }

    .mc-about-card{
        padding:24px;
    }

    .mc-about-profile{
        padding:28px;
    }

    .mc-about-block{
        padding:16px 18px;
    }

    .mc-about-block h5{
        font-size:19px;
    }

    .mc-about-block p{
        font-size:15px;
    }

    .mc-about-counter{
        font-size:20px;
    }

}


/*====================================================*/

@media (max-width:768px){

    .mc-about-section{
        padding:45px 15px;
    }

    .mc-about-container{
        gap:22px;
    }

    .mc-about-badge{
        font-size:14px;
        padding:7px 16px;
    }

    .mc-about-title{
        font-size:32px;
        line-height:1.2;
    }

    .mc-about-divider{
        width:70px;
        margin:18px 0;
    }

    .mc-about-lead{
        font-size:16px;
        line-height:1.7;
        margin-bottom:24px;
    }

    .mc-about-card{
        padding:20px;
        border-radius:18px;
    }

    .mc-about-card h3{
        font-size:24px;
        margin-bottom:18px;
    }

    .mc-about-item{
        font-size:16px;
        gap:12px;
    }

    .mc-about-icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .mc-about-profile{
        padding:22px;
        border-radius:20px;
    }

    .mc-about-header{
        gap:18px;
        margin-bottom:22px;
    }

    .mc-about-header h2{
        font-size:30px;
    }

    .mc-about-header h4{
        font-size:18px;
        margin-top:10px;
    }

    .mc-about-photo{
        max-width:260px;
        height:340px;
        border-radius:18px;
    }

    .mc-about-text{
        gap:14px;
    }

    .mc-about-block{
        gap:14px;
        padding:15px;
        border-radius:16px;
    }

    .mc-about-circle{
        width:46px;
        height:46px;
        font-size:20px;
    }

    .mc-about-block h5{
        font-size:18px;
    }

    .mc-about-block p{
        font-size:15px;
        line-height:1.6;
    }

    .mc-about-counter{
        font-size:18px;
    }

    .mc-about-quote{
        flex-direction:column;
        text-align:center;
        gap:16px;
        padding:20px;
    }

    .mc-about-quote h3{
        font-size:24px;
        line-height:1.5;
    }

    .mc-about-quote-icon{
        width:62px;
        height:62px;
        font-size:28px;
    }

}


/*====================================================*/

@media (max-width:480px){

    .mc-about-title{
        font-size:28px;
    }

    .mc-about-header h2{
        font-size:26px;
    }

    .mc-about-header h4{
        font-size:17px;
    }

    .mc-about-card,
    .mc-about-profile{
        padding:18px;
    }

    .mc-about-photo{
        max-width:220px;
        height:290px;
    }

    .mc-about-block{
        flex-direction:column;
        align-items:flex-start;
    }

    .mc-about-circle{
        margin-bottom:4px;
    }

}