
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}



a {
    color: #ffffff;
    text-decoration: none;
}


.header {
    background-color: #0a0a0a;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #1a1a1a;
}

.header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo span {
    color: #790608;
}

.header-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contacts a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.2s;
}

.header-contacts a i {
    margin-right: 8px;
    color: #790608;
}

.header-contacts a:hover {
    color: #ffffff;
}


.heroBlock {
    width: 100%;
    height: 100%;
    background-image: url('img/heroSectionBanner.jpg');
    background-size: cover;
    background-position: center 85%;
    background-repeat: no-repeat;
    position: relative;
    min-height: 950px;
}

.heroBlock::before {
    display: none;
}

.containerHero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    min-height: 950px;
    align-items: center;
}

.leftHeroBlock {
    flex: 1;
    padding: 40px 0;
}

.leftHeroBlock h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.leftHeroBlock p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.leftHeroBlock .badge {
    border: 2px solid #790608;
    cursor: pointer;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.leftHeroBlock .badge:hover {
    background: #790608;
    border-color: #790608;
    transform: scale(1.03);
}

.leftHeroBlock .badge a {
    color: #ffffff;
    text-decoration: none;
}

.leftHeroBlock .badge i {
    margin-right: 10px;
    color: #790608;
}

.leftHeroBlock .badge:hover i {
    color: #ffffff;
}


.rightHeroBlock {
    flex: 1;
    max-width: 480px;
    padding: 20px 0;
}

.rightHeroBlock .form-wrapper {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.rightHeroBlock .form-wrapper:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.rightHeroBlock .form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.rightHeroBlock .form-wrapper .form-sub {
    color: #999999;
    margin-bottom: 25px;
    font-size: 16px;
}

.rightHeroBlock .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #c0c0c0;
    margin-bottom: 5px;
}

.rightHeroBlock .form-group label .required {
    color: #ff6b6b;
    margin-left: 2px;
}

.rightHeroBlock .form-group select,
.rightHeroBlock .form-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: 0.3s;
    font-family: inherit;
    color: #ffffff;
}

.rightHeroBlock .form-group select option {
    color: #1a1a1a;
    background: #2a2a2a;
}

.rightHeroBlock .form-group select:focus,
.rightHeroBlock .form-group input:focus {
    outline: none;
    border-color: #790608;
    box-shadow: 0 0 0 4px rgba(121, 6, 8, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.rightHeroBlock .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23790608' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: #ffffff;
}

.rightHeroBlock .form-group select option {
    color: #1a1a1a;
    background: #f5f5f5;
}

.rightHeroBlock .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.rightHeroBlock .form-group .hint {
    font-size: 13px;
    color: #777777;
    margin-top: 4px;
}

.rightHeroBlock .form-group .hint i {
    color: #790608;
    margin-right: 6px;
}

.rightHeroBlock .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 24px;
}

.rightHeroBlock .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #790608;
    flex-shrink: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.rightHeroBlock .checkbox-group label {
    font-size: 14px;
    color: #999999;
    line-height: 1.4;
    cursor: pointer;
}

.rightHeroBlock .checkbox-group label a {
    color: #790608;
    font-weight: 600;
    text-decoration: underline;
}

.rightHeroBlock .btn-submit {
    background: linear-gradient(135deg, #790608, #5a0406);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(121, 6, 8, 0.3);
}

.rightHeroBlock .btn-submit i {
    font-size: 18px;
    color: #ffffff;
}

.rightHeroBlock .btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(121, 6, 8, 0.5);
    background: linear-gradient(135deg, #8a0709, #6a0507);
}


.packages {
    padding: 50px 0;
    background: #111111;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.sliderTitle {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
   
    margin-bottom: 6px;
}

.slider-subtitle {
    margin-top: 15px;
    text-align: center;
    color: #888888;
    font-size: 18px;
}

@media (max-width: 480px) {
    .sliderTitle {
        font-size: 26px;
    }
   
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.package-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
    transition: 0.25s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border-color: #790608;
}

.package-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.package-card .subhead {
    font-weight: 600;
    color: #790608;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.package-card .desc {
    color: #aaaaaa;
    margin-bottom: 20px;
    font-size: 16px;
}

.package-card ul {
    list-style: none;
    margin: 18px 0 10px;
}

.package-card ul li {
    padding: 5px 0 5px 28px;
    position: relative;
    font-size: 15px;
    color: #cccccc;
    border-bottom: 1px dashed #2a2a2a;
}

.package-card ul li:last-child {
    border-bottom: none;
}

.package-card ul li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: #790608;
    width: 20px;
    text-align: center;
}

.package-card .badge-package {
    display: inline-block;
    background: #790608;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 30px;
    margin-top: 16px;
}

.package-card.finish {
    border-top: 6px solid #790608;
}
.package-card.full {
    border-top: 6px solid #790608;
}
.package-card.lust {
    border-top: 6px solid #790608;
}


.package-card-lust {
    width: 100%;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
    transition: 0.25s;
    border-top: 6px solid #790608;
}

.package-card-lust:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border-color: #790608;
}

.package-card-lust h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.package-card-lust .subhead {
    font-weight: 600;
    color: #790608;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.package-card-lust .desc {
    color: #aaaaaa;
    margin-bottom: 20px;
    font-size: 16px;
}

.package-card-lust ul {
    list-style: none;
    margin: 18px 0 10px;
}

.package-card-lust ul li {
    padding: 5px 0 5px 28px;
    position: relative;
    font-size: 15px;
    color: #cccccc;
    border-bottom: 1px dashed #2a2a2a;
}

.package-card-lust ul li:last-child {
    border-bottom: none;
}

.package-card-lust ul li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: #790608;
    width: 20px;
    text-align: center;
}

.package-card-lust .badge-package {
    display: inline-block;
    background: #790608;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 30px;
    margin-top: 16px;
}


.extraContainer {
  
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.extraLeftBlock {
    width: 100%;
    padding: 0;
}

.extraLeftBlock .section-title {
    margin-bottom: 10px;
}

.extraLeftBlock p {
    color: #888888;
    margin-bottom: 6px;
}

.extra {
    padding: 50px 0;
    background: #111111;
}

.extra-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.extra-items span {
    background: #1a1a1a;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
    justify-content: center;
}

.extra-items span:hover {
    border-color: #790608;
    background: #222222;
    transform: translateY(-2px);
}

.extra-items span i {
    color: #790608;
    font-size: 18px;
}


@media (max-width: 1024px) {
    .extraContainer {
        gap: 24px;
    }

    .packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .extra-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .extra {
        padding: 40px 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 25px 20px;
    }

    .package-card h3 {
        font-size: 22px;
    }

    .package-card ul li {
        font-size: 14px;
    }

    .package-card-lust {
        padding: 25px 20px;
    }

    .package-card-lust h3 {
        font-size: 22px;
    }

    .package-card-lust ul li {
        font-size: 14px;
    }

    .extra-items {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .extra-items span {
        font-size: 15px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .extra {
        padding: 30px 0;
    }

    .extraLeftBlock .section-title {
        font-size: 24px;
    }

    .extraLeftBlock p {
        font-size: 15px;
    }

    .package-card {
        padding: 20px 16px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .package-card-lust {
        padding: 20px 16px;
    }

    .package-card-lust h3 {
        font-size: 20px;
    }

    .extra-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .extra-items span {
        font-size: 14px;
        padding: 10px 16px;
        justify-content: center;
    }

    .extra-items span i {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* ===== ДЕТАЛИЗАЦИЯ ===== */
.details {
    padding: 50px 0;
    background: #0d0d0d;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.detail-block {
    background: #1a1a1a;
    padding: 22px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2a2a;
}

.detail-block h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    border-bottom: 2px solid #790608;
    padding-bottom: 8px;
    display: inline-block;
}

.detail-block ul {
    list-style: none;
    margin-top: 12px;
}

.detail-block ul li {
    padding: 3px 0 3px 22px;
    position: relative;
    font-size: 15px;
    color: #cccccc;
}

.detail-block ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: #790608;
    font-size: 13px;
}

.detail-block .sub-list {
    margin-left: 16px;
    margin-top: 4px;
    color: #888888;
    font-size: 14px;
}

.detail-block .sub-list li {
    padding-left: 18px;
    list-style: circle;
}


.extraContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    align-items: flex-start;
}

.extraLeftBlock {
    flex: 0 0 35%;
    padding: 20px 0;
}

.extraLeftBlock .section-title {
    margin-bottom: 10px;
}

.extraLeftBlock p {
    color: #888888;
    margin-bottom: 6px;
}

.extra {
    padding: 50px 0;
    background: #111111;
}

.extra-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex: 1;
}

.extra-items span {
    background: #1a1a1a;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
    flex: 0 0 calc(50% - 8px);
}

.extra-items span:hover {
    border-color: #790608;
    background: #222222;
    transform: translateY(-2px);
}

.extra-items span i {
    color: #ffffff;
    font-size: 18px;
}


.not-published {
    background: #0d0d0d;
    padding: 30px 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.not-published .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
}

.not-published h4 {
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.not-published ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.not-published ul li {
    font-size: 16px;
    color: #999999;
    background: #1a1a1a;
    padding: 2px 16px;
    border-radius: 30px;
    border: 1px solid #2a2a2a;
}

.not-published ul li i {
    color: #790608;
    margin-right: 6px;
}

.form-section {
    padding: 60px 0;
    background: #0d0d0d;
}

.form-section .form-wrapper {
    background: #1a1a1a;
    border-radius: 28px;
    padding: 45px 50px;
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid #2a2a2a;
}

.form-section .form-wrapper h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.form-section .form-wrapper .form-sub {
    color: #888888;
    margin-bottom: 28px;
    font-size: 17px;
}

.form-section .form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 5px;
}

.form-section .form-group label .required {
    color: #ff6b6b;
    margin-left: 2px;
}

.form-section .form-group select,
.form-section .form-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    background: #0d0d0d;
    transition: 0.2s;
    font-family: inherit;
    color: #ffffff;
}

.form-section .form-group select:focus,
.form-section .form-group input:focus {
    outline: none;
    border-color: #790608;
    box-shadow: 0 0 0 4px rgba(121, 6, 8, 0.15);
    background: #1a1a1a;
}

.form-section .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23790608' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: #ffffff;
}

.form-section .form-group select option {
    color: #1a1a1a;
    background: #f5f5f5;
}

.form-section .form-group .hint {
    font-size: 14px;
    color: #777777;
    margin-top: 4px;
}

.form-section .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 24px;
}

.form-section .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #790608;
    flex-shrink: 0;
    cursor: pointer;
}

.form-section .checkbox-group label {
    font-size: 15px;
    color: #999999;
    line-height: 1.4;
    cursor: pointer;
}

.form-section .checkbox-group label a {
    color: #790608;
    font-weight: 600;
    text-decoration: underline;
}

.form-section .btn-submit {
    background: linear-gradient(135deg, #790608, #5a0406);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.5px;
}

.form-section .btn-submit i {
    font-size: 18px;
    color: #ffffff;
}

.form-section .btn-submit:hover {
    background: linear-gradient(135deg, #8a0709, #6a0507);
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(121, 6, 8, 0.3);
}

.footer {
    background: #0a0a0a;
    color: #888888;
    padding: 30px 0;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #1a1a1a;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #790608;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}




@media (max-width: 1024px) {
    .containerHero {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        min-height: auto;
    }

    .leftHeroBlock {
        padding: 20px 0;
        text-align: center;
    }

    .leftHeroBlock h1 {
        font-size: 36px;
    }

    .leftHeroBlock p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }

    .rightHeroBlock {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .rightHeroBlock .form-wrapper {
        padding: 25px 20px;
    }

    .heroBlock {
        min-height: auto;
        padding: 40px 0;
    }
}


     .cube-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .cube-scene {
            width: 140px;
            height: 140px;
            perspective: 600px;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotateCube 12s infinite linear;
        }

        .cube-face {
            position: absolute;
            width: 140px;
            height: 140px;
            border: 2px solid #b8cbdf;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #1e2b3c;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(2px);
            box-shadow: inset 0 0 20px rgba(244, 185, 66, 0.08);
            transition: all 0.2s;
        }

      
        .cube-face-front  { transform: translateZ(70px);  background: #ffffff; border-color: #f4b942; }
        .cube-face-back   { transform: rotateY(180deg) translateZ(70px); background: #fafcff; border-color: #d0ddeb; }
        .cube-face-right  { transform: rotateY(90deg) translateZ(70px); background: #fcfdff; border-color: #c8d4e3; }
        .cube-face-left   { transform: rotateY(-90deg) translateZ(70px); background: #fafcff; border-color: #c8d4e3; }
        .cube-face-top    { transform: rotateX(90deg) translateZ(70px); background: #fefcf7; border-color: #e8d5b0; }
        .cube-face-bottom { transform: rotateX(-90deg) translateZ(70px); background: #f7faff; border-color: #d0ddeb; }

 
        .cube-face-front span  { background: #f4b94220; padding: 4px 12px; border-radius: 30px; border: 1px solid #f4b94240; font-size: 0.7rem; }
        .cube-face-back span   { background: #eef3fa; padding: 4px 12px; border-radius: 30px; color: #4a5a72; }
        .cube-face-right span  { background: #eef3fa; padding: 4px 12px; border-radius: 30px; color: #4a5a72; }
        .cube-face-left span   { background: #eef3fa; padding: 4px 12px; border-radius: 30px; color: #4a5a72; }
        .cube-face-top span    { background: #f4b94220; padding: 4px 12px; border-radius: 30px; border: 1px solid #f4b94240; }
        .cube-face-bottom span { background: #eef3fa; padding: 4px 12px; border-radius: 30px; color: #4a5a72; }

        @keyframes rotateCube {
            0%   { transform: rotateX(-15deg) rotateY(0deg); }
            100% { transform: rotateX(-15deg) rotateY(360deg); }
        }


body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #0d0d0d;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

      
        .aboutUs {
            padding: 80px 0;
            background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
            position: relative;
            overflow: hidden;
        }

        /* Декоративный фон */
        .aboutUs::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(121, 6, 8, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .aboutUs::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(121, 6, 8, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .aboutUsContainer {
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .aboutUs .section-title {
            font-size: 38px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .aboutUs .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #790608, #b00a0d);
            border-radius: 4px;
        }

        .aboutUsBlock {
            display: flex;
            gap: 50px;
            align-items: center;
            background: rgba(26, 26, 26, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .aboutUsBlock:hover {
            border-color: rgba(121, 6, 8, 0.2);
        }

        .aboutUsDescr {
            flex: 1;
            padding: 10px;
        }

        .aboutUsDescr p {
            font-size: 18px;
            line-height: 1.8;
            color: #d0d0d0;
            margin-bottom: 20px;
        }

        .aboutUsDescr p:last-child {
            margin-bottom: 0;
        }

        .aboutUsDescr .highlight {
            color: #790608;
            font-weight: 600;
        }

        .aboutUsDescr .feature-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .aboutUsDescr .feature-list span {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: #aaaaaa;
        }

        .aboutUsDescr .feature-list span i {
            color: #790608;
            font-size: 14px;
            width: 20px;
            text-align: center;
        }

        .aboutUsImg {
            flex: 0 0 220px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

     
        .cube-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cube-scene {
            width: 200px;
            height: 200px;
            perspective: 800px;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotateCube 16s infinite linear;
        }

        .cube-face {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(121, 6, 8, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #e0e0e0;
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(4px);
            box-shadow: inset 0 0 40px rgba(121, 6, 8, 0.05);
            transition: all 0.3s ease;
        }

        .cube-face:hover {
            border-color: rgba(121, 6, 8, 0.6);
            box-shadow: inset 0 0 60px rgba(121, 6, 8, 0.1);
        }

        .cube-face-front {
            transform: translateZ(100px);
            border-color: #790608;
            background: rgba(121, 6, 8, 0.15);
        }

        .cube-face-back {
            transform: rotateY(180deg) translateZ(100px);
            background: rgba(26, 26, 26, 0.9);
            border-color: rgba(121, 6, 8, 0.2);
        }

        .cube-face-right {
            transform: rotateY(90deg) translateZ(100px);
            background: rgba(26, 26, 26, 0.9);
            border-color: rgba(121, 6, 8, 0.2);
        }

        .cube-face-left {
            transform: rotateY(-90deg) translateZ(100px);
            background: rgba(26, 26, 26, 0.9);
            border-color: rgba(121, 6, 8, 0.2);
        }

        .cube-face-top {
            transform: rotateX(90deg) translateZ(100px);
            background: rgba(26, 26, 26, 0.9);
            border-color: rgba(121, 6, 8, 0.2);
        }

        .cube-face-bottom {
            transform: rotateX(-90deg) translateZ(100px);
            background: rgba(26, 26, 26, 0.9);
            border-color: rgba(121, 6, 8, 0.2);
        }

        .cube-face span {
            background: rgba(121, 6, 8, 0.15);
            padding: 6px 16px;
            border-radius: 30px;
            border: 1px solid rgba(121, 6, 8, 0.2);
            font-size: 0.7rem;
            color: #e0e0e0;
            transition: all 0.3s ease;
        }

        .cube-face:hover span {
            background: rgba(121, 6, 8, 0.3);
            border-color: #790608;
        }

        .cube-face-front span {
            background: rgba(121, 6, 8, 0.25);
            border-color: #790608;
            color: #ffffff;
        }

        .cube-face-front span i {
            margin-right: 6px;
            color: #790608;
        }

        @keyframes rotateCube {
            0% {
                transform: rotateX(-20deg) rotateY(0deg);
            }
            100% {
                transform: rotateX(-20deg) rotateY(360deg);
            }
        }

        
        .cube-wrapper:hover .cube {
            animation-play-state: paused;
        }

.furnishing-benefits{
    display: flex;
    justify-content: space-between;
}
          .benefit-item {
            width: 30%;
            text-align: center;
            padding: 20px 16px;
            background: rgba(26, 26, 26, 0.4);
            border-radius: 14px;
            border: 1px solid rgb(53, 53, 53);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: #222222;
            border-color: #790608
        }

        .benefit-item i {
            font-size: 28px;
            color: #790608;
            margin-bottom: 10px;
            display: inline-block;
        }

        .benefit-item h5 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .benefit-item p {
            font-size: 14px;
            color: #999999;
            margin: 0;
            line-height: 1.5;
        }

        /* ===== АДАПТИВ ===== */
        @media (max-width: 1024px) {
            .aboutUsBlock {
                flex-direction: column;
                padding: 30px;
                gap: 30px;
            }

            .aboutUsImg {
                flex: 0 0 auto;
                width: 100%;
            }

            .cube-scene {
                width: 160px;
                height: 160px;
                perspective: 600px;
            }

            .cube-face {
                width: 160px;
                height: 160px;
            }

            .cube-face-front {
                transform: translateZ(80px);
            }
            .cube-face-back {
                transform: rotateY(180deg) translateZ(80px);
            }
            .cube-face-right {
                transform: rotateY(90deg) translateZ(80px);
            }
            .cube-face-left {
                transform: rotateY(-90deg) translateZ(80px);
            }
            .cube-face-top {
                transform: rotateX(90deg) translateZ(80px);
            }
            .cube-face-bottom {
                transform: rotateX(-90deg) translateZ(80px);
            }
        }

        @media (max-width: 768px) {
    .furnishing-benefits {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 25px;
    }
}
        @media (max-width: 768px) {
            .aboutUs {
                padding: 50px 0;
            }

            .aboutUs .section-title {
                font-size: 30px;
                margin-bottom: 30px;
            }

            .aboutUsBlock {
                padding: 24px;
                border-radius: 16px;
            }

            .aboutUsDescr p {
                font-size: 16px;
                line-height: 1.7;
            }

            .aboutUsDescr .feature-list {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .benefit-item {
                width: 100%;
            }

            .cube-scene {
                width: 140px;
                height: 140px;
                perspective: 500px;
            }

            .cube-face {
                width: 140px;
                height: 140px;
                font-size: 0.6rem;
            }

            .cube-face-front {
                transform: translateZ(70px);
            }
            .cube-face-back {
                transform: rotateY(180deg) translateZ(70px);
            }
            .cube-face-right {
                transform: rotateY(90deg) translateZ(70px);
            }
            .cube-face-left {
                transform: rotateY(-90deg) translateZ(70px);
            }
            .cube-face-top {
                transform: rotateX(90deg) translateZ(70px);
            }
            .cube-face-bottom {
                transform: rotateX(-90deg) translateZ(70px);
            }
        }

        @media (max-width: 480px) {
            .aboutUs {
                padding: 40px 0;
            }
.slider-subtitle {
    font-size: 14px;
}
            .aboutUs .section-title {
                font-size: 26px;
            }

            .aboutUsBlock {
                padding: 20px 16px;
            }

            .aboutUsDescr p {
                font-size: 15px;
            }

            .cube-scene {
                width: 120px;
                height: 120px;
                perspective: 400px;
            }

            .cube-face {
                width: 120px;
                height: 120px;
                font-size: 0.5rem;
            }

            .cube-face-front {
                transform: translateZ(60px);
            }
            .cube-face-back {
                transform: rotateY(180deg) translateZ(60px);
            }
            .cube-face-right {
                transform: rotateY(90deg) translateZ(60px);
            }
            .cube-face-left {
                transform: rotateY(-90deg) translateZ(60px);
            }
            .cube-face-top {
                transform: rotateX(90deg) translateZ(60px);
            }
            .cube-face-bottom {
                transform: rotateX(-90deg) translateZ(60px);
            }

            .cube-face span {
                padding: 4px 10px;
                font-size: 0.55rem;
            }
        }

@media (max-width: 768px) {
    .leftHeroBlock h1 {
        font-size: 30px;
    }

    .leftHeroBlock p {
        font-size: 16px;
    }

    .leftHeroBlock .badge {
        padding: 12px 24px;
        font-size: 16px;
    }

    .rightHeroBlock .form-wrapper {
        padding: 20px 16px;
    }

    .rightHeroBlock .form-wrapper h2 {
        font-size: 24px;
    }

    .rightHeroBlock .form-wrapper .form-sub {
        font-size: 14px;
    }

    .rightHeroBlock .btn-submit {
        font-size: 16px;
        padding: 14px 20px;
    }

    .rightHeroBlock .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rightHeroBlock .form-group select,
    .rightHeroBlock .form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .leftHeroBlock h1 {
        font-size: 24px;
    }

    .leftHeroBlock p {
        font-size: 15px;
    }

    .leftHeroBlock .badge {
        padding: 10px 20px;
        font-size: 14px;
    }

    .rightHeroBlock .form-wrapper {
        padding: 16px 12px;
    }

    .rightHeroBlock .form-wrapper h2 {
        font-size: 20px;
    }

    .rightHeroBlock .btn-submit {
        font-size: 14px;
        padding: 12px 16px;
    }
}


@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .header-contacts {
        gap: 14px;
        flex-wrap: wrap;
    }

    .header-contacts a {
        font-size: 15px;
    }

    .logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

    .header-contacts a {
        font-size: 13px;
    }

    .header-contacts {
        gap: 8px;
    }

    .logo {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .packages {
        padding: 40px 0;
    }

    .packages-grid {
        
        grid-template-columns: 1fr;
       
    }

    .package-card {
        padding: 25px 20px;
    }

    .package-card h3 {
        font-size: 22px;
    }

    .package-card ul li {
        font-size: 14px;
    }
}

.sliderContainer {
 max-width: 1480px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
}

@media (max-width: 480px) {
    .packages {
        padding: 30px 0;
    }


    .sliderContainer{
        max-width: 100%;
        padding: 0;
    }
    .package-card {
        width: 100%;
        padding: 20px 16px;
    }

    .package-card h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .aboutUsContainer h2 {
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .details {
        padding: 40px 0;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .detail-block {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .details {
        padding: 30px 0;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-block {
        padding: 16px 14px;
    }

    .detail-block h4 {
        font-size: 18px;
    }

    .detail-block ul li {
        font-size: 14px;
    }
}


@media (max-width: 1024px) {
    .extraContainer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .extraLeftBlock {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .extra-items {
        width: 100%;
        justify-content: center;
    }

    .extra-items span {
        flex: 0 0 calc(50% - 8px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .extra {
        padding: 40px 0;
    }

    .extra-items span {
        flex: 0 0 calc(50% - 8px);
        font-size: 15px;
        padding: 10px 16px;
        justify-content: center;
    }

    .extra-items span i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .extra {
        padding: 30px 0;
    }

    .extraLeftBlock .section-title {
        font-size: 24px !important;
    }

    .extraLeftBlock p {
        font-size: 15px;
    }

    .extra-items {
        gap: 10px;
    }

    .extra-items span {
        flex: 0 0 100%;
        font-size: 14px;
        padding: 10px 16px;
        justify-content: center;
    }

    .extra-items span i {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .form-section {
        padding: 40px 0;
    }

    .form-section .form-wrapper {
        padding: 30px 20px;
    }

    .form-section .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section .form-wrapper h2 {
        font-size: 24px;
    }

    .form-section .form-wrapper .form-sub {
        font-size: 15px;
    }

    .form-section .btn-submit {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 30px 0;
    }

    .form-section .form-wrapper {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .form-section .form-wrapper h2 {
        font-size: 20px;
    }

    .form-section .form-wrapper .form-sub {
        font-size: 14px;
    }

    .form-section .btn-submit {
        font-size: 15px;
        padding: 12px 16px;
    }

    .form-section .form-group select,
    .form-section .form-group input {
        padding: 12px 14px;
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .not-published {
        padding: 20px 0;
    }

    .not-published .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .not-published ul {
        gap: 6px 12px;
    }

    .not-published ul li {
        font-size: 14px;
        padding: 2px 12px;
    }
}

@media (max-width: 480px) {
    .not-published h4 {
        font-size: 17px;
    }

    .not-published ul li {
        font-size: 13px;
        padding: 2px 10px;
    }
}


@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer {
        padding: 20px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 16px 0;
        font-size: 13px;
    }
}

.slider-section-simple {
    background: #0d0d0d;
    padding: 60px 0 70px;
}

.slider-section-simple .section-title {
    margin-bottom: 16px;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.slider-section-simple .section-subtitle {
    text-align: center;
    color: #888888;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Слайдер */
.slider-simple {
    margin-top: 16px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.slider-track-simple {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}

/* Слайд */
.slide-simple {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    touch-action: pan-y;
    padding: 0 10px;
}

.slide-simple img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #1a1a1a;
}

.slide-info-simple {
    text-align: center;
    padding: 20px 0 10px;
}

.slide-tag-simple {
    display: inline-block;
    color: #790608;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.slide-info-simple h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.slide-info-simple p {
    font-size: 16px;
    color: #888888;
    margin: 0;
}

/* Кнопки */
.slider-btn-simple {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn-simple:hover {
    background: #790608;
}

.slider-btn-prev-simple {
    left: 25px;
}



.slider-btn-next-simple {
    right: 25px;
}

/* Точки */
.slider-dots-simple {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot-simple {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333333;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.slider-dot-simple.active {
    background: #790608;
}

.slider-dot-simple:hover {
    background: #555555;
}

.slider-dot-simple.active:hover {
    background: #790608;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .slider-section-simple {
        padding: 40px 0 50px;
    }

    .slider-section-simple .section-title {
        font-size: 30px;
    }

    .slider-section-simple .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .slide-simple img {
        max-height: 300px;
        border-radius: 10px;
    }

    .slide-info-simple h3 {
        font-size: 20px;
    }

    .slide-info-simple p {
        font-size: 15px;
    }

    .slider-btn-simple {
       opacity: 0;
    }

    .slider-btn-prev-simple {
        left: 6px;
    }

    .slider-btn-next-simple {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .slider-section-simple {
        padding: 30px 0 40px;
    }

    .slider-section-simple .section-title {
        font-size: 24px;
    }

    .slider-section-simple .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-simple img {
        max-height: 220px;
        border-radius: 8px;
    }

    .slide-info-simple {
        padding: 14px 0 6px;
    }

    .slide-info-simple h3 {
        font-size: 17px;
    }

    .slide-info-simple p {
        font-size: 14px;
    }

    .slide-tag-simple {
        font-size: 11px;
    }

    .slider-btn-simple {
      opacity: 0;
    }

    .slider-btn-prev-simple {
        left: 4px;
    }

    .slider-btn-next-simple {
        right: 4px;
    }

    .slider-dots-simple {
        gap: 8px;
        margin-top: 14px;
    }

    .slider-dot-simple {
        width: 8px;
        height: 8px;
    }
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0 50px;
    }

    .slider-section .section-title {
        font-size: 30px;
    }

    .slider-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .slider-container {
        padding: 12px 12px 20px;
        border-radius: 20px;
    }

    .slider-slide img {
        max-height: 260px;
        border-radius: 12px;
    }

    .slide-caption {
        font-size: 15px;
        gap: 10px;
        margin-top: 14px;
    }

    .slide-tag {
        font-size: 12px;
        padding: 3px 14px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-btn-prev {
        left: 6px;
    }

    .slider-btn-next {
        right: 6px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 16px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        padding: 30px 0 40px;
    }

    .slider-section .section-title {
        font-size: 24px;
    }

    .slider-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slider-container {
        padding: 8px 8px 16px;
        border-radius: 16px;
    }

    .slider-slide img {
        max-height: 200px;
        border-radius: 10px;
    }

    .slide-caption {
        font-size: 13px;
        gap: 8px;
        margin-top: 12px;
    }

    .slide-tag {
        font-size: 11px;
        padding: 2px 12px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .slider-btn-prev {
        left: 4px;
    }

    .slider-btn-next {
        right: 4px;
    }

    .slider-dots {
        gap: 6px;
        margin-top: 12px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

    /* Адаптив */
    @media (max-width: 700px) {
        .slider-section {
            padding: 40px 0 50px;
        }
        .slider-container {
            padding: 12px 12px 20px;
            border-radius: 24px;
        }
        .slider-slide img {
            max-height: 260px;
        }
        .slide-caption {
            font-size: 15px;
            gap: 10px;
        }
        .slide-tag {
            font-size: 12px;
            padding: 3px 14px;
        }
        .slider-btn {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
        .slider-btn-prev {
            left: 6px;
        }
        .slider-btn-next {
            right: 6px;
        }
        .slider-dots {
            gap: 8px;
            margin-top: 16px;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
        }
    }

    @media (max-width: 480px) {
        .slider-slide img {
            max-height: 200px;
            border-radius: 14px;
        }
        .slider-btn {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }
        .slider-btn-prev {
            left: 4px;
        }
        .slider-btn-next {
            right: 4px;
        }
    }

           .experience-block {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .experience-item {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid #2a2a2a;
            transition: 0.3s;
        }
        .experience-item:hover {
            border-color: #790608;
            transform: translateY(-4px);
        }
        .experience-item .number {
            font-size: 42px;
            font-weight: 700;
            color: #790608;
            display: block;
            line-height: 1.2;
        }
        .experience-item .label {
            font-size: 16px;
            color: #aaaaaa;
            margin-top: 6px;
        }

        /* Блок "Почему выбирают нас" */
        .why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px 0 40px;
}

.why-us-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
    font-size: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
}

.why-us-item:hover {
    border-color: #790608;
    background: #222222;
}

.why-us-item i {
    color: #790608;
    font-size: 16px;
    flex-shrink: 0;
}

/* Адаптив */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .why-us-item {
        font-size: 13px;
        padding: 14px 10px;
        min-height: 56px;
        height: 56px; /* Фиксированная высота для всех элементов */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        word-break: break-word;
    }
    
    .why-us-item i {
        font-size: 14px;
        flex-shrink: 0;
    }
}

        /* Блок "Как проходит работа" */
        .work-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
            margin: 40px 0 0px;
            position: relative;
        }
        .work-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1 1 120px;
            min-width: 100px;
            padding: 20px 10px;
            position: relative;
        }
        .work-step .step-num {
            width: 48px;
            height: 48px;
            background: #790608;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 10px;
            flex-shrink: 0;
        }
        .work-step .step-text {
            font-size: 14px;
            color: #cccccc;
            text-align: center;
            font-weight: 500;
        }
        .work-step .arrow-down {
            color: #444;
            font-size: 20px;
            margin: 4px 0;
        }

        /* Подвал с соцсетями */
        .footer-socials {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .footer-socials a {
            color: #888888;
            font-size: 22px;
            transition: 0.3s;
        }
        .footer-socials a:hover {
            color: #790608;
        }

    

        /* Адаптив */
        @media (max-width: 1024px) {
            .experience-block {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .experience-block {
                grid-template-columns: 1fr 1fr;
            }
            .why-us-grid {
                grid-template-columns: 1fr 1fr;
            }
            .work-step {
                flex: 1 1 80px;
                min-width: 70px;
                padding: 12px 6px;
            }
            .work-step .step-num {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }
            .work-step .step-text {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .experience-block {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .experience-item {
                padding: 20px 12px;
                height: 125px;
            }
            .experience-item .number {
                font-size: 30px;
            }
            .why-us-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .why-us-item {
                font-size: 13px;
                padding: 12px 10px;
            }
            .work-steps {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .work-step {
                flex-direction: row;
                gap: 14px;
                width: 100%;
                max-width: 280px;
                justify-content: flex-start;
                padding: 10px 0;
            }
            .work-step .arrow-down {
                transform: rotate(90deg);
                margin: 0;
            }
            .work-step .step-text {
                text-align: left;
            }
            .footer-socials a {
                font-size: 18px;
            }
        }
        
          .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-overlay img {
            max-width: 95%;
            max-height: 95%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
            animation: zoomIn 0.3s ease;
            cursor: default;
        }

        .modal-overlay .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: #ffffff;
            font-size: 48px;
            cursor: pointer;
            transition: 0.3s;
            background: none;
            border: none;
            z-index: 10000;
        }

        .modal-overlay .close-btn:hover {
            color: #790608;
            transform: rotate(90deg);
        }

        .modal-overlay .modal-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #888888;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-overlay .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .modal-overlay .nav-btn:hover {
            background: #790608;
            border-color: #790608;
        }

        .modal-overlay .nav-prev {
            left: 30px;
        }

        .modal-overlay .nav-next {
            right: 30px;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .modal-overlay .close-btn {
                top: 20px;
                right: 20px;
                font-size: 36px;
            }
            .modal-overlay .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .modal-overlay .nav-prev {
                left: 20px;
            }
            .modal-overlay .nav-next {
                right: 20px;
            }
            .modal-overlay .modal-counter {
                font-size: 14px;
                padding: 6px 16px;
                bottom: 20px;
            }
        }

        /* Стили для слайдера */
        .slide-simple img {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .slide-simple img:hover {
            transform: scale(1.02);
        }

        .sliderContainer {
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 20px;
        }