/* ---------- RESET & БАЗОВЫЕ СТИЛИ ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gothampro_medium.ttf') format('truetype'); 
    font-weight: 400;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Gotham Pro reg';
    src: url('../fonts/gothampro.ttf') format('truetype'); 
    font-weight: 400;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gothampro_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gothampro_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gotham Pro', 'Gotham', 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #fff;
    color: #262626;
    font-weight: 300; 
    line-height: 1.4;
}
.pstyle{
    font-size: 18px;line-height: 28px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}
@media (min-width: 1400px) {
    .container {
        padding: 0;
    }
}

.header {
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 8px;
    margin-bottom: 10px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
        max-width: 1200px;
        width: 100%;
}

.logo {
    flex-shrink: 0;
}
.logo img {
    width: 157px;
    display: block;
    object-fit: contain;
    padding-bottom: 16px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    /* font-family: 'Arial'; */
    font-family: 'Gotham Pro', 'Gotham', sans-serif;
    font-weight: 300; 
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: #262626;
    transition: color 0.2s;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}
.nav-menu li a:hover {
    color: #53C88E;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.social-icons a:hover {
    opacity: 0.7;
}
.social-icons img {
    width: 30px;
    height: 30px;
    display: block;
}

.btn-call {
    background: #fff;
    border: 1px solid #53C88E;
    border-radius: 10px;
    padding: 12px 31px;
    /* font-family: 'Arial'; */
    font-family: 'Gotham Pro', 'Gotham', sans-serif;
    font-weight: 300; 
    font-size: 14px;
    line-height: 100%;
    color: #262626;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.btn-call:hover {
    background: #53C88E;
    color: #fff;
    border-color: #53C88E;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}
.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #53C88E;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 30px 20px 40px;
    border-top: 1px solid #eee;
}
.mobile-menu.active {
    left: 0;
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}
.mobile-nav-list li a {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #262626;
}
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.mobile-social {
    display: flex;
    gap: 20px;
}
.mobile-social a img {
    width: 24px;
    height: 24px;
}
.mobile-btn-call {
    background: #fff;
    border: 1px solid #53C88E;
    border-radius: 40px;
    padding: 12px 28px;
    font-size: 16px;
}

.btn-primary {
    background-color: #53C88E;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background-color: #3ca372;
}
strong {
    font-weight: 400;
    color: #53C88E; 
}
a {
    color: #53C88E;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.section-title {
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 40px;
    color: #262626;
}
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 calc(33.33% - 30px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}
.card h3 {
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 22px;
}
.card p {
    color: #4a4a4a;
    line-height: 1.4;
}
.stat-link {
    font-weight: 400;
}

.reports {
    background-color: #fff;
    padding: 60px 0;
}
.reports-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}
.reports-list li a {
    font-weight: 400;
    background: #F3F3F3;
    padding: 8px 20px;
    border-radius: 40px;
    display: inline-block;
}

@media (max-width: 991px) {
    .nav-menu {
        gap: 18px;
    }
}

@media (max-width: 1120px) {
    .nav-menu, .header-actions .social-icons, .header-actions .btn-call {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header-actions {
        gap: 12px;
    }
    .cards-grid {
        flex-direction: column;
    }
    .card {
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-title {
        font-size: 26px;
    }
    .btn-primary {
        padding: 12px 24px;
    }
}

@media (max-width: 390px) {
    .card {
        padding: 20px;
    }
}

.footer-demo {
    background: #F3F3F3;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
    color: #262626;
    font-size: 14px;
}

button {
    background: none;
    border: none;
}




/* HERO СЕКЦИЯ */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 20px 0 100px 0;
    background-color: #F4F4F4;
    border-radius: 40px;
    position: relative;
    min-height: 580px;
    padding: 89px 60px 60px 60px;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-family: 'Gotham Pro', 'Gotham', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    color: #262626;
    margin-bottom: 41px;
}

.hero-title strong {
    color: #53C88E;
    font-weight: 700;
}

.hero-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Gotham Pro', 'Gotham', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #262626;
}

.hero-list-icon {
    width: 41px;
    height: 41px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-list-icon img {
    width: 26px;
    height: 22px;
    display: block;
}

.hero-btn {
    display: inline-block;
    height: 65px;
    align-content: center;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 16px 36px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 808px;
    z-index: 10;
}

.hero-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-surp-image {
    position: fixed;
    bottom: 20px;
    right: 40px;
    width: 180px;
    height: 220px;
    object-fit: contain;
    transform: rotate(10deg);
    z-index: 3;
}

@media (max-width: 1660px) {
    .hero-surp-image {
        bottom: 3px;
        right: 16px;

    }
}

@media (max-width: 1400px) {
    .hero-container {
        margin: 20px 30px 40px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 1200px) {
    .hero-image {
        max-width: 680px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        padding: 40px 30px;
        
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        max-width: 550px;
    }
    
    .hero-surp-image {
        width: 140px;
        height: 180px;
        bottom: -15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 30px 20px;
        min-height: auto;
        margin: 15px 20px 30px;
        width: calc(100% - 40px);
    }
    
    .hero-wrapper {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero-list {
        gap: 16px;
        margin-bottom: 32px;
        margin: 28px auto;
        justify-self: center;
    }
    
    .hero-list li {
        font-size: 15px;
        gap: 10px;
    }
    
    .hero-list-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-list-icon img {
        width: 14px;
        height: 14px;
    }
    
    .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
        margin: 0 auto;
        display: flex;
        width: fit-content;
        align-items: center;
    }
    
    .hero-image {
        position: relative;
        max-width: 100%;
        margin-top: -25px;
        bottom: -30px;
    }
    
    .hero-surp-image {
        width: 120px;
        height: 150px;
        bottom: -10px;
        right: -5px;
    }
}

@media (max-width: 500px) {
    .hero-container {
        padding: 24px 16px;
        margin: 15px 16px 30px;
        width: calc(100% - 32px);
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-list li {
        font-size: 14px;
    }
    
    .hero-surp-image {
        width: 100px;
        height: 120px;
        bottom: -8px;
        right: -5px;
    }
}

@media (max-width: 390px) {
    .hero-surp-image {
        width: 80px;
        height: 100px;
        bottom: -5px;
        right: -5px;
    }
}



/* СЕКЦИЯ ОТЗЫВОВ */
.reviews-section {
    width: 100%;
    background-color: #F4F4F4;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

.reviews-content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.reviews-info {
    flex: 1;
    max-width: 50%;
        position: relative;
}

.reviews-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 1.2;
    color: #262626;
    margin-bottom: 30px;
}

.reviews-title strong {
    color: #53C88E;
}

.reviews-rating-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.reviews-rating-number {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 35px;
    line-height: 101%;
    color: #53C88E;
}

.reviews-stars-list {
    display: flex;
    gap: 8px;
}

.reviews-stars-list img {
    width: 32px;
    height: 32px;
}

.reviews-platforms-list {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
}

.reviews-platforms-list img {
    height: 30px;
    width: auto;
}

.reviews-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    bottom: 28px;
    position: absolute;
}

.reviews-notice img {
    width: 12px;
    height: 67px;
}

.reviews-notice p {
font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #262626;
}

.reviews-slider-wrapper {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.reviews-green-circle {
    background-color: #53C88E;
    border-radius: 50%;
    width: 510px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 
}

.reviews-phone {
    position: relative;
    width: 255px;
    height: 518px;
    background-image: url('pic/image1.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
}

.reviews-phone-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background: #FFFFFF;
    z-index: 1;
}

.reviews-slider-container {
    position: relative;
    width: 224px;
    margin-top: 60px;
    overflow: hidden;
    z-index: 2;
}

.reviews-slider-list {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.reviews-slider-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-slider-item img {
    width: 224px;
    height: auto;   
    object-fit: contain;
}

.reviews-slider-buttons {
    position: absolute;
    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}

.reviews-slider-prev,
.reviews-slider-next {
    width: 40px;
    height: 40px;
    background-color:#E8E8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #262626;
    transition: all 0.2s;

}

.reviews-slider-prev:hover,
.reviews-slider-next:hover {
    background-color: #53C88E;
    color: #fff;
}

.reviews-all-link {
    display: inline-block;
    background-color: #53C88E;
    border-radius: 9px;
    padding: 20px 28px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.2s;
    z-index: 2;
    position: absolute;
    bottom: 45px;
        width: calc(100% - 36px);
}

.reviews-all-link:hover {
    background-color: #3ca372;
    text-decoration: none;
}

@media (max-width: 992px) {
    .reviews-content {
        flex-direction: column;
    }
    
    .reviews-info,
    .reviews-slider-wrapper {
        max-width: 100%;
    }
    
    .reviews-title {
        font-size: 36px;
        /* text-align: center; */
    }
    
    .reviews-rating-box {
        /* justify-content: center; */
    }
    
    .reviews-platforms-list {
        /* justify-content: center; */
    }
    
    .reviews-notice {
        justify-content: center;

        align-items: center;
    }
    
    .reviews-green-circle {
        margin: 0 20px 0 auto;
    }
    .reviews-all-link{
        font-size: 12px;
    }
    .reviews-notice p {

    }
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 40px 20px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .reviews-phone {
        width: 220px;
        height: 447px;
    }
    .reviews-platforms-list img {
        height: 20px;
    }
}



/* СЕКЦИЯ ПРИЕМКА КВАРТИРЫ */
.info-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

.info-container {
    max-width: 1200px;
    width: 100%;
    background-color: #F4F4F4;
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.info-grid {
    display: flex;
    gap: 90px;
}

.info-left {
    flex: 1;
    max-width: 33.333%;
    z-index: 3;
}

.info-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
}

.info-right {
    flex: 2;
    z-index: 3;
}

.info-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #262626;
    margin-bottom: 20px;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-q1 {
    position: absolute;
    width: 72px;
    height: 85px;
    top: 109px;
    left: 325px;
    z-index: 0;
    pointer-events: none;
}

.info-q2 {
position: absolute;
    width: 106px;
    height: 128px;
    top: 250.62px;
    right: 48px;
    /* transform: rotate(0deg); */
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .info-q2 {
        left: auto;
        right: 50px;
    }
    .info-section {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 40px 30px;
    }
}



@media (max-width: 992px) {
    .info-container {
        padding: 40px 30px;
    }
    
    .info-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-left {
        max-width: 100%;
    }
    
    .info-title {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }
    
    .info-text {
        font-size: 15px;

    }
    
    .info-q1 {
        width: 55px;
        height: 65px;
        top: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .info-q2 {
        width: 80px;
        height: 103px;
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: rotate(15deg);
    }
    .info-right {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .info-container {
        padding: 30px 20px;
    }
    
    .info-title {
        font-size: 30px;
        line-height: 38px;
    }
    
    .info-text {
        font-size: 14px;
        text-align: left;
    }
    
    .info-q1 {
        width: 45px;
        height: 53px;
    }
    
    .info-q2 {
        width: 65px;
        height: 84px;
    }
    .info-right {
        padding: 0 40px;
    }

}

@media (max-width: 480px) {
    .info-section {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 40px 20px;
    }
    .info-container {
        padding: 24px 16px;
    }
    
    .info-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .info-text {
        font-size: 13px;
    }
    
    .info-q1 {
        width: 36px;
        height: 42px;
        bottom: 10px;
        left: 10px;
    }
    
    .info-q2 {
        width: 53px;
        height: 68px;
        bottom: 10px;
        right: 10px;
    }
    .info-right {
        padding: 0 20px;
    }
}



/* СЕКЦИЯ РИСКИ */
.risks-section {
    width: 100%;
    padding-bottom: 60px;
}

.risks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.risks-header {
    text-align: center;
    margin-bottom: 50px;
}

.risks-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    margin-bottom: 25px;
}

.risks-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    max-width: 820px;
    margin: 0 auto;
}

.risks-grid {
    max-width: 727px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.risk-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #F3F3F3;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.risk-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 101%;
    color: #262626;
    margin-bottom: 15px;
}

.risk-description {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    color: #262626;
}

@media (max-width: 1200px) {
    .risk-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 992px) {
    .risks-container {
        padding: 0 30px;
    }
    
    .risks-subtitle {
        font-size: 36px;
        line-height: 44px;
    }
    
    .risks-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .risks-section {
        padding-bottom: 40px;
    }
    
    .risks-container {
        padding: 0 20px;
    }
    
    .risks-subtitle {
        font-size: 28px;
        line-height: 36px;
    }
    
    .risks-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .risk-card {
        flex: 1 1 100%;
    }
    
    .risk-icon {
        width: 60px;
        height: 60px;
    }
    
    .risk-title {
        font-size: 20px;
    }
    .risks-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .risks-container {
        padding: 0 16px;
    }
    
    .risks-subtitle {
        font-size: 24px;
        line-height: 32px;
    }
    
    .risks-text {
        font-size: 13px;
        line-height: 20px;
    }
    
    .risk-card {
        padding: 20px 15px;
    }
    
    .risk-icon {
        width: 50px;
        height: 50px;
    }
    
    .risk-title {
        font-size: 18px;
    }
    
    .risk-description {
        font-size: 11px;
        line-height: 18px;
    }

}



/* СЕКЦИЯ СЛАЙДЕР */
.slider-section {
    width: 100%;
    padding: 0 0 60px 0;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    /* max-width: 1600px; */
    margin: 0 auto;
    /* overflow-x: auto;
    overflow-y: hidden; */
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-track {
    /* display: flex; */
    /* gap: 20px; */
    /* width: fit-content; */
}

.slider-slide {
    flex-shrink: 0;
    width: 320px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.slider-slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .slider-slide {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .slider-slide {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0;
    }
    
    .slider-slide {
        width: 220px;
    }
    
    .slider-track {
        /* gap: 15px; */
    }
}

@media (max-width: 480px) {
    .slider-slide {
        width: 180px;
    }
    
    .slider-track {
        /* gap: 12px; */
    }
}


/* СЕКЦИЯ ПОЧЕМУ ВЫБИРАЮТ НАС */
.why-section {
    width: 100%;
    background-color: #F4F4F4;
    margin: 60px 0;
}

.why-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px;
}

.why-content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.why-left {
    flex: 1;
    max-width: 50%;
}

.why-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 101%;
    color: #262626;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 41px;
    height: 30px;
    flex-shrink: 0;
    top: -4px;
    position: relative;
}

.why-item-content {
    flex: 1;
}

.why-item-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 101%;
    color: #262626;
    margin-bottom: 8px;
}

.why-item-text {
font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: relative;
    top: 9px;
    left: -56px;
    line-height: 25px;
    color: #262626;
}

.why-btn {
    display: inline-block;
    background-color: #53C88E;
    border-radius: 9px;
    padding: 20px 80px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.why-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

.why-right {
    flex: 1;
    max-width: 50%;
}

.why-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    min-height: 550px;
}

.why-image-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    /* width: calc(100% - 40px); */
    background: rgba(244, 244, 244, 0.45);
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    border-radius: 15px;
    padding: 20px 25px;
    text-align: center;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    white-space: nowrap;
}

/* Планшеты */
@media (max-width: 992px) {
    .why-section {
        margin: 20px 0;
    }
    .why-container {
        padding: 50px 30px;
    }
    
    .why-content {
        flex-direction: column;
    }
    
    .why-left,
    .why-right {
        max-width: 100%;
    }
    
    .why-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .why-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    

    
    .why-icon {
        margin: 0 auto 10px;
    }
    
    .why-item-title {
        text-align: left;
    }
    
    .why-item-text {
        font-size: 14px;
        text-align: left;
    }
    
    .why-btn {
        display: block;
        width: fit-content;
        margin: 0 auto 40px;
        text-align: center;
    }
    
    .why-image-wrapper {
        min-height: 400px;
    }
    
    .why-image {
        min-height: 400px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .why-container {
        padding: 40px 20px;
    }
    
    .why-title {
        font-size: 28px;
    }
    
    .why-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .why-icon {
        width: 28px;
        height: 28px;
        /* margin: 0 12px 0 0; */
    }
    
    .why-item-title {
        font-size: 18px;
        text-align: left;
    }
    
    .why-item-text {
        font-size: 14px;
        line-height: 22px;
        text-align: left;
        margin-left: 10px;
    }
    
    .why-btn {
        padding: 14px 28px;
        font-size: 14px;
        margin: 0 auto 30px;
    }
    
    .why-image-wrapper {
        min-height: 320px;
    }
    
    .why-image {
        min-height: 320px;
    }
    
    .why-image-text {
        font-size: 14px;
        line-height: 22px;
        padding: 15px 20px;
        width: calc(100% - 30px);
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 30px 16px;
    }
    
    .why-title {
        font-size: 24px;
    }
    
    .why-icon {
        width: 24px;
        height: 24px;
    }
    
    .why-item-title {
        font-size: 16px;
    }
    
    .why-item-text {
        font-size: 13px;
        line-height: 20px;
    }
    
    .why-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .why-image-wrapper {
        min-height: 260px;
    }
    
    .why-image {
        min-height: 260px;
    }
    
    .why-image-text {
        font-size: 12px;
        line-height: 18px;
        padding: 12px 16px;
        width: calc(100% - 20px);
        bottom: 15px;
    }
}



/* СЕКЦИЯ ПОШАГОВЫЙ ПРОЦЕСС */
.process-section {
    width: 100%;
    padding: 60px 0;
}

.process-container {
max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.process-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.process-card-bg {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-bg {
    width: 70%;
    height: auto;
    display: block;
}

.process-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.process-icon {

    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.process-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    margin: 0;
    flex: 1;
    white-space: nowrap;
}

.process-text strong {
    color: #53C88E;
    font-weight: 400;
}

/* Десктоп: 1 и 3 сверху, 2 снизу */
@media (min-width: 1200px) {
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }
    
    .process-card-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .process-card-2 {
        grid-column: 2 / 4;
        grid-row: 2;
        margin-top: -100px;
    }
    
    .process-card-3 {
        grid-column: 3 / 5;
        grid-row: 1;
    }
}

/* Планшеты: 1 и 3 слева, 2 справа */
@media (min-width: 768px) and (max-width: 1199px) {
    .process-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .process-card
 {
    padding-top: 90px;
 }
    .process-card-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .process-card-2 {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
    
    .process-card-3 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .process-content {
        gap: 15px;
    }
    
    .process-icon {

        height: 100px;
    }
    
    .process-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Мобилки: один ряд */
@media (max-width: 767px) {
    .process-container {
        padding: 0 20px;
    }
    
    .process-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .process-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .process-card {
        min-width: auto;
        width: 100%;
        max-width: 350px;
    }
    
    .process-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        width: 80%;
    }
    
    .process-icon {
        width: 55px;
        height: 55px;
    }
    
    .process-text {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .process-container {
        padding: 0 16px;
    }
    
    .process-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .process-icon {
        width: 45px;
        height: 45px;
    }
    
    .process-text {
        font-size: 13px;
        line-height: 20px;
    }
}


/* СЕКЦИЯ ЧТО МЫ ПРОВЕРЯЕМ */
.check-section {
    width: 100%;
    padding: 60px 0;
}

.check-container {
    max-width: 1200px;
    margin: 0 auto;
}

.check-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.check-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.check-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #F3F3F3;
    padding: 40px 30px 80px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}

.check-card-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    color: #262626;
    text-align: left;
}

.check-btn {
    position: absolute;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background-color: #53C88E;
    border: 1px solid #53C88E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    right: 30px;
}

.check-btn:hover {
    background-color: #3ca372;
    border-color: #3ca372;
}

.check-btn:hover svg path {
    stroke: #fff;
}

.check-btn svg {
    width: 24px;
    height: 24px;
}

/* Десктоп: 3 блока в линию */
@media (min-width: 992px) {
    .check-grid {
        flex-wrap: nowrap;
    }
}

/* Планшеты: 2 блока сверху, 3 снизу по центру */
@media (min-width: 768px) and (max-width: 991px) {
    .check-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .check-card:nth-child(3) {
        grid-column: 1 / 3;
        justify-self: center;
        max-width: 50%;
        width: 100%;
    }
}

/* Мобилки: 1 колонка */
@media (max-width: 767px) {
    .check-container {
        padding: 0 20px;
    }
    
    .check-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .check-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .check-card {
        padding: 30px 20px 70px 20px;
    }
    
    .check-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .check-card-title {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 30px;
    }
    
    /* .check-btn {
        width: 42px;
        height: 42px;
        bottom: 20px;
        left: 20px;
    } */
    
    .check-btn svg {
        width: 20px;
        height: 20px;
    }
    .check-section{
        padding: 20px 0 0 0;
    }
}

@media (max-width: 480px) {
    .check-container {
        padding: 0 16px;
    }
    
    .check-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .check-card {
        padding: 25px 15px 60px 15px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .check-card-title {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 25px;
    }
    
    /* .check-btn {
        width: 38px;
        height: 38px;
        bottom: 15px;
        left: 15px;
    } */
    
    .check-btn svg {
        width: 18px;
        height: 18px;
    }

}


/* СЕКЦИЯ АККОРДЕОН */
.accordion-section {
    width: 100%;
    padding: 60px 0;
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;

}

.accordion-grid {
    display: flex;
    gap: 22px;
}

.accordion-buttons {
    flex-shrink: 0;
    width: 488px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}

.accordion-item {
    width: 100%;
}

.accordion-btn {
    width: 100%;
    padding: 18px 25px;
    background: transparent;
    border: 1px solid #53C88E;
    border-radius: 12px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #262626;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-btn:hover {
    background: rgba(83, 200, 142, 0.1);
}

.accordion-btn.active {
    background: #53C88E;
    color: #fff;
    border-color: #53C88E;
    font-weight: 700;
}

.accordion-panel {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 15px;
    border: 1px solid #53C88E;
}

.accordion-panel.active {
    display: block;
}

.accordion-content {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 24px 24px 0 24px;
    border: 1px solid #53C88E;
}

.desktop-content {
    display: block;
}

.accordion-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.accordion-content-card-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    color: #262626;
    margin-bottom: 22px;
    text-align: left;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    margin-bottom: 15px;
}

.list-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Планшеты и мобилки */
@media (max-width: 992px) {
    .accordion-container {
        padding: 0 30px;
    }
    
    .accordion-grid {
        flex-direction: column;
        gap: 0;
    }
    
    .accordion-buttons {
        width: 100%;
        gap: 10px;
    }
    
    .accordion-content.desktop-content {
        display: none;
    }
    
    .accordion-panel {
        margin-top: 10px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-slider-container {
        width: 194px;
    }
    .reviews-slider-item img {
        width: 192px;
    }
    .accordion-section {
        padding: 40px 0;
    }
    
    .accordion-container {
        padding: 0 20px;
    }
    
    .accordion-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .accordion-panel {
        padding: 20px;
        margin-top: 8px;
    }
    
    .accordion-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .accordion-content-card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .accordion-list li {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    
    .list-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .accordion-container {
        padding: 0 16px;
    }
    
    .accordion-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .accordion-panel {
        padding: 16px;
    }
    
    .accordion-icon {
        width: 45px;
        height: 45px;
    }
    
    .accordion-content-card-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .accordion-list li {
        font-size: 12px;
        line-height: 18px;
    }
}


/* СЕКЦИЯ ПОЛНЫЙ СПЕКТР УСЛУГ */
.services-section {
    width: 100%;
    padding: 60px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;

}

.services-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 25px;
}

.services-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
    /* max-width: 900px; */
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #F3F3F3;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}

.services-card-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    color: #262626;
    margin-bottom: 20px;
}

.services-card-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
}

/* Планшеты */
@media (max-width: 992px) {
    .services-container {
        padding: 0 30px;
    }
    
    .services-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .services-subtitle {
        font-size: 15px;
        line-height: 23px;
        padding: 0 20px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .services-card {
        justify-self: center;
        max-width: 50%;
        width: 100%;
    }
    
    .services-icon {
        width: 70px;
        height: 70px;
    }
    
    .services-card-title {
        font-size: 22px;
    }
    
    .services-card-text {
        font-size: 15px;
        line-height: 23px;
    }
}

/* Мобилки */
@media (max-width: 782px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .services-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 35px;
        padding: 0;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .services-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .services-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .services-card-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 16px;
    }
    
    .services-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .services-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    
    .services-card {
        padding: 25px 15px;
    }
    
    .services-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .services-card-title {
        font-size: 18px;
    }
    
    .services-card-text {
        font-size: 13px;
        line-height: 20px;
    }
}


/* СЕКЦИЯ АКТ ОСМОТРА */
.act-section {
    width: 100%;
    padding: 60px 0;
}

.act-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.act-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 25px;
}

.act-title strong {
    color: #53C88E;
    font-weight: 400;
}

.act-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.act-compare {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.act-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
}

.act-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 20px;
}

.act-card-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
}

.act-button-wrapper {
    display: flex;
    justify-content: center;
}

.act-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 16px 36px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.act-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты */
@media (max-width: 992px) {
    .act-container {
        padding: 0 30px;
    }
    
    .act-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .act-subtitle {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .act-compare {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .act-card {
        min-width: 240px;
    }
    
    .act-card-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .act-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .act-section {
        padding: 40px 0;
    }
    
    .act-container {
        padding: 0 20px;
    }
    
    .act-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .act-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 35px;
        padding: 0;
    }
    
    .act-compare {

        gap: 10px;
        align-items: center;
        margin-bottom: 35px;
    }
    
    .act-card {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }
    
    .act-icon {
        max-width: 100%;
    }
    
    .act-card-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .act-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .act-container {
        padding: 0 16px;
    }
    
    .act-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .act-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    
    .act-card-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .act-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* СЕКЦИЯ ЦЕНЫ И УСЛУГИ */
.prices-section {
    width: 100%;
    padding: 120px 0;
}

.prices-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.prices-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.prices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    padding: 27px 40px;
}

.price-card-green {
    background-color: #53C88E;
    border: 2px solid #53C88E;
}

.price-card-white {
    background-color: transparent;
    border: 2px solid #53C88E;
}

.price-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    gap: 30px;
}

.price-amount {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 101%;
    color: #fff;
}

.price-desc {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    text-align: left;
}

.price-min {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    color: #fff;
}

.price-discount-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.price-discount-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 101%;
    color: #53C88E;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.price-discount-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.price-discount-value {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 74px;
    line-height: 101%;
    color: #53C88E;
}

.price-discount-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
}

.prices-button-wrapper {
    display: flex;
    justify-content: center;
}

.prices-btn {
    display: inline-block;
    background-color: #53C88E;
    border-radius: 9px;
    padding: 16px 120px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.prices-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты */
@media (max-width: 992px) {
    .prices-container {
        padding: 0 30px;
    }
    
    .prices-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .price-card {
        padding: 30px 25px;
    }
    
    .price-amount {
        font-size: 50px;
        white-space: nowrap;
    }
    
    .price-discount-value {
        font-size: 60px;
    }
    
    .price-discount-label {
        font-size: 14px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .prices-section {
        padding: 40px 0;
    }
    
    .prices-container {
        padding: 0 20px;
    }
    
    .prices-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .prices-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-card {
        min-width: auto;
        /* padding: 40px 60px; */
    }
    
    .price-row {
        /* flex-direction: column; */
        /* text-align: center; */
    }
    
    .price-desc {
                font-size: 14px;
        line-height: 20px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .price-min {
        /* text-align: center; */
    }
    
    .price-discount-wrapper {
        /* flex-direction: row;
        justify-content: center; */
    }
    
    .price-discount-label {
        /* writing-mode: horizontal-tb;
        transform: none; */
    }
    
    .price-discount-group {
        /* flex-direction: column;
        text-align: center; */
    }
    
    .price-discount-value {
        font-size: 52px;
    }
    
    .prices-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prices-container {
        padding: 0 16px;
    }
    
    .prices-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-discount-value {
        font-size: 44px;
    }
    
    .price-desc,
    .price-min,
    .price-discount-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .prices-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}



/* СЕКЦИЯ КАЛЬКУЛЯТОР */
.calculator-section {
    width: 100%;
    padding: 60px 0;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.calculator-title strong {
    color: #53C88E;
    font-weight: 700;
}

.calculator-block {
    background-color: #F4F4F4;
    border-radius: 30px;
    border: 1px solid #F3F3F3;
    padding: 30px 30px 56px;
}

.calculator-header {
    margin-bottom: 30px;
}

.calculator-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 101%;
    color: #53C88E;
}

.calculator-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.calculator-field {
    /* flex: 1;
    min-width: 180px; */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.field-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.field-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #262626;
    margin-bottom: 10px;
    text-wrap-mode: nowrap;
}

.field-input,
.field-select {
    background-color: #F9F9F9;
    border: 1px solid #F4F4F4;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Gotham Pro', sans-serif;
    font-size: 16px;
    color: #262626;
    outline: none;
}

.field-input:focus,
.field-select:focus {
    border-color: #53C88E;
}

.field-input-small {
    width: 80px;
}

.field-input-medium {
    width: 100%;
    max-width: 200px;
}

.field-select {
    /* width: 87px; */
    cursor: pointer;
}

/* Дополнительные услуги */
.calculator-additional {
    margin-bottom: 30px;
}

.additional-link {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 17.7px;
    line-height: 101%;
    color: #53C88E;
    text-decoration: underline;
    cursor: pointer;
}

/* Блок дополнительных услуг */
.additional-services {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-bottom: 30px;
}

.additional-services.open {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.services-container {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    /* border-bottom: 1px solid #eee; */
    cursor: pointer;
    transition: background 0.2s;
}

.service-item:hover {
    background: #f9f9f9;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.service-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #53C88E;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}

.service-checkbox.checked {
    background: #53C88E;
}

.service-checkbox.checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
}

.service-price {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #53C88E;
    white-space: nowrap;
}

.calculator-total {
    width: 377px;
    background-color: #fff;
    border-radius: 10px;
    padding: 44px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.total-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 101%;
    color: #262626;
}

.total-price {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 101%;
    letter-spacing: 1px;
    color: #53C88E;
}

.calculator-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 101%;
    color: #262626;
    margin-bottom: 30px;
    opacity: 0.5;
    max-width: 400px;
}

.calculator-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-field {
    flex: 1;
    min-width: 180px;
}

.form-field-full {
    flex: 2;
}

.form-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 101%;
    color: #939393;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    background-color: #FFF;
    border: 1px solid #F4F4F4;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Gotham Pro', sans-serif;
    font-size: 16px;
    outline: none;
    height: 58px;
    font-weight: 300;
}

.form-input:focus {
    border-color: #53C88E;
}

.form-label-link {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.date-link {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 101%;
    color: #53C88E;
    text-decoration: underline;
    cursor: pointer;
}

.selected-date-display {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #53C88E;
    background: #e8f5ed;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

.form-submit {
    width: 100%;
    background-color: #53C88E;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 15px;
}

.form-submit:hover {
    background-color: #3ca372;
}

.form-agreement {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 101%;
    color: #262626;
}

.form-agreement a {
    color: #FF8562;
    text-decoration: underline;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.modal-title {
    font-family: 'Gotham Pro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #262626;
}

.date-picker-input, .time-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
}

.modal-submit {
    width: 100%;
    background-color: #53C88E;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.modal-submit:hover {
    background-color: #3ca372;
}

.success-message, .error-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

.success-message {
    background-color: #53C88E;
}

.error-message {
    background-color: #ff4444;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-title { font-size: 28px; line-height: 36px; }
    .calculator-block { padding: 20px; }
    .calculator-label { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .modal-content { margin: 20% auto; width: 95%; }
    .calculator-total { width: 100%; max-width: 377px; }
}


@media (max-width: 1400px) {
    .field-input-small {
        width: 100%;
    }



    .field-select {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .calculator-field {
        flex-direction: column;
        align-items: flex-start;
    }
}











/* СЕКЦИЯ ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ */
.extra-services-section {
    width: 100%;
    padding: 60px 0;
}

.extra-services-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.extra-services-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 25px;
}

.extra-services-title strong {
    color: #53C88E;
    font-weight: 700;
}

.extra-services-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.extra-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #53C88E;
    padding: 25px 20px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.extra-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.extra-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.extra-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #262626;
}

/* Планшеты (3 колонки) */
@media (max-width: 992px) {
    .extra-services-container {
        padding: 0 30px;
    }
    
    .extra-services-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .extra-services-subtitle {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 40px;
    }
    
    .extra-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

        .extra-card:last-child:nth-child(10) {
        grid-column: 2 / 3;
    }
    
    .extra-card {
        padding: 20px 15px;
    }
    
    .extra-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .extra-text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Мобилки (2 колонки) */
@media (max-width: 768px) {
    .extra-services-section {
        padding: 40px 0;
    }
    
    .extra-services-container {
        padding: 0 20px;
    }
    
    .extra-services-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .extra-services-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    
    .extra-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .extra-card {
        padding: 18px 12px;
    }
    
    .extra-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .extra-text {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .extra-services-container {
        padding: 0 16px;
    }
    
    .extra-services-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .extra-services-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    
    .extra-services-grid {
        gap: 10px;
    }
    
    .extra-card {
        padding: 15px 10px;
    }
    
    .extra-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .extra-text {
        font-size: 12px;
        line-height: 16px;
    }
}



/* СЕКЦИЯ ОТЧЕТЫ */
.reports-section {
    width: 100%;
    padding: 60px 0;
}

.reports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.reports-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.reports-title strong {
    color: #53C88E;
    font-weight: 700;
}

.reports-slider-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.reports-slider-container {
    /* overflow-x: auto;
    overflow-y: hidden; */
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reports-slider-container:active {
    cursor: grabbing;
}

/* Скрываем полосу прокрутки */
.reports-slider-container::-webkit-scrollbar {
    display: none;
}

.reports-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 15px 0;
}

.reports-slider-list {
    display: flex;
    gap: 5px;
    width: fit-content;
}

.reports-slider-item {
    flex-shrink: 0;
    /* width: calc(25% - 15px); */
    border-radius: 10px;
    /* margin: 10px; */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reports-slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.reports-slider-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.reports-slider-item-title{
    position: fixed;
    top: 43px;
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Gotham Pro reg', sans-serif;
    font-style: normal;
    color: #262626;
}

.reports-button-wrapper {
    display: flex;
    justify-content: center;
}

.reports-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 16px 36px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.reports-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты (3 карточки) */
@media (max-width: 992px) {
    .reports-container {
        padding: 0 30px;
    }
    
    .reports-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .reports-slider-item {
        width: calc(33.333% - 15px);
 
    }
}

/* Мобилки (2 карточки) */
@media (max-width: 768px) {
    .reports-section {
        padding: 40px 0;
    }
    
    .reports-container {
        padding: 0 20px;
    }
    
    .reports-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .reports-slider-item {
        width: calc(50% - 15px);
 
    }
    
    .reports-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Маленькие мобилки (1 карточка) */
@media (max-width: 480px) {
    .reports-container {
        padding: 0 16px;
    }
    
    .reports-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .reports-slider-item {
        width: calc(100% - 15px);
 
    }
    
    .reports-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}



/* СЕКЦИЯ ОТЗЫВЫ */
.reviews-feedback-section {
    width: 100%;
    background-color: #53C88E;
    padding: 100px 0;
}

.reviews-feedback-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 50px; */
}

.reviews-feedback-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 101%;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-feedback-slider-wrapper {
    position: relative;
}

.reviews-feedback-slider-container {
    /* overflow-x: auto;
    overflow-y: hidden; */
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-feedback-slider-container:active {
    cursor: grabbing;
}

/* Скрываем полосу прокрутки */
.reviews-feedback-slider-container::-webkit-scrollbar {
    display: none;
}

.reviews-feedback-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-feedback-slider-list {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.reviews-feedback-slider-item {
    flex-shrink: 0;
    width: 300px;
    /* height: 320px; */
    /* border-radius: 20px; */
    /* margin: 9px; */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

.reviews-feedback-slider-item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
}

.reviews-feedback-slider-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Планшеты */
@media (max-width: 992px) {
    .reviews-feedback-container {
        /* padding: 0 30px; */
    }
    
    .reviews-feedback-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .reviews-feedback-slider-item {
        /* width: 260px;
        height: 300px; */
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .reviews-feedback-section {
        padding: 40px 0;
    }
    
    .reviews-feedback-container {
        /* padding: 0 20px; */
    }
    
    .reviews-feedback-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .reviews-feedback-slider-item {
        /* width: 240px;
        height: 280px; */
    }
    
    .reviews-feedback-slider-list {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .reviews-feedback-container {
        padding: 0 16px;
    }
    
    .reviews-feedback-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .reviews-feedback-slider-item {
        /* width: 220px;
        height: 260px; */
    }
    
    .reviews-feedback-slider-list {
        gap: 12px;
    }
}


/* СЕКЦИЯ ВИДЕО */
.video-section {
    width: 100%;
    padding: 100px 0;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.video-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.video-card {
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-preview {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 60px;
    height: 60px;
}

.video-caption {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #262626;
    margin-top: 20px;
    text-align: left;
}

.video-button-wrapper {
    display: flex;
    justify-content: center;
}

.video-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 20px 60px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.video-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты */
@media (max-width: 992px) {
    .video-container {
        padding: 0 30px;
    }
    
    .video-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .video-grid {
        gap: 30px;
    }
    
    .video-caption {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 20px;
    }
    
    .video-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .video-play-btn svg {
        width: 50px;
        height: 50px;
    }
    
    .video-caption {
        font-size: 13px;
        line-height: 20px;
    }
    
    .video-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 0 16px;
    }
    
    .video-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .video-play-btn svg {
        width: 40px;
        height: 40px;
    }
    
    .video-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* СЕКЦИЯ СТАТИСТИКА */
.stats-section {
    width: 100%;
    position: relative;
    padding: 80px 0 330px 0;
    overflow: hidden;
}

/* Фигура из SVG */
.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1440px;
    height: 520px;
    background: url('data:image/svg+xml,<svg width="1440" height="490" viewBox="0 0 1440 490" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_89_2515)"><g clip-path="url(%23clip1_89_2515)"><path d="M-135 271.14V-300H1575V271.14C1490.64 344.1 1201.54 490.02 720 490.02C238.464 490.02 -50.64 344.1 -135 271.14Z" fill="%23F4F4F4"/></g></g><defs><clipPath id="clip0_89_2515"><rect width="1710" height="790.02" fill="white" transform="translate(-135 -300)"/></clipPath><clipPath id="clip1_89_2515"><rect width="1710" height="790.02" fill="white" transform="translate(-135 -300)"/></clipPath></defs></svg>') no-repeat bottom center;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 30px; */
}

.stats-card {
    text-align: center;
}

.stats-number {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 101%;
    color: #53C88E;
    margin-bottom: 10px;
        white-space: nowrap;
}

.stats-label {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 101%;
    color: #1A1F20;
    text-align: center;
        white-space: nowrap;

}

/* Шахматный порядок */
.stats-card-1 {
    transform: translateY(0);
}

.stats-card-2 {
    transform: translateY(140px);
}

.stats-card-3 {
    transform: translateY(0);
}

.stats-card-4 {
    transform: translateY(140px);
}

/* Планшеты */
@media (max-width: 1200px) {
    .stats-section {
        padding: 80px 0 200px 0;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 50px 0 150px 0;
    }
    
    .stats-container {
        padding: 0 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stats-number {
        font-size: 48px;
    }
    
    .stats-label {
        font-size: 16px;
    }
    
    .stats-card-1 {
        transform: translateY(0);
    }
    
    .stats-card-2 {
        transform: translateY(20px);
    }
    
    .stats-card-3 {
        transform: translateY(0);
    }
    
    .stats-card-4 {
        transform: translateY(20px);
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0 100px 0;
    }
    
    .stats-container {
        padding: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-card {
        transform: translateY(0) !important;
        display: flex;
        align-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    
    .stats-number {
        font-size: 42px;
    }
    
    .stats-label {
        font-size: 15px;
        text-align: left;
        white-space: wrap;
    }
}

@media (max-width: 480px) {
    .stats-container {
        padding: 0 16px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .stats-label {
        font-size: 14px;
    }
}


/* СЕКЦИЯ ОБОРУДОВАНИЕ */
.equipment-section {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden; /* Добавлено */
}

.equipment-container {
    width: 100%;
    max-width: 100%; /* На всю ширину */
    margin: 0 auto;
    padding: 0; /* Убираем паддинги */
}

.equipment-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px; /* Отступы только для заголовка */
}

.equipment-title strong {
    font-weight: 700;
    color: #53C88E;
}

/* Swiper контейнер */
.equipment-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Важно для Swiper */
}

/* Swiper wrapper */
.equipment-slider-wrapper .swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important; /* Плавная прокрутка */
}

/* Слайды */
.equipment-slider-wrapper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

/* Карточка оборудования */
.equipment-card {
    width: 200px;
    text-align: left;
    flex-shrink: 0;
}

.equipment-image-wrapper {
    width: 200px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 15px;
    overflow: hidden;
}

.equipment-image {
    max-width: 88px;
    max-height: 100%;
}

.equipment-name {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #53C88E;
    margin-bottom: 5px;
}

.equipment-cert {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #262626;
}

/* Курсор */
.equipment-slider-wrapper {
    cursor: grab;
}

.equipment-slider-wrapper:active {
    cursor: grabbing;
}

/* Планшеты */
@media (max-width: 992px) {
    .equipment-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .equipment-card {
        width: 170px;
    }
    
    .equipment-image-wrapper {
        width: 170px;
        height: 100px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .equipment-section {
        padding: 40px 0;
    }
    
    .equipment-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .equipment-card {
        width: 150px;
    }
    
    .equipment-image-wrapper {
        width: 150px;
        height: 90px;
    }
    
    .equipment-name {
        font-size: 12px;
    }
    
    .equipment-cert {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .equipment-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .equipment-card {
        width: 130px;
    }
    
    .equipment-image-wrapper {
        width: 130px;
        height: 80px;
    }
}



/* СЕКЦИЯ ДОКУМЕНТЫ */
.docs-section {
    width: 100%;
    background-color: #F4F4F4;
    padding: 60px 0;
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.docs-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.docs-title strong {
    font-weight: 700;
    color: #53C88E;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.docs-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.docs-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.docs-button-wrapper {
    display: flex;
    justify-content: center;
}

.docs-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 20px 60px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.docs-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты */
@media (max-width: 992px) {
    .docs-container {
        padding: 0 30px;
    }
    
    .docs-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .docs-grid {
        gap: 25px;
        margin-bottom: 40px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .docs-section {
        padding: 40px 0;
    }
    
    .docs-container {
        padding: 0 20px;
    }
    
    .docs-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .docs-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .docs-container {
        padding: 0 16px;
    }
    
    .docs-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .docs-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}



/* СЕКЦИЯ FAQ */
.faq-section {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.faq-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
    margin-top: -1px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    /* tap-highlight-color: transparent; */
}

.faq-question:focus {
    outline: none;
}

.faq-question-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    padding-right: 20px;
    user-select: none;
}

.faq-toggle {
    width: 48px;
    height: 48px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.2s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    /* -tap-highlight-color: transparent; */
    outline: none;
}

.faq-toggle:focus {
    outline: none;
}

.faq-toggle:hover {
    background-color: #53C88E;
}

.faq-toggle:hover svg path {
    stroke: #fff;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    overflow: hidden;
}

.faq-answer p {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #666;
    margin: 0;
    padding-bottom: 25px;
}

/* Планшеты */
@media (max-width: 992px) {
    .faq-container {
        padding: 0 30px;
    }
    
    .faq-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .faq-question-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .faq-toggle {
        width: 42px;
        height: 42px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .faq-toggle {
        width: 36px;
        height: 36px;
    }
    
    .faq-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .faq-question-text {
        font-size: 13px;
        line-height: 18px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
}



/* СЕКЦИЯ СТАТЬИ */
.articles-section {
    width: 100%;
    background-color: #F4F4F4;
    padding: 60px 0;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.articles-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    margin-left: Calc(50% - 80px);
}

.articles-nav {
    display: flex;
    gap: 16px;
}

.articles-prev,
.articles-next {
    width: 48px;
    height: 48px;
    background-color: #53C88E;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.articles-prev:hover,
.articles-next:hover {
    background-color: #3ca372;
    transform: scale(1.05);
}

.articles-slider-wrapper {
    position: relative;
}

.articles-slider-container {
    /* overflow-x: auto;
    overflow-y: hidden; */
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.articles-slider-container:active {
    cursor: grabbing;
}

/* Скрываем полосу прокрутки */
.articles-slider-container::-webkit-scrollbar {
    display: none;
}

.articles-slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.articles-slider-list {
    display: flex;
    gap: 30px;
    width: fit-content;
}

.articles-card {
    flex-shrink: 0;
    width: 380px;
    height: auto !important;
    background-color: #fff;
    border-radius: 20px;
    /* overflow: hidden; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.articles-image-wrapper {
    width: 100%;
    /* height: 300px; */
    overflow: hidden;
}

.articles-image {
    width: 100%;
    /* height: 100%; */
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.articles-card:hover .articles-image {
    transform: scale(1.05);
}

.articles-date {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 101%;
    letter-spacing: 1px;
    color: #4D4D4D;
    padding: 20px;
}

.articles-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 101%;
    color: #262626;
    padding: 20px 20px 0px 20px;
}

/* Планшеты */
@media (max-width: 992px) {
    .articles-container {
        padding: 0 30px;
    }
    
    .articles-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .articles-card {
        width: 320px;
    }
    
    .articles-image-wrapper {
        /* height: 200px; */
    }
    
    .articles-text {
        font-size: 14px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .articles-section {
        padding: 40px 0;
    }
    
    .articles-container {
        padding: 0 20px;
    }
    
    .articles-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .articles-title {
        font-size: 28px;
        line-height: 36px;
        margin: 0px;
    }
    
    .articles-prev,
    .articles-next {
        width: 40px;
        height: 40px;
    }
    
    .articles-card {
        width: 280px;
    }
    
    .articles-image-wrapper {
        /* height: 170px; */
    }
    
    .articles-date {
        font-size: 12px;
        padding: 15px 15px 8px 15px;
    }
    
    .articles-text {
        font-size: 13px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .articles-container {
        padding: 0 16px;
    }
    
    .articles-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .articles-card {
        width: 260px;
    }
    
    .articles-image-wrapper {
        /* height: 150px; */
    }
}



/* СЕКЦИЯ КОМФОРТ */
.comfort-section {
    width: 100%;
    background-color: #53C88E;
    padding: 100px 0;
}

.comfort-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.comfort-card {
    position: relative;
    background-color: #fff;
    border-radius: 25px;
    padding: 60px;
    min-height: 370px;

}

.comfort-content {
    position: relative;
    z-index: 2;
    max-width: 53%;
}

.comfort-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 30px;
}

.comfort-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 20px 60px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comfort-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

.comfort-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.comfort-image img {
    height: 100%;
    width: auto;
    display: block;
    position: relative;
    object-fit: contain;
    bottom: 20px;
}




/* Планшеты */
@media (max-width: 992px) {
    .comfort-container {
        padding: 0 30px;
    }
    
    .comfort-card {
        padding: 40px;
        min-height: 340px;
    }
    
    .comfort-content {
        max-width: 55%;
    }
    
    .comfort-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    
}


@media (max-width: 845px) {
    .comfort-content {
        max-width: 40%;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .comfort-image {
        height: 60%;
        /* left: 0; */
    }
    .comfort-section {
        padding: 40px 0;
    }
    
    .comfort-container {
        padding: 0 20px;
    }
    
    .comfort-card {
        padding: 30px;
        min-height: 525px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }
    
    .comfort-content {
        max-width: 100%;
        text-align: center;
    }
    
    .comfort-text {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

}

@media (max-width: 480px) {
    .comfort-card {
        padding: 30px;
        min-height: 400px;
    }
    .comfort-image {
        height: 50%;
        /* left: 0; */
    }
    /* .comfort-container {
        padding: 0 16px;
    }
    
    .comfort-card {
        padding: 25px 20px;
    }
    
    .comfort-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .comfort-btn {
        padding: 12px 24px;
        font-size: 13px;
    } */
}


/* ФУТЕР */
.footer {
    width: 100%;
}

/* Первая часть */
.footer-top {
    background-color: #1A1F20;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-logo {
    margin-bottom: -40px;
}

.footer-logo img {
    top: -36px;
    position: relative;
    width: auto;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col {
    padding-top: 10px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu li a:hover {
    color: #53C88E;
    text-decoration: none;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-services li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-services li a {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-services li a:hover {
    color: #53C88E;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
        color: #fff;
}

.footer-contacts li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contacts li a,
.footer-contacts li span {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.footer-contacts .phone{
    color: #53C88E;
}

.footer-contacts li a:hover {
    color: #53C88E;
}

.footer-btn {
        width: 100%;
    text-align: center;
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 16px 32px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 25px;
}

.footer-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

.footer-copyright {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 16px;
    color: #CBCBCB;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-address {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #ffffff9c;
}

.footer-address b {
    font-weight: 300;
    color: #fff;
}

/* Вторая часть */
.footer-bottom {
    background-color: #262626;
    padding: 20px 0;
}

.footer-bottom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-item {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #CBCBCB;
}

.footer-bottom-item a {
    color: #CBCBCB;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-item a:hover {
    color: #53C88E;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .footer-grid {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-grid {
        justify-content: center;
        text-align: center;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-menu li a,
    .footer-services li a,
    .footer-contacts li a,
    .footer-contacts li span {
        font-size: 16px;
        line-height: 24px;
    }
    
    .footer-bottom-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-item {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-menu li a,
    .footer-services li a,
    .footer-contacts li a,
    .footer-contacts li span {
        font-size: 14px;
        line-height: 22px;
    }
    
    .footer-btn {
        width: 100%;
        text-align: center;
    }
}



/* HERO2 СЕКЦИЯ */
.hero2 {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.hero2-container {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 100px 50px;
    align-items: center;
}

.hero2-wrapper {
    position: relative;
    z-index: 2;
    max-width: 50%;
    flex: 1;
}

.hero2-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 54px;
    color: #262626;
    margin-bottom: 25px;
}

.hero2-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    color: #26262670;
    margin-bottom: 30px;
}

.hero2-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero2-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: #262626;
}

.hero2-list-icon {
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #53C88E;
}

.hero2-list-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.hero2-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 16px 36px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero2-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Правая часть */
.hero2-right {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero2-images {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
}

.hero2-image-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.hero2-image-overlay {
    position: absolute;
    bottom: -187px;
    right: -13px;
    height: auto;
    display: block;
    z-index: 2;
}

.hero2-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin-top: -115px;
    z-index: 4;
}

.hero2-card-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #262626;
    margin: 0;
}

/* Адаптив */
@media (max-width: 992px) {
    .hero2-container {
        flex-direction: column;
        padding: 40px 30px;
        align-items: flex-start;
    }
    
    .hero2-wrapper {
        max-width: 100%;
    }
    
    .hero2-right {
        max-width: 100%;
        align-items: center;
        left: calc(50% - 120px);
    }
    
    .hero2-images {
        max-width: 350px;
    }
    
    .hero2-title {
        font-size: 36px;
        line-height: 44px;
        text-align: left;
    }
    
    .hero2-text {
        font-size: 16px;
        text-align: left;
        width: 75%;
    }
    
    .hero2-list {
        align-items: center;
    }
    
    .hero2-list li {
        font-size: 16px;
    }
    
    .hero2-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero2-right {
        left: calc(50% - 194px);
    }
    .hero2-container {
        padding: 30px 20px;
        align-items: flex-start;
    }
    
    .hero2-title {
        font-size: 28px;
        line-height: 36px;
        text-align: left;
    }
    
    .hero2-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .hero2-list li {
        font-size: 14px;
    }
    
    .hero2-list-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero2-list-icon img {
        width: 14px;
        height: 14px;
    }
    
    .hero2-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero2-image-overlay {
        bottom: -15px;
        right: -15px;
    }
    
    .hero2-card {
        padding: 20px;
        max-width: 280px;
        left: 110px;
        position: relative;
    }
    
    .hero2-card-text {
        font-size: 16px;
        line-height: 24px;
    }
    .hero2-image-main {
        width: 90%;
        left: 40px;

    }
    .hero2-image-overlay {
        bottom: -101px;
        right: -30px;
        width: 131%;
    }
}

@media (max-width: 480px) {
    .hero2-right {
        left: calc(50% - 150px);
    }

    .hero2-container {
        padding: 24px 16px;
    }
    
    .hero2-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hero2-text {
        font-size: 13px;
        line-height: 20px;
        width: 100%;
    }
    
    .hero2-list li {
        font-size: 13px;
    }
    
    .hero2-images {
        max-width: 280px;
    }
    
    .hero2-card {
        padding: 15px;
        max-width: 250px;
        left: 60px;
    }
    
    .hero2-card-text {
        font-size: 12px;
        line-height: 16px;
    }
}


/* СЕКЦИЯ ЦЕЛЬ И МИССИЯ */
.mission-section {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
}

/* Зеленый блок (слева) */
.mission-block-green {
    position: absolute;
    left: 50px;
    top: 0;
    width: calc(50% - 25px);
    background-color: #e5f7ee;
    border-radius: 25px;
    padding: 40px 40px 100px 40px;
    box-shadow: 0 15px 35px rgb(187 230 206);
    z-index: 1;
}

/* Синий блок (справа, ниже и заходит поверх) */
.mission-block-blue {
    position: absolute;
    right: 50px;
    top: 85px;
    width: calc(50% - 25px);
    background-color: #e4e2fd;
    border-radius: 25px;
    padding: 40px 40px 100px 40px;
    box-shadow: 0 15px 35px rgb(201 197 243);
    z-index: 2;
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.mission-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 101%;
    color: #53C88E;
    margin: 0;
}

.mission-title-blue {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 101%;
    color: #473BF0;
    margin: 0;
}

.mission-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    object-fit: contain;
}

.mission-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    color: #262626;
    margin: 0;
}

.mission-text-blue {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    color: #262626;
    margin: 0;
}

/* Планшеты */
@media (max-width: 992px) {
    .mission-container {
        padding: 0 30px;
        min-height: auto;
        flex-direction: column;
        position: static;
        display: flex;
        gap: 30px;
    }
    
    .mission-block-green,
    .mission-block-blue {
        position: static;
        width: 100%;
        top: auto;
        right: auto;
        left: auto;
    }
    
    .mission-block-blue {
        margin-top: 0;
    }
    
    .mission-title,
    .mission-title-blue {
        font-size: 30px;
    }
    
    .mission-text,
    .mission-text-blue {
        font-size: 16px;
        line-height: 23px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .mission-section {
        padding: 40px 0;
    }
    
    .mission-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .mission-block-green,
    .mission-block-blue {
        padding: 30px 25px;
    }
    
    .mission-title,
    .mission-title-blue {
        font-size: 28px;
    }
    
    .mission-icon {
        width: 55px;
        height: 55px;
    }
    
    .mission-text,
    .mission-text-blue {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .mission-container {
        padding: 0 16px;
        gap: 15px;
    }
    
    .mission-block-green,
    .mission-block-blue {
        padding: 25px 20px;
    }
    
    .mission-title,
    .mission-title-blue {
        font-size: 24px;
    }
    
    .mission-icon {
        width: 48px;
        height: 48px;
    }
    
    .mission-text,
    .mission-text-blue {
        font-size: 14px;
        line-height: 20px;
    }
}


/* СЕКЦИЯ О КОМПАНИИ */
.about-section {
    width: 100%;
    background-color: #F4F4F4;
    padding: 60px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.about-title {
    width: 1360px;
    margin-left: -128px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 1352px) {
    .about-title {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}

.about-title-icon {
    width: 57px;
    height: 57px;
    flex-shrink: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    margin: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.about-signature-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    align-self: self-end;
}

.about-signature-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 101%;
    color: #262626;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-right-content {
    border-radius: 20px;
    padding: 76px 30px 30px 30px;
}

.about-right-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    margin-bottom: 25px;
}

.about-right-text:last-child {
    margin-bottom: 0;
}

.about-right-text b {
    font-weight: 700;
    color: #262626;
    font-size: 24px;
}

.about-right-image {
    text-align: right;
}

.about-photo {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: inline-block;
}

/* Планшеты и мобилки */
@media (max-width: 992px) {
    .about-container {
        padding: 0 30px;
    }
    
    .about-title {
        font-size: 36px;
        line-height: 44px;
        flex-wrap: wrap;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-right {
        order: 3;
    }
    
    .about-right-image {
        order: 2;
        text-align: center;
        margin-top: 20px;
    }
    
    .about-right-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 28px;
        line-height: 36px;
        gap: 10px;
    }
    
    .about-title-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .about-signature-text {
        font-size: 16px;
    }
    
    .about-signature-icon {
        width: 48px;
        height: 48px;
    }
    
    .about-right-content {
        padding: 25px;
    }
    
    .about-right-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 16px;
    }
    
    .about-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .about-title-icon {
        width: 38px;
        height: 38px;
    }
    
    .about-text {
        font-size: 13px;
        line-height: 20px;
    }
    
    .about-signature-text {
        font-size: 14px;
    }
    
    .about-signature-icon {
        width: 42px;
        height: 42px;
    }
    
    .about-right-content {
        padding: 20px;
    }
    
    .about-right-text {
        font-size: 13px;
        line-height: 20px;
    }
}


/* СЕКЦИЯ ЭКСПЕРТЫ */
.experts-section {
    width: 100%;
    padding: 160px 0 60px 0;
    background-color: #fff;
}

.experts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.experts-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 25px;
}

.experts-title strong {
    font-weight: 700;
}

.experts-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #262626;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* .equipment-container .experts-subtitle {
width: 431px;margin: 0 auto 60px auto;
}

@media (max-width: 1000px) {
    .equipment-container .experts-subtitle {
        display: none;
    }
} */



@media (max-width: 1100px) {
    .experts-subtitle {
        margin: 0 auto 50px;
    }
}

.experts-subtitle b {
    font-weight: 700;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expert-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.expert-card:hover {
    /* transform: translateY(-5px); */
}

.expert-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.expert-info {
    padding: 20px;
    background-color: #fff;
    height: 100%;
}

.expert-name {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 101%;
    color: #262626;
    margin-bottom: 15px;
    background: #F4F4F4;
    padding: 10px 33px;
    border-radius: 4px;
}

.expert-desc {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 101%;
    color: #3A3A3A;
    margin-bottom: 15px;
}

.expert-more {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 101%;
    color: #53C88E;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.expert-more:hover {
    text-decoration: underline;
}

.expert-details {
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.expert-details.active {
    display: block;
}

.expert-details p {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.expert-details p b {
    font-weight: 400;
    color: #262626;
}

.expert-video-btn {
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 10px 20px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 15px;
    text-align: center;
}

.expert-video-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}

/* Планшеты */
@media (max-width: 992px) {
    .experts-container {
        padding: 0 30px;
    }
    
    .experts-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .experts-section {
        padding: 40px 0;
    }
    
    .experts-container {
        padding: 0 20px;
    }
    
    .experts-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .experts-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-photo {
        /* height: 240px; */
    }
    
    .expert-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .experts-container {
        padding: 0 16px;
    }
    
    .experts-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .expert-photo {
        /* height: 200px; */
    }
    
    .expert-name {
        font-size: 16px;
    }
}


/* Дополнительные стили для expert-details */
.expert-details p {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 12px;
    color: #3A3A3A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-details p .why-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
}

.expert-details p b {
    font-weight: 400;
    color: #262626;
    display: block;
    margin-bottom: 2px;
}

.expert-details p br {
    display: none;
}

.expert-details .expert-video-btn {
    width: 100%;
    display: inline-block;
    background-color: #53C88E;
    border: none;
    border-radius: 9px;
    padding: 12px 20px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 15px;
    text-align: center;
}

.expert-details .expert-video-btn:hover {
    background-color: #3ca372;
    text-decoration: none;
}



/* СЕКЦИЯ ПОЧЕМУ ВЫБИРАЮТ НАС */
.why-choose-section {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.why-choose-title {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    color: #262626;
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 44px;
}

.why-choose-card {
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-card-1 {
    background-color: #D1CFF3;
}

.why-choose-card-2 {
    background-color: #E5F7EE;
}

.why-choose-card-3 {
    background-color: #F4F4F4;
}

.why-choose-card-4 {
    background-color: #D6EBF6;
}

.why-choose-icon-wrapper {
    width: 152px;
    height: 152px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.why-choose-content {
    flex: 1;
}

.why-choose-subtitle {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 31px;
    color: #000000;
    margin-bottom: 15px;
}

.why-choose-text {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #262626;
    margin: 0;
}

/* Планшеты */
@media (max-width: 992px) {
    .why-choose-container {
        padding: 0 30px;
    }
    
    .why-choose-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        gap: 20px;
    }
    
    .why-choose-icon-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .why-choose-icon {
        width: 65px;
        height: 65px;
    }
}

/* Мобилки */
@media (max-width: 900px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-container {
        padding: 0 20px;
    }
    
    .why-choose-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        
    }
    
    .why-choose-card {
        padding: 25px 20px;
        flex-direction: row;
        align-items: center;
    }
    
    .why-choose-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .why-choose-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .why-choose-container {
        padding: 0 16px;
    }
    
    .why-choose-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .why-choose-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .why-choose-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-subtitle {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }
    
    .why-choose-text {
        font-size: 13px;
        line-height: 18px;
        text-align: center;
    }
}

.docs-button-wrapper .docs-btn{
    /* margin-top: 60px; */
}








.slider-track, .equipment-slider-container {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
  }


.reviews-notice-text p{
    max-width: 365px;
}



.nav-menu .menu-item-has-children > a,
.mobileMenu .menu-item-has-children > a::after
{
    position: relative;
    padding-right: 18px;
}

.nav-menu .menu-item-has-children > a::after,
.mobileMenu .menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #262626;
    transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after,
.mobileMenu .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: #53C88E;
}

/* Подменю */
.nav-menu .sub-menu{
    position: absolute;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.mobile-nav-list .sub-menu {
    position: relative;
    transform: translateX(-50%);
    min-width: 220px;

    padding: 12px 0;
    margin: 0;
    list-style: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-menu li:hover > .sub-menu
{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Элементы подменю */
.nav-menu .sub-menu li,
.mobile-nav-list .sub-menu li
 {
    display: block;
    margin: 0;
}

.nav-menu .sub-menu li a,
.mobile-nav-list .sub-menu li a{
    display: block;
    text-align: start;
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 13px;
    color: #262626;
    transition: all 0.2s ease;
}

.nav-menu .sub-menu li a:hover
{
    background: #F4F4F4;
    color: #53C88E;
}
.mobile-nav-list .sub-menu li a:hover,
.mobile-nav-list li a:hover
{
    color: #53C88E;
}


.mobile-nav-list .sub-menu{
    list-style-type: none;
}

.mobile-nav-list .sub-menu LI{
    margin-left: 15px;
}











#modalOverlay {
    /* Затемнение фона */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#modalOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* Стили попапа */
#modalOverlay .popup-form {
    background-color: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#modalOverlay.active .popup-form {
    transform: scale(1);
}

/* Кнопка закрытия */
#modalOverlay .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    z-index: 10;
}

#modalOverlay .close-btn:hover {
    color: #333;
}

/* Внутренний контент */
#modalOverlay .form-wrapper {
    padding: 40px 32px 32px;
}

#modalOverlay .form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #53c88e;
    margin-bottom: 12px;
}

#modalOverlay .form-descr {
    text-align: center;
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 28px;
}

/* Поля формы */
#modalOverlay .form-group {
    margin-bottom: 20px;
}

#modalOverlay .form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

#modalOverlay .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c9c9c9;
    border-radius: 9px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

#modalOverlay .form-group input:focus {
    outline: none;
    border-color: #53c88e;
}

/* Чекбокс */
#modalOverlay .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

#modalOverlay .checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

#modalOverlay .checkbox-group label {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

#modalOverlay .checkbox-group a {
    color: #473bf0;
    text-decoration: none;
}

#modalOverlay .checkbox-group a:hover {
    text-decoration: underline;
}

/* Кнопка отправки */
#modalOverlay .submit-btn {
    width: 100%;
    background-color: #53c88e;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

#modalOverlay .submit-btn:hover {
    background-color: #3daa74;
}

#modalOverlay .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Сообщения об ошибках и успехе */
#modalOverlay .error-box {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

#modalOverlay .success-message {
    text-align: center;
    padding: 12px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin-bottom: 20px;
}