.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: auto;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 2;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}




.header-index {
    padding: 112px 0 64px;
}

.header-column {
    display: flex;
    justify-content: center;
    margin-bottom: 64px; /* чуть больше отступа от текста до фото */
}

.header-column-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.center_badge_universal {
    display: flex;
    justify-content: center;
}

.center_badge_universal img {
    max-width: 520px;
    height: auto;
}

.welcome {
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #7fe366;
}

.open_catalog {
    margin-top: 16px;
}

.open_catalog .action {
    display: inline-block;
    padding: 12px 24px;
    background-color: #E36666;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.open_catalog .action:hover {
    background-color: #6ad155;
}

.image-container {
    display: flex;
    justify-content: center;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------- Адаптив ----------- */
@media (max-width: 1024px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .img-left,
    .img-center,
    .img-right {
        width: 90%;
        height: auto;
        transform: none;
        z-index: 0 !important;
        margin-bottom: 24px;
    }

    .header-index {
        padding-bottom: 64px; /* меньше отступ в мобилке */
    }
}






/*------------------section-about----------------*/

.about {
    height: auto;
    padding: 196px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    color: #fff;
    /* Убрана анимация тени при hover */
    transition: background-color 0.3s ease;
}

/* Добавляем рамку и тень для блока с текстом */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    background-color: rgba(255, 255, 255, 0.13);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

/* Сделаем тень у блока с текстом чуть ярче при наведении */
.about-content:hover {
    box-shadow: 0 10px 24px rgba(127, 227, 102, 0.15);
}

.about-column {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.text-40 {
    font-size: 40px;
    font-weight: 700;
    color: #7FE366;
    line-height: 1.2;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    height: 40px;
    width: 141px;
    padding: 0 15px;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    margin-top: 32px;
}

.button-secondary a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.button-secondary:hover {
    background-color: rgba(127, 227, 102, 0.1);
    border-color: #7FE366;
    transform: scale(1.05);
    opacity: 1;
}

.placeholder-image {
    margin-top: 80px;
    height: 738px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.placeholder-image:hover {
    box-shadow: 0 10px 24px rgba(127, 227, 102, 0.15);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------- Адаптив --------- */
@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 24px;
    }

    .about-column {
        font-size: 16px;
    }

    .about-heading {
        align-items: center;
    }

    .text-40 {
        font-size: 28px;
    }

    .button-secondary {
        margin: 24px auto 0;
        width: 160px;
    }

    .placeholder-image {
        height: auto;
        margin-top: 40px;
    }
}



/*----------------section option---------------*/

.section-option {
    padding: 120px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.column h1 {
    font-size: 36px;
    font-weight: 700;
    color: #7FE366;
}

.column .text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.actions {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

/* Основная кнопка */
.button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    height: 40px;
    width: 141px;
    padding: 0 15px;
    border-radius: 6px;
    background-color: #7FE366;
    color: black;
    transition: all 0.3s;
}

.button-primary a {
    color: black;
    text-decoration: none;
}

.button-primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Вторая кнопка - измененный класс и оформление */
.button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 141px;
    padding: 0 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.button-secondary a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.button-secondary:hover {
    background-color: rgba(127, 227, 102, 0.1);
    border-color: #7FE366;
    transform: scale(1.05);
}

.content3 {
    width: 100%;
}

/* Задаём фиксированную сетку 2 на 2 */
.option-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Стили для карточек */
.item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(127, 227, 102, 0.1);
}

.item img {
    width: 48px;
    height: 48px;
}

.item h1 {
    font-size: 20px;
    font-weight: 600;
    color: #7FE366;
}

.item .text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* -------- Адаптив --------- */

@media (max-width: 768px) {
    .column h1 {
        font-size: 28px;
        text-align: center;
    }

    .column .text {
        text-align: center;
    }

    .actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .option-items {
        grid-template-columns: 1fr; /* в одну колонку на мобильных */
    }

    .item {
        text-align: center;
        align-items: center;
    }
}




/*----------------------next section---------------------*/


.section-services {
    padding: 120px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.services-heading {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.services-heading .text-40 {
    font-size: 36px;
    font-weight: 700;
    color: #7FE366;
}

.services-heading .text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.row-services {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 150, 100, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 150, 100, 0.2);
}

.services-item:nth-child(even) {
    flex-direction: row-reverse;
}

.item-container {
    flex: 1 1 50%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.services-icon {
    width: 48px;
    height: 48px;
}

.content-content-services .text-24 {
    font-size: 22px;
    font-weight: 600;
    color: #7FE366;
}

.content-content-services .text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.services-action {
    margin-top: auto;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    height: 40px;
    width: auto;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 14px;
    background-color: rgba(127, 227, 102, 0.1);
}

.services-btn:hover {
    background-color: #7FE366;
    color: #000;
    border-color: #7FE366;
    transform: scale(1.05);
}

.icon-arrow {
    width: 16px;
    height: 16px;
}

.item-img {
    flex: 1 1 50%;
    min-height: 346px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.item-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.item-img img:hover {
    transform: scale(1.03);
}

/* --------- Адаптив --------- */

@media (max-width: 1024px) {
    .services-item {
        flex-direction: column;
    }

    .services-item:nth-child(even) {
        flex-direction: column;
    }

    .item-container, .item-img {
        flex: 1 1 100%;
        padding: 32px;
    }

    .services-heading .text-40 {
        font-size: 28px;
        text-align: center;
    }

    .services-heading .text {
        text-align: center;
    }

    .services-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ---------------------------следующая секция ---------------------------------------*/
.section-features {
    padding: 120px 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    color: #fff;
}

.features-heading .text-40 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #7FE366;
}

.features-heading .text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.features-wrap {
    box-shadow: 0 4px 10px rgba(255, 150, 100, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.features-section-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0;
    overflow: hidden;
}

.features-item {
    padding: 32px;
    border: 1px solid rgba(255, 217, 220, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 150, 100, 0.2);
    opacity: 1;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-icon {
    height: 48px;
    width: 48px;
    flex-shrink: 0;
}

.features-content .text-24 {
    font-size: 20px;
    font-weight: 600;
    color: #7FE366;
}

.features-header .text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ---------------- Адаптив ---------------- */

@media (max-width: 1024px) {
    .features-section-item {
        grid-template-columns: 1fr;
    }

    .features-item {
        padding: 24px;
    }

    .features-heading .text-40 {
        font-size: 28px;
        text-align: center;
    }

    .features-heading .text {
        font-size: 16px;
        text-align: center;
    }

    .features-content .text-24 {
        font-size: 18px;
    }

    .features-icon {
        height: 40px;
        width: 40px;
    }
}




/*------------------------------------- next section -------------------------------------------*/
.section-information {
    padding: 120px 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.information-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 20px;
    color: #fff;
}

.information-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #7FE366;
}

.information-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.information-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    position: relative;
    flex-wrap: nowrap; /* строго в строку */
}

.info-item {
    flex: 1 1 33%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 250px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.info-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #7FE366;
    transition: color 0.3s ease;
}

.info-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.info-line {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    height: auto;
    align-self: stretch;
    display: block;
}

/* ---------------- Адаптив ---------------- */

@media (max-width: 1024px) {
    .information-columns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-line {
        display: none;
    }

    .info-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .information-title {
        font-size: 30px;
        text-align: center;
    }

    .information-subtitle {
        font-size: 16px;
        text-align: center;
    }
}



/*---------------------------------next section--------------------------------*/

.section-cta {
    padding: 120px 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    margin: 60px 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-cta h2 {
    color: #7FE366;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    color: #fff;
    position: relative;
    padding-left: 24px;
}

.cta-content::before {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: #7FE366;
    position: absolute;
    left: -20px;
    top: 0;
    border-radius: 2px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: #e36666;
    color: #fff;
    border: none;
}

.cta-btn.primary:hover {
    background-color: #d04e4e;
}

.cta-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background-color: transparent;
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-image img {
    max-width: 400px;
    height: auto;
    border-radius: 16px;
}

/* ------------------ Адаптив ------------------ */
@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .cta-content::before {
        display: none;
    }

    .cta-content {
        padding-left: 0;
        align-items: center;
    }

    .cta-text h2 {
        font-size: 30px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .cta-image img {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .section-cta {
        padding: 80px 16px;
        margin: 40px 10px;
        border-radius: 16px;
    }
}


