/* ===== ГЛОБАЛЬНЫЕ СТИЛИ ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1e1e1e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 80px 0;
    display: block;
    width: 100%;
}

.bg-light {
    background: #f8f9fa;
}

/* ===== ТИПОГРАФИКА ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
p { font-size: clamp(0.9rem, 2.5vw, 1rem); }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ===== ШАПКА ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

main {
    padding-top: 80px;
    display: block;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-link {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-link:hover .logo-img {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-text {
    transform: scale(1.02);
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
}

.nav-menu a:hover {
    color: #000;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000, #666);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-small {
    padding: 10px 28px !important;
    font-size: 1rem !important;
    border-radius: 40px !important;
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    min-width: auto !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.3px !important;
}

.btn-small:hover {
    background: transparent !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 992px) {
    .logo-main { font-size: 24px; }
    .logo-subtitle { font-size: 9px; letter-spacing: 0.8px; }
    .logo-img { height: 38px; }
    .nav-menu { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .navbar { height: 60px; padding: 0 15px; }
    .logo-img { height: 35px; }
    .logo-main { font-size: 20px; }
    .logo-subtitle { font-size: 8px; letter-spacing: 0.5px; margin-top: 2px; }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        gap: 25px;
        z-index: 999;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active { left: 0; }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #000;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger span:nth-child(3) { bottom: 0; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 50%; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); bottom: 40%; }

    .btn-small { padding: 8px 20px !important; font-size: 0.9rem !important; }
}

@media (max-width: 480px) {
    .logo-main { font-size: 20px; letter-spacing: -0.5px; }
    .logo-img { height: 32px; }
    .logo-subtitle { font-size: 7px; letter-spacing: 0.5px; }
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-full { width: 100%; min-width: auto; }

/* ===== ГЕРОЙ СЕКЦИЯ ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #000;
}

.hero-title span:first-child {
    font-size: 2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.hero-title .highlight {
    font-size: 4rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content { padding: 25px 20px; margin: 0 15px; backdrop-filter: blur(8px); }
    .hero-title span:first-child { font-size: 1.2rem; }
    .hero-title .highlight { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.9rem; line-height: 1.5; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn { width: 100%; max-width: 280px; padding: 12px 24px; font-size: 0.9rem; }
    @keyframes slowZoom { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
}

@media (max-width: 480px) {
    .hero-content { padding: 20px 15px; }
    .hero-title .highlight { font-size: 1.8rem; }
    .hero-title span:first-child { font-size: 1rem; }
    .hero-subtitle { font-size: 0.85rem; }
    @keyframes slowZoom { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }
}

/* ===== КНОПКИ МЕССЕНДЖЕРОВ ===== */
.btn-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #000;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    min-width: 130px;
}

.btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.btn-messenger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-messenger.telegram:hover { background: #0088cc; border-color: #0088cc; color: #fff; }
.btn-messenger.vk:hover { background: #4a76a8; border-color: #4a76a8; color: #fff; }
.btn-messenger.max:hover { background: linear-gradient(135deg, #4a76a8, #9b59b6); border-color: #9b59b6; color: #fff; }
.btn-messenger.email:hover { background: #ea4335; border-color: #ea4335; color: #fff; }

.btn-messenger:hover .btn-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .btn-messenger { padding: 10px 20px; font-size: 0.85rem; min-width: 110px; }
    .btn-icon { width: 18px; height: 18px; }
}

@media (max-width: 580px) {
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .btn-messenger { width: 200px; padding: 10px 16px; }
}

/* ===== СЕКЦИЯ "О НАС" ===== */
.about-section {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.about-block-reverse .about-image {
    order: 2;
}

.about-block-reverse .about-text {
    order: 1;
    padding-right: 20px;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 60px rgba(0,0,0,0.15);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    padding-left: 30px;
}

.about-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-heading {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
}

.about-description {
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
}

.about-conclusion {
    color: #000;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1rem;
}

.about-quote {
    font-size: 1rem;
    color: #000;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid #000;
    padding-left: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-quote:hover {
    border-left-color: #666;
    padding-left: 28px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.about-buttons .btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.about-buttons .btn-secondary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Планшеты и средние экраны (992px и меньше) */
@media (max-width: 992px) {
    .about-block,
    .about-block-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .about-text {
        text-align: center;
        padding: 0 !important;
    }

    .about-image img {
        height: 350px !important;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .about-quote {
        text-align: left;
        max-width: 90%;
        margin: 0 auto 25px auto;
        padding-left: 25px;
    }

    .about-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Мобильные устройства (768px и меньше) */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image img {
        height: 280px !important;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-heading {
        font-size: 1.3rem !important;
    }

    .about-description,
    .about-conclusion {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    .about-quote {
        font-size: 0.9rem !important;
        padding-left: 20px;
        margin: 0 auto 25px auto;
        max-width: 90%;
        text-align: left;
    }

    .about-buttons .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .about-buttons .btn-secondary {
        width: 80%;
        text-align: center;
        display: inline-block;
    }
}

/* Маленькие мобильные устройства (480px и меньше) */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image img {
        height: 220px !important;
    }

    .about-title {
        font-size: 1.4rem;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
    }

    .about-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .about-quote {
        font-size: 0.85rem !important;
        padding-left: 15px;
        margin: 0 auto 20px auto;
        max-width: 95%;
    }

    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .about-buttons .btn {
        width: 80%;
    }

    .about-buttons .btn-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== СЕКЦИЯ "ПОЧЕМУ МЫ" ===== */
.why-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.section-title span {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card-content {
    padding: 25px;
    text-align: center;
}

.why-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-card-content ul li {
    margin-bottom: 12px;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.why-card-content ul li span {
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.why-footer-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    margin: 20px auto 0;
}

@media (max-width: 992px) {
    .why-section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .why-grid { gap: 20px; }
    .why-card-content { padding: 20px; }
    .why-card-content h3 { font-size: 1.2rem; margin-bottom: 15px; }
    .why-card-content ul li { font-size: 0.8rem; gap: 8px; }
}

@media (max-width: 768px) {
    .why-section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.9rem; padding: 0 15px; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 10px; }
    .why-card-content { padding: 18px; }
    .why-card-content h3 { font-size: 1.1rem; margin-bottom: 12px; }
    .why-card-content ul li { font-size: 0.75rem; margin-bottom: 8px; gap: 6px; }
}

@media (max-width: 480px) {
    .why-section { padding: 40px 0; }
    .section-title { font-size: 1.4rem; }
    .why-card-content { padding: 15px; }
    .why-card-content h3 { font-size: 1rem; }
    .why-card-content ul li { font-size: 0.7rem; margin-bottom: 6px; }
}

/* ===== СЕКЦИЯ "НАШИ ПРОЕКТЫ" ===== */
.works-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.works-header { text-align: center; margin-bottom: 60px; }
.works-title { font-size: 3rem; font-weight: 800; color: #000; margin-bottom: 20px; }

.works-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.works-tab {
    padding: 12px 32px;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}
.works-tab.active { background: #000; color: #fff; border-color: #000; }
.works-tab:hover:not(.active) { border-color: #000; background: #f5f5f5; }

.works-grid { display: none; }
.works-grid.active { display: block; }

.works-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.works-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.works-carousel { display: flex; transition: transform 0.5s ease; }
.works-slide { flex: 0 0 100%; min-width: 100%; }
.works-slide-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px;
    background: #fff;
}
.works-slide-content.reverse { flex-direction: row-reverse; }
.works-slide-text { flex: 1; }
.works-slide-text h3 { font-size: 1.8rem; font-weight: 700; color: #000; margin-bottom: 20px; }
.works-slide-text p { font-size: 1rem; line-height: 1.6; color: #555; margin-bottom: 20px; }
.works-slide-image { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.works-slide-image img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.3s ease; }
.works-slide-image:hover img { transform: scale(1.02); }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-nav:hover { background: #333; transform: translateY(-50%) scale(1.1); }
.carousel-nav.prev { left: 15px; }
.carousel-nav.next { right: 15px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active { background: #000; width: 30px; border-radius: 5px; }

@media (max-width: 992px) {
    .works-tabs { flex-wrap: wrap; gap: 12px; }
    .works-tab { padding: 8px 20px; font-size: 0.9rem; }
    .works-slide-content { flex-direction: column; padding: 30px; text-align: center; }
    .works-slide-content.reverse { flex-direction: column; }
    .works-slide-text h3 { font-size: 1.4rem; }
    .works-slide-image img { height: 250px; }
    .carousel-nav { width: 30px; height: 30px; font-size: 14px; }
}

@media (max-width: 768px) {
    .works-section { padding: 60px 0; }
    .works-title { font-size: 1.8rem; }
    .works-tab { padding: 6px 16px; font-size: 0.85rem; }
    .works-slide-content { padding: 20px; }
    .works-slide-text h3 { font-size: 1.2rem; }
    .works-slide-text p { font-size: 0.85rem; }
    .works-slide-image img { height: 200px; }
    .carousel-nav.prev { left: 5px; }
    .carousel-nav.next { right: 5px; }
}

@media (max-width: 480px) {
    .works-tabs { gap: 8px; }
    .works-tab { padding: 5px 12px; font-size: 0.75rem; }
    .works-slide-content { padding: 15px; }
    .works-slide-text h3 { font-size: 1rem; }
    .works-slide-image img { height: 160px; }
    .carousel-dot { width: 8px; height: 8px; }
    .carousel-dot.active { width: 20px; }
}

/* ===== ГАЛЕРЕЯ МАСТЕРСКОЙ ===== */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.gallery-arrow.left { left: -20px; }
.gallery-arrow.right { right: -20px; }
.gallery-arrow:hover { background: #333; transform: translateY(-50%) scale(1.1); }

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-dot.active { background: #000; transform: scale(1.2); }

.gallery-slide { flex: 0 0 100%; position: relative; }
.gallery-slide img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-slide:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
    .gallery-arrow { width: 35px !important; height: 35px !important; font-size: 18px !important; }
    .gallery-arrow.left { left: 5px !important; }
    .gallery-arrow.right { right: 5px !important; }
    .gallery-slide img { height: 350px !important; }
    .gallery-dot { width: 8px; height: 8px; }
}

@media (max-width: 480px) {
    .gallery-slide img { height: 250px !important; }
}

/* ===== СЕКЦИЯ УСЛУГ ===== */
.services-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.calc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.calc-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.calc-column {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
}

.calc-column-header {
    background: #000;
    color: #fff;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 700;
}

.calc-column-body {
    padding: 15px;
    max-height: 620px;
    overflow-y: auto;
}

.calc-category {
    margin-bottom: 8px;
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    overflow: hidden;
}

.calc-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: #222;
}

.calc-category-title.open {
    background: #eef0f2;
    border-bottom: 1.5px solid #e0e0e0;
}

.calc-acc-icon {
    font-size: 0.7rem;
    color: #888;
    transition: transform 0.3s ease;
}

.calc-category-title.open .calc-acc-icon {
    transform: rotate(180deg);
}

.calc-category-body {
    padding: 10px;
    display: none;
    background: #fff;
}

.calc-category-body.open {
    display: block;
    animation: calcSlideDown 0.25s ease;
}

@keyframes calcSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid #efefef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 6px;
}

.calc-service-item:last-child {
    margin-bottom: 0;
}

.calc-service-item:hover {
    border-color: #aaa;
    background: #fafafa;
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.calc-service-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.calc-service-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ddd;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: transparent;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-weight: 800;
}

.calc-service-item.selected {
    background: #000;
    border-color: #000;
    transform: translateX(2px);
    animation: selectPulse 0.3s ease;
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.calc-service-item.selected .calc-service-check {
    background: #fff;
    border-color: #fff;
    color: #000;
    animation: checkPop 0.2s ease;
}

@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.calc-service-item.selected .calc-service-name {
    color: #fff;
}

.calc-service-item.selected .calc-service-desc {
    color: rgba(255, 255, 255, 0.65);
}

.calc-service-item.selected .calc-service-price {
    color: #fff;
}

.calc-service-name-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.calc-service-name {
    font-size: 0.85rem;
    color: #222;
    font-weight: 500;
    line-height: 1.3;
}

.calc-service-desc {
    font-size: 0.73rem;
    color: #888;
    line-height: 1.3;
}

.calc-service-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

.total-container {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.total-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.total-label {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
}

.total-price {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.total-price.update {
    animation: priceUpdate 0.3s ease;
}

@keyframes priceUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #4caf50; }
    100% { transform: scale(1); }
}

.total-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.total-buttons .btn {
    padding: 12px 32px;
    font-size: 1rem;
    min-width: 180px;
}

.total-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .calc-columns { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
    .calc-column-body { max-height: 450px; }
}

@media (max-width: 768px) {
    .services-section { padding: 40px 0; }
    .section-title { font-size: 1.8rem; }
    .total-label { font-size: 1.1rem; }
    .total-price { font-size: 2.2rem; }
    .total-buttons .btn { padding: 10px 24px; font-size: 0.9rem; min-width: 150px; }
}

@media (max-width: 480px) {
    .total-wrapper { flex-direction: column; align-items: center; gap: 5px; }
    .total-label { font-size: 1rem; }
    .total-price { font-size: 1.8rem; }
    .total-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .total-buttons .btn { width: 100%; max-width: 250px; }
}

/* ===== СЕКЦИЯ КОНТАКТОВ ===== */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
}

.divider {
    border-top: 2px solid #f0f0f0;
    margin: 20px 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: #000;
    font-size: 1.2rem;
}

.contact-item:hover .contact-icon {
    background: #000;
}

.contact-item:hover .contact-icon i {
    color: #fff;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 4px;
}

.contact-value {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    word-break: break-all;
}

.contact-value:hover {
    color: #000;
}

.social-section {
    margin: 10px 0 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: #f5f5f5;
    border-radius: 50px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.social-link i {
    font-size: 1.1rem;
}

.social-link.telegram:hover {
    background: #0088cc;
    color: #fff;
    transform: translateY(-2px);
}

.social-link.vk:hover {
    background: #4a76a8;
    color: #fff;
    transform: translateY(-2px);
}

.social-link.max:hover {
    background: linear-gradient(135deg, #4a76a8, #9b59b6);
    border-color: #9b59b6;
    color: #fff;
    transform: translateY(-2px);
}

.social-link.email:hover {
    background: #ea4335;
    border-color: #ea4335;
    color: #fff;
    transform: translateY(-2px);
}

.free-delivery {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    margin-top: 25px;
    border: 1px solid #e0e0e0;
}

.free-delivery i {
    margin-right: 8px;
    color: #4caf50;
}

@media (max-width: 992px) {
    .contact-card { padding: 35px; }
}

@media (max-width: 768px) {
    .contact-section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; margin-bottom: 30px; }
    .contact-card { padding: 25px 20px; }
    .card-title { font-size: 1.4rem; margin-bottom: 20px; }
    .section-subtitle { font-size: 1.2rem; margin-bottom: 15px; }
    .contact-icon { width: 40px; height: 40px; }
    .contact-icon i { font-size: 1rem; }
    .contact-value { font-size: 0.9rem; }
    .contact-label { font-size: 0.75rem; }
    .social-links { gap: 12px; }
    .social-link { padding: 10px 16px; font-size: 0.85rem; min-width: 100px; }
    .free-delivery { font-size: 0.8rem; padding: 12px 16px; }
}

@media (max-width: 480px) {
    .contact-section { padding: 40px 0; }
    .section-title { font-size: 1.5rem; margin-bottom: 25px; }
    .contact-card { padding: 20px 15px; }
    .card-title { font-size: 1.2rem; margin-bottom: 15px; padding-bottom: 10px; }
    .section-subtitle { font-size: 1rem; margin-bottom: 12px; }
    .contact-item { gap: 12px; }
    .contact-icon { width: 35px; height: 35px; }
    .contact-icon i { font-size: 0.9rem; }
    .contact-value { font-size: 0.85rem; }
    .contact-label { font-size: 0.7rem; }
    .divider { margin: 15px 0; }
    .social-links { flex-direction: column; gap: 10px; }
    .social-link { width: 100%; padding: 10px 14px; font-size: 0.8rem; }
    .free-delivery { font-size: 0.75rem; padding: 10px 12px; margin-top: 20px; }
}

/* ===== ПОДВАЛ ===== */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.sponsor-item {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sponsor-item:hover { transform: translateY(-5px); }
.sponsor-item img { max-width: 120px; max-height: 70px; object-fit: contain; display: block; }

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-link-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    /* Убираем border-top - белую линию */
    border-top: none;
    color: rgba(255, 255, 255, 0.5);
}

/* Убираем линию также в мобильной версии */
@media (max-width: 768px) {
    .footer { padding: 40px 0 20px; }
    .sponsors-grid { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .sponsor-item { width: 100px; }
    .footer-links { flex-direction: column; gap: 10px; margin: 25px 0 15px; }
    .footer-link-separator { display: none; }
    .footer-link { font-size: 0.75rem; padding: 5px 0; }
    .footer-bottom {
        padding-top: 30px;
        border-top: none; /* Убираем линию и на мобилках */
    }
    .footer-bottom p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .sponsor-item { width: 80px; }
    .sponsor-item img { max-height: 30px; }
    .footer-bottom {
        padding-top: 20px;
        border-top: none;
    }
}


/* ===== COOKIE БАННЕР ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0a0a0a;
    color: #fff;
    padding: 0;
    z-index: 100000;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    max-width: 380px;
    width: calc(100% - 48px);
    transform: translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: 'Inter', sans-serif;
}

.cookie-banner.show { transform: translateX(0); }
.cookie-banner-content { padding: 22px 24px; }
.cookie-banner-text strong { font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 8px; color: #fff; }
.cookie-banner-text p { font-size: 0.8rem; margin: 0; color: rgba(255,255,255,0.65); line-height: 1.5; }
.cookie-banner-buttons { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-accept { background: #fff; color: #0a0a0a; }
.cookie-accept:hover { background: #e8e8e8; transform: translateY(-2px); }
.cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-decline:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.cookie-link { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.75rem; transition: color 0.2s ease; }
.cookie-link:hover { color: #fff; }

@media (max-width: 640px) {
    .cookie-banner { left: 15px; right: 15px; bottom: 15px; width: auto; max-width: none; }
    .cookie-banner-content { padding: 15px 18px; }
    .cookie-banner-text strong { font-size: 0.85rem; }
    .cookie-banner-text p { font-size: 0.7rem; }
    .cookie-btn { padding: 8px 16px; font-size: 0.7rem; }
}

/* ===== ПРЕЛОАДЕР ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; max-width: 400px; width: 90%; padding: 20px; }
.preloader-video { width: 100%; max-width: 200px; height: auto; margin: 0 auto 20px; border-radius: 20px; }
.preloader-text {
    font-size: 1rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ===== СТРАНИЦА ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ ===== */
.privacy-section {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.privacy-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.privacy-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.update-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.privacy-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
    padding-bottom: 5px;
}

.privacy-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin: 10px 0 20px 25px;
}

.privacy-content ul li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-content a {
    color: #000;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #333;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.privacy-footer p {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .privacy-section { padding: 100px 0 50px; }
    .privacy-card { padding: 30px 20px; }
    .privacy-card h1 { font-size: 1.6rem; }
    .privacy-content h2 { font-size: 1.1rem; }
    .privacy-content p, .privacy-content ul li { font-size: 0.9rem; }
}

/* ===== БАЗОВЫЕ КЛАССЫ ДЛЯ АНИМАЦИИ ПРИ СКРОЛЛЕ ===== */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-up.visible,
.scroll-fade-left.visible,
.scroll-fade-right.visible,
.scroll-zoom.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== КНОПКА С ЭФФЕКТОМ ПУЛЬСАЦИИ ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-3px);
    letter-spacing: 1px;
}

/* ===== ПРОДВИНУТЫЙ 3D ЭФФЕКТ ===== */
.why-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.why-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.why-card:hover::after {
    left: 100%;
}

/* 3D эффект для слайдера работ */
.works-slide-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.works-slide-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Анимация для стрелок навигации */
.gallery-arrow {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}