/* ========== ОБЩИЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FCF9F5;
    color: #1E1E1E;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

h2 span {
    background: linear-gradient(135deg, #E65020, #F3A119);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #E65020, #F3A119, transparent);
    border-radius: 2px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* ========== ШАПКА ========== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 80, 32, 0.1);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.logo img:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* ========== МЕНЮ ========== */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E65020, #F3A119);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    border: 1px solid rgba(230, 80, 32, 0.1);
}

.dropdown-align-right {
    left: auto !important;
    right: 0 !important;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: #1E1E1E;
    transition: all 0.3s;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(230, 80, 32, 0.05);
    color: #E65020;
    padding-left: 28px;
}

.dropdown-item::before {
    content: '→';
    position: absolute;
    left: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    color: #E65020;
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* ========== КОНТАКТЫ В ШАПКЕ ========== */
.contacts-header {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: white;
    border-radius: 40px;
    border: 1px solid rgba(230, 80, 32, 0.15);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #1E1E1E;
    white-space: nowrap;
}

.contact-badge:hover {
    border-color: #E65020;
    box-shadow: 0 8px 25px rgba(230, 80, 32, 0.1);
}

.contact-badge span {
    color: #E65020;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .contact-badge:last-child {
        display: none;
    }
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #E65020, #F3A119);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 100px 30px 30px;
    transition: left 0.3s ease;
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #E65020;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-nav-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(230, 80, 32, 0.1);
    padding-bottom: 15px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E1E1E;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

.mobile-nav-link::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #E65020;
    transition: transform 0.3s;
}

.mobile-nav-link.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown {
    display: none;
    margin-left: 15px;
    margin-top: 10px;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 1px dashed rgba(230, 80, 32, 0.1);
    font-size: 1rem;
    transition: all 0.3s;
}

.mobile-dropdown-item:hover {
    color: #E65020;
    padding-left: 10px;
}

.mobile-contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(230, 80, 32, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contacts a {
    color: #1E1E1E;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-contacts a:hover {
    color: #E65020;
}

/* ========== ГЕРОЙ ========== */
.hero {
    padding: 60px 0 40px 0;
    background: radial-gradient(circle at 100% 0%, rgba(243, 161, 25, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(230, 80, 32, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.hero-content-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-description {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin: 20px 0 25px 0;
    border-left: 3px solid #F3A119;
    padding-left: 25px;
    line-height: 1.5;
}

.hero-btn {
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 0 20px 0;
    display: inline-block;
    width: fit-content;
}

.hero-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 80, 32, 0.3);
}

.hero-carousel {
    width: 100%;
    margin-top: -20px;
}

/* ========== КАРУСЕЛЬ ========== */
/* ========== КАРУСЕЛЬ ========== */
.projects-carousel {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 40px 70px rgba(230, 80, 32, 0.1);
    position: relative;
    height: 420px;
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Точки карусели скрыты */
.carousel-dots {
    display: none;
}

/* ========== СТАТИСТИКА ========== */
.hero-stats-full {
    width: 100%;
    background: linear-gradient(135deg, rgba(230, 80, 32, 0.03), rgba(243, 161, 25, 0.03));
    border-radius: 60px;
    padding: 40px 60px;
    margin-top: 60px;
    border: 1px solid rgba(230, 80, 32, 0.1);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-large {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E65020, #F3A119);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .hero-stats-full {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }

    .stat-label-large {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .hero-stats-full {
        padding: 30px 20px;
    }

    .projects-carousel {
        height: 320px;
    }
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(230, 80, 32, 0.1);
    transition: all 0.4s;
    text-decoration: none;
    color: #1E1E1E;
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E65020, #F3A119);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(230, 80, 32, 0.1);
    border-color: rgba(230, 80, 32, 0.2);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ========== КАЛЬКУЛЯТОР ========== */
.calculator-section {
    background: #FFF9F4;
}

.calculator {
    background: white;
    border-radius: 50px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(230, 80, 32, 0.1);
    border: 1px solid rgba(243, 161, 25, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .calculator {
        padding: 30px 20px;
        border-radius: 40px;
    }
}

.calculator h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #E65020, #F3A119);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-group {
    margin-bottom: 25px;
}

.calc-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1E1E1E;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.calc-option {
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 10px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.calc-option:hover {
    background: #FFF0E8;
    border-color: #E65020;
}

.calc-option.active {
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    border-color: #E65020;
}

.complexity-group {
    transition: all 0.3s ease;
}

.complexity-group.hidden {
    display: none;
}

.calc-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #F0F0F0;
    outline: none;
    -webkit-appearance: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E65020, #F3A119);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(230, 80, 32, 0.3);
}

.calc-result {
    background: linear-gradient(135deg, rgba(230, 80, 32, 0.05), rgba(243, 161, 25, 0.05));
    padding: 25px;
    border-radius: 40px;
    text-align: center;
    margin-top: 30px;
}

.calc-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #E65020;
    line-height: 1.2;
    margin-bottom: 20px;
}

.calc-btn {
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.calc-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 80, 32, 0.3);
}

/* ========== НАШИ УСЛУГИ ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E65020;
    margin: 15px 0;
}

/* ========== ФУТЕР ========== */
.footer {
    background: #FFFFFF;
    color: #1E1E1E;
    padding: 60px 0 30px;
    border-radius: 60px 60px 0 0;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid rgba(230, 80, 32, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E65020, #F3A119, #E65020, transparent);
    border-radius: 3px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #E65020;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #E65020, #F3A119);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #E65020;
    padding-left: 8px;
}

.footer-contact-btn {
    background: none;
    border: none;
    color: #E65020;
    cursor: pointer;
    padding: 5px 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-contact-btn:hover {
    color: #F3A119;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(230, 80, 32, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

/* Реквизиты в футере */
.footer-requisites {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(230, 80, 32, 0.1);
}

.footer-requisites span {
    color: #888;
    font-size: 0.85rem;
}

/* ========== МОДАЛЬНОЕ ОКНО ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 50px;
    border-radius: 50px;
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 50px 100px rgba(230, 80, 32, 0.2);
    opacity: 0;
    transition: all 0.3s;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.modal-close:hover {
    background: #f0f0f0;
    color: #E65020;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #E65020;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #E65020;
    box-shadow: 0 0 0 3px rgba(230, 80, 32, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-status {
    padding: 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 80, 32, 0.3);
}

.form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    margin-left: 10px;
    font-size: 1.2rem;
}

.contact-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #E65020, #F3A119);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 80, 32, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    z-index: 999;
}

.contact-fab:hover {
    width: 180px;
    box-shadow: 0 15px 40px rgba(230, 80, 32, 0.5);
}

.fab-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-fab:hover .fab-text {
    opacity: 1;
}

.contact-btn {
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 80, 32, 0.3);
}

@media (max-width: 568px) {
    .modal {
        padding: 30px 20px;
        border-radius: 40px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .contact-fab {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-fab:hover {
        width: 50px;
    }

    .fab-text {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .contacts-header {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (max-width: 568px) {
    .contacts-header {
        display: none;
    }

    .mobile-menu-toggle {
        margin-left: auto;
    }
}


/* ========== ФУТЕР С НАВИГАЦИЕЙ СПРАВА ========== */
.footer {
    background: #FFFFFF;
    color: #1E1E1E;
    padding: 60px 0 30px;
    border-radius: 60px 60px 0 0;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid rgba(230, 80, 32, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E65020, #F3A119, #E65020, transparent);
    border-radius: 3px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col:first-child {
    flex: 2;
}

.footer-col:last-child {
    flex: 1;
    text-align: right;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col p {
    max-width: 300px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #E65020;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #E65020, #F3A119);
}

.footer-col:last-child h4::after {
    left: auto;
    right: 0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #E65020;
    padding-right: 8px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(230, 80, 32, 0.1);
    text-align: center;
    gap: 12px;
}

.footer-requisites span {
    color: #888;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-col:last-child {
        text-align: center;
    }

    .footer-col:last-child h4::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .footer-col p {
        max-width: 100%;
    }
}

/* ========== КАРУСЕЛЬ КОМАНДЫ - ПОЛНЫЕ СТИЛИ ========== */
.carousel-wrapper {
    position: relative;
    padding: 0 30px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.team-carousel-card {
    flex-shrink: 0;
    background: #FCF9F5;
    border-radius: 40px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(230, 80, 32, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.team-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 80, 32, 0.1);
    border-color: rgba(230, 80, 32, 0.3);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #E65020, #F3A119);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-carousel-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1E1E1E;
}

.team-position {
    color: #E65020;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* СТРЕЛКИ - ЖИРНЫЕ И ПО ЦЕНТРУ */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E65020;
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    color: #E65020;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #E65020, #F3A119);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 80, 32, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
    .team-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .carousel-wrapper {
        padding: 0 15px;
    }
    .team-photo {
        width: 100px;
        height: 100px;
    }
    .team-carousel-card {
        padding: 20px 15px;
    }
    .team-carousel-card h4 {
        font-size: 1rem;
    }
    .team-position {
        font-size: 0.8rem;
    }
}