@import url("https://fonts.googleapis.com/css?family=Unbounded:300,800,500,400,600|Montserrat:500,400,700,800");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Unbounded, Helvetica;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
.header {
    background: #2B3C1F;
    padding: 8px 0;
    text-align: center;
    color: white;
    font-size: 14px;
}

.header::after {
    content: url('../images/header-arrow.svg');
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

/* Navigation */
.nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: top 0.3s;
}

.nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.fixed-nav-padding {
    padding-top: 80px; /* Высота .nav — подкорректируй по факту */
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4a5d3a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-right: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #4a5d3a;
}

.left_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar_language, .navbar_language_mobile {
    height: 45px;
    width: 45px;
    overflow: hidden;
    position: relative;
    transition: width .5s;
    margin-right: 35px;
}

.navbar_language:hover {
    width: 156px;
}

.navbar_element {
    background-color: #2e2e2e;
    border-radius: 40px;
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 600;
}

.navbar_language div, .navbar_language_mobile div {
    align-items: center;
    background-color: #1c3110;
    display: flex;
    height: 45px;
    justify-content: space-around;
    left: -3px;
    position: absolute;
    top: 0px;
    transition: left .5s, width .5s;
    width: 156px;
    z-index: 2;
}
.navbar_language div a, .navbar_language_mobile div a {
    color: #a8a8a8;
    font-size: 16px;
    font-weight: 300;
    order: 2;
    transition: all .3s;
    text-decoration: none;
}
.navbar_language div .selected, .navbar_language_mobile div .selected {
    color: #FBF7E5;
    order: 1;
}
.navbar_language_mobile {
    display: none;
}

.phone {
    background: #FBF7E5;
    color: #2B3C1F;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
    border: 2px solid #2B3C1F;
}

/* Бургер кнопка */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобільне меню */
.mobile-menu {
    position: fixed;
    top: 115px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: #4a5d3a;
}
.navbar_language_mobile_container {
    display: none;
}

@media (max-width: 768px) {
    .left_nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .navbar_language_mobile_container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar_language_mobile_active {
        height: 145px;
        width: 45px;
    }
    .navbar_language_mobile .tab-area {
        cursor: pointer;
        height: 100%;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 3;
    }
    .navbar_language_mobile {
        display: block;
        margin-right: 10px;
        transition: height .5s;
    }
    .navbar_language_mobile div {
        flex-direction: column;
        height: 124px;
        left: 8px;
        top: 13px;
        width: 60px;
    }
    .navbar_language_mobile_active div {
        height: 124px;
        left: 8px;
        width: 45px;
    }
    .navbar_language_mobile div a {
        height: 33%;
        opacity: 0;
        order: 2;
        width: 100%;
    }
    .navbar_language_mobile div .selected {
        opacity: 1;
        order: 1;
    }
    .navbar_language_mobile_active div a {
        opacity: 1;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Hero Section */
.hero {
    background: #FBF7E5;
    overflow: hidden;
}

.hero-container {
    max-width: 1440px;
    display: flex;
    gap: 60px;
    justify-content: center;
    margin: 0 auto;
}

.hero-left {
    flex: 0 0 50%;
    min-height: 555px;
}

.hero-content {
    height: 100%;
    /*background-image: url('/img/video-head.svg');*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-right h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
}

.hero-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.savings {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.savings span {
    font-weight: bold;
}

.cta-button {
    background: #1D3211;
    color: #90EC5C;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #33591d;
    transform: translateY(-2px);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Ticker */
.ticker {
    overflow: hidden;
    background: #90EC5C;
    color: #333;
    white-space: nowrap;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    /*padding-left: 100%;*/
    animation: ticker 25s linear infinite;
    font-weight: 600;
}

.ticker-content span {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
}

.ticker-content img {
    height: 16px;
    vertical-align: middle;
    margin: 0 5px;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/section-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 90px 0;
    text-align: center;
}

.who-we-are h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: bold;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.feature {
    width: 360px;
    text-align: center;
    padding: 30px;
    background: #314324;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature p {
    font-size: 18px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #FBF7E5;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1D3211;
    font-weight: 600;
}

.services-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    text-align: center;
    margin: 25px 0;
    color: #4a5d3a;
}
.service-icon img {
    height: 70px;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.service ul {
    list-style: none;
}

.service li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
    font-weight: 300;
}

.service li:before {
    content: url('../images/service-li-icon.svg');
    margin-right: 8px;
    position: absolute;
    left: 0;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

/* Video Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: "▶";
    font-size: 24px;
    color: #4a5d3a;
    margin-left: 4px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        display: block;
    }
    .hero-left, .hero-content {
        min-height: 300px;
        height: 300px;
    }
    .hero-right {
        padding-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-right h2 {
        font-size: 24px;
    }

    .hero-right h3 {
        font-size: 20px;
    }

    .price-tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .who-we-are h2,
    .services h2 {
        font-size: 28px;
    }

    .ticker {
        font-size: 14px;
    }
}

/* Who Needs Section */
.who-needs {
    padding: 80px 0;
    background: #E9F0E4;
    text-align: center;
}

.who-needs h2 {
    font-size: 36px;
    color: #1D3211;
    margin-bottom: 20px;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    color: #1D3211;
    margin-bottom: 50px;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.client-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.client-icon {
    font-size: 40px;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-icon img {
    width: 80px;
}

.client-card h3 {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
}

.highlight {
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.benefits-left h2,
.benefits-right h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
}

.benefits-list li:before {
    content: url('../images/service-li-icon.svg');
    margin-right: 8px;
    position: absolute;
    left: 0;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

/* Pricing Section */
.pricing {
    background: #E9F0E4;
}

.pricing-container {
    max-width: 1440px;
    display: flex;
    gap: 60px;
    justify-content: center;
    margin: 0 auto;
}
.pricing-left {
    flex: 0 0 50%;
    padding: 35px 30px;
}
.pricing-right {
    flex: 1;
}

.pricing-table {
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
    background: white;
    border-radius: 15px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.special {
    background: #f9f9f9;
}

.service-name {
    font-size: 16px;
    color: #1B1B1B;
    width: 79%;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #4a5d3a;
    flex-grow: 1;
}

.consultation-btn {
    background: #1D3211;
    color: #90EC5C;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.consultation-btn:hover {
    background: #6b7b5a;
}

.video-section {
    height: 100%;
    /*background-image: url('/img/video.svg');*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}
.video-section:not(.active) > iframe {
    display: none;
}

.video-section h3 {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.video-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .client-card {
        padding: 20px 15px;
    }

    .client-card h3 {
        font-size: 14px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-container {
        display: block;
    }

    .pricing-left {
        flex: 1;
        padding: 30px 20px;
    }
    .service-name {
        width: 68%;
    }

    .who-needs h2 {
        font-size: 28px;
    }

    .benefits-left h2,
    .benefits-right h2 {
        font-size: 24px;
    }

    .video-section {
        height: 290px;
    }

    .video-section h2 {
        font-size: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #1D3211;
    color: white;
    text-align: center;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, #90EE90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reasons-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.labels-container {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label {
    position: absolute;
    padding: 30px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 300;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 350px;
    max-width: 450px;
    transition: all 0.3s ease;
    will-change: transform;
    text-align: left;
    color: #1B1B1B;
    padding-left: 70px;
}

.label::before {
    content: url(../images/service-li-icon.svg);
    margin-left: 25px;
    position: absolute;
    left: 0;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.label-1 {
    background: linear-gradient(135deg, #B1FFD8, #B1FFD8);
    z-index: 1;
}

.label-2 {
    background: linear-gradient(135deg, #D3FF7B, #D3FF7B);
    z-index: 2;
}

.label-3 {
    background: linear-gradient(135deg, #90EC5C, #90EC5C);
    z-index: 3;
}

.label-4 {
    background: linear-gradient(135deg, #EDE0EA, #EDE0EA);
    z-index: 4;
}

.label-5 {
    background: linear-gradient(135deg, #D4DBFF, #D4DBFF);
    z-index: 5;
}

.label-6 {
    background: linear-gradient(135deg, #E4C589, #E4C589);
    z-index: 6;
}

.label-7 {
    background: linear-gradient(135deg, #FFF9B3, #FFF9B3);
    z-index: 7;
}

.label-8 {
    background: linear-gradient(135deg, #B1F2FF, #B1F2FF);
    z-index: 8;
}

/* Начальное состояние лейблов - скрыты */
.scroll-trigger {
    opacity: 1;
    transform: translateY(100px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Анимация появления - первый блок в центре */
.scroll-trigger.animate-1 {
    opacity: 1;
    transform: translateY(100px) translateX(-110px) rotate(7deg) scale(1);
    transition-delay: 0.1s;
}

/* Остальные блоки с большим разбросом по сторонам */
.scroll-trigger.animate-2 {
    opacity: 1;
    transform: translateY(105px) translateX(200px) rotate(-8deg);
    transition-delay: 0.4s;
}

.scroll-trigger.animate-3 {
    opacity: 1;
    transform: translateY(-115px) translateX(210px) rotate(9deg) scale(1);
    transition-delay: 0.7s;
}

.scroll-trigger.animate-4 {
    opacity: 1;
    transform: translateY(-60px) translateX(-180px) rotate(-15deg) scale(1);
    transition-delay: 1.0s;
}

.scroll-trigger.animate-5 {
    opacity: 1;
    transform: translateY(-15px) translateX(140px) rotate(-4deg) scale(1);
    transition-delay: 1.3s;
}

.scroll-trigger.animate-6 {
    opacity: 1;
    transform: translateY(-130px) translateX(-100px) rotate(-2deg) scale(1);
    transition-delay: 1.6s;
}

.scroll-trigger.animate-7 {
    opacity: 1;
    transform: translateY(-40px) translateX(20px) rotate(9deg) scale(1);
    transition-delay: 1.9s;
}

.scroll-trigger.animate-8 {
    opacity: 1;
    transform: translateY(40px) translateX(-30px) rotate(-2deg) scale(1);
    transition-delay: 2.1s;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 30px 0;
    }
    .labels-container {
        height: 850px;
    }
    .scroll-trigger.animate-1 {
        opacity: 1;
        transform: translateY(-360px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 0.1s;
    }

    .scroll-trigger.animate-2 {
        opacity: 1;
        transform: translateY(-260px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 0.4s;
    }

    .scroll-trigger.animate-3 {
        opacity: 1;
        transform: translateY(-160px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 0.7s;
    }

    .scroll-trigger.animate-4 {
        opacity: 1;
        transform: translateY(-60px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 1.0s;
    }

    .scroll-trigger.animate-5 {
        opacity: 1;
        transform: translateY(40px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 1.3s;
    }

    .scroll-trigger.animate-6 {
        opacity: 1;
        transform: translateY(140px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 1.6s;
    }

    .scroll-trigger.animate-7 {
        opacity: 1;
        transform: translateY(240px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 1.9s;
    }

    .scroll-trigger.animate-8 {
        opacity: 1;
        transform: translateY(340px) translateX(0px) rotate(0deg) scale(1);
        transition-delay: 2.2s;
    }
}

/* Cooperation Section */
.cooperation {
    padding: 80px 0;
    background: #E9F0E4;
    text-align: center;
}

.cooperation h2 {
    font-size: 36px;
    color: #1D3211;
    margin-bottom: 50px;
    font-weight: 600;
}

.cooperation-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.cooperation-card {
    background: white;
    padding: 23px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s;
}

.cooperation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cooperation-card h3 {
    min-height: 45px;
    font-size: 18px;
    color: #1D3211;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.cooperation-card ul {
    list-style: none;
}

.cooperation-card li {
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #1B1B1B;
    font-weight: 300;
}

.cooperation-card li:before {
    content: url('../images/service-li-icon.svg');
    margin-right: 8px;
    position: absolute;
    left: 0;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.consultation-btn-center {
    background: #1D3211;
    color: #90EC5C;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.consultation-btn-center:hover {
    background: #395924;
    transform: translateY(-2px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #E9F0E4;
    text-align: center;
}

.partners h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 600;
}

.partners-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.partner-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.partner-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-logo img {
    width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.logo-text.lp-crm {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text.lp-mobi {
    color: #FFA500;
}

.logo-text.lp-cloak {
    color: #6B73FF;
}

.logo-text.cpahka {
    color: #FF1744;
}

.partner-logo small {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.rating-stars {
    font-size: 16px;
    margin-top: 5px;
}

.final-ticker {
    background: #90EE90;
    margin-top: 0;
}

@media (max-width: 768px) {
    .reason-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        padding: 15px 20px;
    }

    .reason-card:nth-child(even),
    .reason-card:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .reason-text {
        font-size: 14px;
    }

    .cooperation-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cooperation h2,
    .partners h2 {
        font-size: 28px;
    }

    .why-choose-us h2 img {
        width: 100%;
    }

    .cooperation-card {
        padding: 20px;
    }

    .partner-card {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-right h2 {
        font-size: 20px;
    }

    .price-tag {
        padding: 10px 15px;
        font-size: 14px;
    }

    .feature,
    .service {
        padding: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card {
        padding: 20px;
    }

    .pricing-row {
        padding: 15px 20px;
    }

    .service-name {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

    .reason-card {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .reason-text {
        font-size: 13px;
        text-align: center;
    }

    .logo-text {
        font-size: 20px;
    }
}

/* FAQ секція */
.how-to-start {
    background: #1D3211;
    padding: 80px 0;
}
.how-to-start-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.how-to-start h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FBF7E5;
}

.step-container {
    display: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 0 auto;
    position: relative;
}

.step {
    text-align: left;
    position: relative;
}

.step-line {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 1px solid #90EC5C;
    color: #FBF7E5;
    flex-shrink: 0;
}

img.step-img {
    width: 100%;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FBF7E5;
}

.step p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .how-to-start .step-img {
        display: none;
    }
    .step-container {
        display: block;
    }
}


/* reviews секція */
.reviews-section {
    background: #FBF7E5;
    padding: 80px 0;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.reviews-container {
    /*display: flex;*/
    /*transition: transform 0.5s ease;*/
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%; /* Каждый слайд занимает 100% ширины контейнера */
    box-sizing: border-box;
    padding: 1rem; /* Добавляем внутренний отступ для карточки отзыва */
}
@media (min-width: 768px) {
    .carousel-slide {
        min-width: calc(100% / 2); /* 2 слайда на планшетах */
    }
}
@media (min-width: 1024px) {
    .carousel-slide {
        min-width: calc(100% / 3); /* 3 слайда на десктопах */
    }
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 0 5px;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}
.review-avatar img {
    width: 100%;
}

.review-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.review-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2A2E28;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #2A2E28;
    font-weight: 300;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-dot.active {
    background: #4CAF50;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1D3211;
    color: #90EC5C;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.carousel-button.prev {
    left: 10px;
}
.carousel-button.next {
    right: 10px;
}



/* FAQ секція */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-grid {
    width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.consultation-form {
    padding: 40px;
}

.consultation-form h3 {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 30px;
    border: 1px solid #FBF7E5;
    background: #FBF7E5;
    border-radius: 70px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #f6d956;
}

.consultation-btn-no-width {
    background: #1D3211;
    color: #90EC5C;
    padding: 15px 30px;
    border: none;
    border-radius: 70px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.consultation-btn-no-width:hover {
    background: #33591d;
}

.faq-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #1D3211;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background: #e8f5e8;
    cursor: pointer;
    font-weight: bold;
    color: #1D3211;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question.active {
    background: #FBF7E5;
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    background: #FBF7E5;
    font-weight: 300;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Футер */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-logo {
   margin-bottom: 15px;
}

.footer-info {
    text-align: left;
}
.footer-info .footer-phone {
    color: #90EC5C;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
    text-decoration: underline;
}

.footer-left h4.time {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.footer-left p {
    font-size: 12px;
    font-weight: 300;
    line-height: 21px;
}

.footer-info p {
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 5px;
    color: white;
}
.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-info .footer-telegram img, .footer-info .footer-instagram img {
    vertical-align: middle;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.footer-social {
    text-align: left;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.footer-social p {
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 5px;
}

.footer-social a:hover {
    color: #4CAF50;
}

.payment-methods {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.payment-card {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.payment-card img {
    width: 65px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .review-card {
        min-width: 400px;
    }

    .faq-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;

    }
    .faq-content {
        padding: 15px;
    }
}