* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(149, 180, 21, 0.3);
    transition: all 0.3s;
}

header.scrolled {
    padding: 15px 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    padding: 8px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.lang-btn:hover {
    border-color: #95B415;
    background: rgba(149, 180, 21, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    border-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #95B415;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.language-switcher-desktop {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher-mobile {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

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

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

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

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .language-switcher-desktop {
        display: none;
    }

    .language-switcher-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid rgba(149, 180, 21, 0.3);
        margin-top: auto;
        gap: 10px;
    }

    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0px 40px 40px;
        gap: 0;
        transition: right 0.4s ease-in-out;
        border-left: 1px solid rgba(149, 180, 21, 0.3);
        justify-content: flex-start;
    }

    .nav-center.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 30px;
        direction: rtl;
    }

    .nav-links a {
        font-size: 24px;
        padding: 10px 0;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5% 50px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 180, 21, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 145, 19, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(149, 180, 21, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(149, 180, 21, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #95B415;
    background: rgba(149, 180, 21, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services {
    padding: 100px 5%;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(149, 180, 21, 0.1) 0%, rgba(214, 145, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #95B415;
    box-shadow: 0 20px 60px rgba(149, 180, 21, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-btn {
    margin-top: 20px;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(149, 180, 21, 0.5);
    color: #95B415;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-btn:hover {
    background: rgba(149, 180, 21, 0.2);
    border-color: #95B415;
    transform: translateX(5px);
}

.projects {
    padding: 100px 5%;
    background: #000000;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: #95B415;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    border-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #95B415;
    box-shadow: 0 20px 60px rgba(149, 180, 21, 0.3);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    display: block;
    /* Убедитесь, что изображение ведет себя как блок */
    width: 100%;
    /* Занимает всю ширину родительского контейнера */
    height: 100%;
    /* Занимает всю высоту родительского контейнера */

    /* Ключевое свойство для "Fit" (Вписать): 
       Масштабирует изображение, чтобы оно полностью поместилось в контейнере, 
       сохраняя пропорции (могут остаться пустые места). */
    object-fit: contain;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(149, 180, 21, 0.2) 0%, rgba(214, 145, 19, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    object-fit: contain;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-info {
    padding: 30px;
}

.project-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(149, 180, 21, 0.2);
    color: #95B415;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 11px;
    color: #b0b0b0;
}

.team {
    padding: 100px 5%;
    background: #0a0a0a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #95B415;
    box-shadow: 0 20px 60px rgba(149, 180, 21, 0.3);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.team-avatar img {
    display: block;
    /* Убедитесь, что изображение ведет себя как блок */
    width: 100%;
    /* Занимает всю ширину родительского контейнера */
    height: 100%;
    /* Занимает всю высоту родительского контейнера */

    /* Ключевое свойство для "Fit" (Вписать): 
       Масштабирует изображение, чтобы оно полностью поместилось в контейнере, 
       сохраняя пропорции (могут остаться пустые места). */
    object-fit: contain;
}

.team-avatar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.team-member:hover .team-avatar::before {
    transform: translateX(100%);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-role {
    color: #95B415;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.team-social a:hover {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    transform: translateY(-3px);
}

.testimonials {
    padding: 100px 5%;
    background: #000000;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

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

.testimonial-card {
    min-width: 100%;
    padding: 60px;
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -30px;
    left: -10px;
    color: #95B415;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: #95B415;
}

.author-company {
    font-size: 14px;
    color: #b0b0b0;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
    font-size: 24px;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.slider-dot.active {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    width: 40px;
    border-radius: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid rgba(149, 180, 21, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #95B415;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

.about {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: #95B415;
    box-shadow: 0 10px 30px rgba(149, 180, 21, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #b0b0b0;
    margin-top: 10px;
}

.contact {
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #95B415;
    box-shadow: 0 0 20px rgba(149, 180, 21, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    animation: slideDown 0.5s ease-out;
}

.success-message.active {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(149, 180, 21, 0.5);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.5s ease-out;
}

.notification.show {
    transform: translateX(0);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #95B415;
    background: rgba(149, 180, 21, 0.1);
    transform: rotate(90deg);
}

.modal h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.modal p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-features {
    list-style: none;
    margin: 20px 0;
}

.modal-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.modal-features li:before {
    content: '✓';
    color: #95B415;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .slider-arrow {
        display: none;
    }

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

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

    .nav-links {
        width: 100%;
        padding: 70px 30px;
        direction: rtl;
    }

    .language-switcher {
        gap: 5px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ==========================================================================
   БЛОК ПРОЦЕСС (PROCESS)
   ========================================================================== */
.process {
    padding: 100px 5%;
    background: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #95B415;
    transform: translateY(-5px);
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(149, 180, 21, 0.2) 0%, rgba(214, 145, 19, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   БЛОК FAQ
   ========================================================================== */
.faq {
    padding: 100px 5%;
    background: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-question i {
    transition: transform 0.3s;
    color: #95B415;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: #b0b0b0;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(149, 180, 21, 0.5);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ==========================================================================
   ОБНОВЛЕННЫЙ ПРЕМИУМ-ФУТЕР
   ========================================================================== */
footer {
    background: #000000;
    position: relative;
    padding: 100px 5% 40px;
    border-top: 1px solid rgba(149, 180, 21, 0.2);
    overflow: hidden;
}

/* Декоративное свечение в футере */
footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(149, 180, 21, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* 1. Колонка с брендом */
.footer-info .footer-logo {
    margin-bottom: 25px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(149, 180, 21, 0.3);
}

/* 2. Колонки навигации */
.footer-links h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #95B415;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #95B415;
    transform: translateX(5px);
}

/* 3. Колонка с контактами и рассылкой */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.footer-contact-item i {
    color: #95B415;
    font-size: 20px;
}

.footer-newsletter h4 {
    margin-top: 40px;
}

.newsletter-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    flex: 1;
    font-size: 14px;
}

.newsletter-btn {
    padding: 12px;
    background: #95B415;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #D69113;
}

/* 4. Нижняя панель (Copyright) */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
ПЛАВАЮЩИЕ КНОПКИ (FLOATING ACTIONS)
========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp {
    background: #25D366;
}

.scroll-top {
    background: linear-gradient(135deg, #95B415 0%, #D69113 100%);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
