* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Статичная шапка как часть hero */
.header {
    background: transparent;
    color: white;
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 10;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-quick {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-quick {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-quick:hover {
    color: var(--accent-color);
}

.messengers-quick {
    display: flex;
    gap: 0.5rem;
}

.messenger-quick {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.messenger-quick:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.header-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Плавающая навигационная капсула */
/* Классическое горизонтальное меню */
.main-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    transform: translateY(-100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-navigation.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-logo {
    width: 110px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu-item {
    position: relative;
}

.nav-menu-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-menu-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu-item.active .nav-menu-link {
    color: #353535;
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.nav-menu-item.active .nav-menu-link::before {
    opacity: 1;
    transform: scale(1);
}

/* Компактный телефон в навигации */
.nav-phone-compact {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-phone-compact:hover {
    color: var(--secondary-color);
}

.nav-phone-compact i {
    font-size: 0.8rem;
    animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-color);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-items {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-menu-item {
    margin: 0;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-item.active .mobile-menu-link {
    background: rgba(251, 191, 36, 0.1);
    border-left-color: var(--accent-color);
    color: var(--accent-color);
}

/* Красивое горизонтальное меню в header */
.header .mobile-menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin: 0;
}

.header .mobile-menu-item {
    margin: 0;
}

.header .mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    border: none;
    border-left: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header .mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: -1;
}

.header .mobile-menu-link:hover {
    color: white;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.header .mobile-menu-link:hover::before {
    opacity: 1;
}

.header .mobile-menu-item.active .mobile-menu-link {
    color: white;
    background: var(--accent-gradient);
    box-shadow:
        0 4px 12px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
}

.header .mobile-menu-item.active .mobile-menu-link::before {
    opacity: 1;
}

.nav-item.active .nav-link {
    color: white;
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow:
        0 8px 20px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-item.active .nav-link::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item.active .nav-link i {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-link:hover {
    color: white;
    transform: scale(1.08);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow:
        0 6px 18px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-link:hover::before {
    opacity: 0.8;
    transform: scale(1);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.nav-link:active {
    transform: scale(1.02);
    transition: all 0.1s ease;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow:
        0 0 10px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Адаптивность навигации */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-logo {
        width: 150px;
    }

    /* Компактный телефон на планшетах */
    .nav-phone-compact {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.4rem;
    }

    .nav-phone-compact span {
        display: none;
    }

    .nav-phone-compact i {
        font-size: 1rem;
    }

    /* Адаптивные стили для горизонтального меню в header */
    .header .mobile-menu-items {
        padding: 0.4rem 0.8rem;
        margin: 1rem 0;
    }

    .header .mobile-menu-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}



.cta-button {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Главный баннер */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #0f172a 100%);
    color: white;
    padding: 0 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center;
    background-size: cover;
    opacity: 0.15;
    mask: linear-gradient(90deg, transparent 0%, black 50%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    color: var(--soft-gray);
    font-weight: 400;
}

/* Value Props */
.hero-value-props {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    flex: 1;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #353535;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.value-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Компактная статистика */
.hero-stats-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.compact-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
}

.compact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.compact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-separator {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.hero-main-button {
    background: var(--accent-gradient);
    color: #353535;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-main-button:hover::before {
    left: 100%;
}

.hero-main-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

.hero-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta-note i {
    color: var(--accent-color);
}

/* Секции */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    color: var(--soft-blue);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

#services .section-title {
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Услуги */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #353535;
    margin-bottom: 20px;
    position: relative;
    box-shadow:
        0 10px 20px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* CTA карточка в сетке услуг */
.service-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.3),
        0 10px 20px rgba(30, 64, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.service-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.service-cta-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.4),
        0 20px 40px rgba(30, 64, 175, 0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #353535;
    margin-bottom: 20px;
    box-shadow:
        0 10px 20px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    margin-bottom: 2rem;
}

.inline-contact-form {
    margin-bottom: 2rem;
}

.inline-form-group {
    margin-bottom: 1rem;
}

.inline-form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.inline-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.inline-form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.inline-form-input option {
    background: var(--primary-color);
    color: white;
}

.inline-cta-button {
    width: 100%;
    background: var(--accent-gradient);
    color: #353535;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.inline-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.inline-cta-button:hover::before {
    left: 100%;
}

.inline-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.inline-cta-button i {
    margin-right: 0.5rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-benefit i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Обновленная промо секция */
.updated-promo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.promo-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

.promo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Левая часть с контентом */
.promo-content-left {
    padding: 2rem 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: #353535;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.updated-promo-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.title-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.updated-promo-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Ключевые особенности */
.promo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.promo-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(251, 191, 36, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #353535;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Новая современная инфографика */
.promo-infographic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modern-infographic {
    position: relative;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(251, 191, 36, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

/* Центральный элемент */
.infographic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--accent-gradient);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow:
        0 15px 40px rgba(251, 191, 36, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.infographic-center:hover {
    transform: translate(-50%, -50%) scale(1.05) rotate(-2deg);
    box-shadow:
        0 20px 50px rgba(251, 191, 36, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.center-icon {
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.center-text {
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Статистические карточки */
.stat-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stat-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
    text-align: center;
    min-width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: scale(1.1) rotate(2deg);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

.stat-card-1 {
    top: 40px;
    left: 60px;
    animation: float 6s ease-in-out infinite;
}

.stat-card-2 {
    top: 40px;
    right: 60px;
    animation: float 6s ease-in-out infinite 2s;
}

.stat-card-3 {
    bottom: 40px;
    left: 60px;
    animation: float 6s ease-in-out infinite 4s;
}

.stat-card-4 {
    bottom: 40px;
    right: 60px;
    animation: float 6s ease-in-out infinite 1s;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Декоративные элементы */
.infographic-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.1;
}

.decoration-1 {
    top: 20%;
    left: 20%;
    width: 30px;
    height: 30px;
    animation: pulse 4s ease-in-out infinite;
}

.decoration-2 {
    top: 30%;
    right: 15%;
    width: 20px;
    height: 20px;
    animation: pulse 4s ease-in-out infinite 1s;
}

.decoration-3 {
    bottom: 25%;
    left: 15%;
    width: 25px;
    height: 25px;
    animation: pulse 4s ease-in-out infinite 2s;
}

.decoration-4 {
    bottom: 35%;
    right: 25%;
    width: 35px;
    height: 35px;
    animation: pulse 4s ease-in-out infinite 3s;
}

/* Соединительные линии */
.connection-paths {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.connection-path {
    position: absolute;
    background: linear-gradient(45deg,
            rgba(251, 191, 36, 0.3) 0%,
            rgba(30, 64, 175, 0.2) 50%,
            rgba(251, 191, 36, 0.3) 100%);
    border-radius: 2px;
    height: 2px;
}

.path-1 {
    top: 45%;
    left: 20%;
    width: 25%;
    transform: rotate(35deg);
    animation: pathPulse 3s ease-in-out infinite;
}

.path-2 {
    top: 45%;
    right: 20%;
    width: 25%;
    transform: rotate(-35deg);
    animation: pathPulse 3s ease-in-out infinite 1s;
}

.path-3 {
    bottom: 45%;
    left: 20%;
    width: 25%;
    transform: rotate(-35deg);
    animation: pathPulse 3s ease-in-out infinite 2s;
}

.path-4 {
    bottom: 45%;
    right: 20%;
    width: 25%;
    transform: rotate(35deg);
    animation: pathPulse 3s ease-in-out infinite 0.5s;
}

/* Анимации */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pathPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(var(--rotation, 0deg));
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(var(--rotation, 0deg));
    }
}

/* Преимущества */
.advantages {
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.advantages .container {
    position: relative;
    z-index: 2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #353535;
    margin: 0 0 20px;
    box-shadow:
        0 10px 20px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.advantage-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Компактная Bento Grid секция контактов */
.unified-contacts {
    background: var(--soft-gray);
    position: relative;
    padding: 4rem 0;
}

.contacts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.bento-contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Форма - занимает 2 колонки в первом ряду */
.bento-form {
    grid-column: 1 / 3;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.bento-form-header {
    margin-bottom: 2rem;
}

.bento-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bento-form-title i {
    color: var(--accent-color);
}

.bento-form-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.bento-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bento-form-group {
    margin-bottom: 1rem;
}

.bento-form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #f8fafc;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.bento-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.bento-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.bento-form-submit {
    background: var(--accent-gradient);
    color: #353535;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.bento-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Статус/время работы - справа от формы */
.bento-status {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.status-content {
    position: relative;
    z-index: 2;
}

.status-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.status-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Офисы - полная ширина во втором ряду */
.bento-offices {
    grid-column: 1 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bento-office {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bento-office:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(251, 191, 36, 0.2);
}

.office-header-compact {
    margin-bottom: 1.5rem;
}

.office-info {
    text-align: left;
}

.office-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--soft-gray);
}

.office-address-compact {
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin: 0;
}

.office-contacts-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.office-contact-compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.office-contact-compact i {
    width: 18px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.office-contact-compact a {
    color: var(--soft-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.office-contact-compact a:hover {
    color: var(--accent-color);
}

/* Быстрые контакты внизу каждого офиса */
.quick-contacts-compact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.quick-title-compact {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-methods-compact {
    display: flex;
    gap: 0.8rem;
}

.quick-method-compact {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.quick-method-compact.viber {
    background: rgb(128 111 247 / 99%);
    color: #c1bbe9;
}

.quick-method-compact.whatsapp {
    background: rgb(37 211 102 / 35%);
    color: #25d366;
}

.quick-method-compact.telegram {
    background: rgb(44 167 229 / 62%);
    color: #4cc3ff;
}

.quick-method-compact.phone {
    background: rgb(251 191 36 / 35%);
    color: var(--accent-color);
}

.quick-method-compact:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.quick-method-compact.viber:hover {
    background: #8775ff;
    color: white;
}

.quick-method-compact.whatsapp:hover {
    background: #25d366;
    color: white;
}

.quick-method-compact.telegram:hover {
    background: #25b6ff;
    color: white;
}

.quick-method-compact.phone:hover {
    background: var(--accent-color);
    color: white;
}

/* Футер */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 50px;
}

.footer-grid .fas {
    font-size: 12px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 0.5rem 0 0.2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Премиальное модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 64, 175, 0.75) 50%,
            rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%);
    margin: 8% auto;
    padding: 0;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(15, 23, 42, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(30px);
    overflow: hidden;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 30px 30px 0 0;
}

.modal-header {
    position: relative;
    padding: 2.5rem 3rem 1rem;
    background: linear-gradient(135deg,
            rgba(251, 191, 36, 0.05) 0%,
            rgba(30, 64, 175, 0.03) 100%);
    border-radius: 30px 30px 0 0;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(251, 191, 36, 0.3) 50%,
            transparent 100%);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    text-align: center;
    position: relative;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.modal-body {
    padding: 2rem 3rem 3rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form-group {
    position: relative;
}

.modal-form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.modal-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow:
        0 0 0 4px rgba(251, 191, 36, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(251, 191, 36, 0.15);
    transform: translateY(-2px);
}

.modal-form-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.modal-form-submit {
    background: var(--accent-gradient);
    color: white;
    padding: 1.3rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow:
        0 8px 25px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s;
}

.modal-form-submit:hover::before {
    left: 100%;
}

.modal-form-submit:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.modal-form-submit:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.modal-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.modal-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.modal-benefit i {
    color: var(--accent-color);
    font-size: 1rem;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.close:active {
    transform: scale(0.95) rotate(90deg);
}

/* Адаптивность модального окна */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        border-radius: 25px;
    }

    .modal-header {
        padding: 2rem 2rem 1rem;
    }

    .modal-body {
        padding: 1.5rem 2rem 2.5rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem 1.5rem 2rem;
    }

    .modal-form-input {
        padding: 1rem 1.2rem;
        font-size: 16px;
        /* Предотвращает зум на iOS */
    }

    .close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    
    .footer-grid {
        flex-direction: column;
        gap: 5px;
    }
    .inline-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-quick {
        justify-content: center;
    }

    .phone-quick {
        font-size: 0.9rem;
    }

    .hero {
        padding: 0 0 4rem;
        min-height: 100vh;
    }

    .header {
        padding: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-value-props {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats-compact {
        gap: 1rem;
    }
    .promo-feature {
        text-align: left;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    .compact-number {
        font-size: 1.7rem;
    }

    .compact-label {
        font-size: 0.75rem;
    }

    .promo-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .updated-promo-title {
        font-size: 2.8rem;
    }

    .modern-infographic {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .infographic-center {
        width: 120px;
        height: 120px;
    }

    .center-icon {
        font-size: 2.5rem;
    }

    .stat-card {
        padding: 1.2rem;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-card-1 {
        top: 30px;
        left: 40px;
    }

    .stat-card-2 {
        top: 30px;
        right: 40px;
    }

    .stat-card-3 {
        bottom: 30px;
        left: 40px;
    }

    .stat-card-4 {
        bottom: 30px;
        right: 40px;
    }

    .cta-benefits {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .bento-contacts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }

    .bento-form {
        grid-column: 1;
    }

    .bento-offices {
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bento-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contacts-title {
        font-size: 2.2rem;
    }

    .promo-title {
        font-size: 2.5rem;
    }

    .promo-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .service-card,
    .service-cta-card {
        padding: 2rem;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .inline-form-input {
        font-size: 16px;
        /* Предотвращает зум на iOS */
    }

    /* Адаптивные стили для очень маленьких экранов */
    .header .mobile-menu-items {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.3rem 0.5rem;
        margin: 0.5rem 0;
        gap: 1.2rem;
    }

    .header .mobile-menu-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 500;
    }

    /* Скрываем телефон на очень маленьких экранах */
    .nav-phone-compact {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-main-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .value-prop {
        padding: 1rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-form,
    .bento-status,
    .bento-office {
        padding: 1.5rem;
    }

    .quick-methods-compact {
        justify-content: space-between;
    }

    .quick-method-compact {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .updated-promo-title {
        font-size: 2.2rem;
    }

    .promo-feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .modern-infographic {
        width: 280px;
        height: 280px;
    }

    .infographic-center {
        width: 100px;
        height: 100px;
    }

    .center-icon {
        font-size: 2rem;
    }

    .center-text {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1rem;
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-card-1 {
        top: 20px;
        left: 25px;
    }

    .stat-card-2 {
        top: 20px;
        right: 25px;
    }

    .stat-card-3 {
        bottom: 20px;
        left: 25px;
    }

    .stat-card-4 {
        bottom: 20px;
        right: 25px;
    }

    .hero-content {
        padding: 2rem 2rem 0;
    }
}

/* Параллакс эффект */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background:
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    transform: translateZ(0);
    will-change: transform;
    animation: gradient-shift 8s ease-in-out infinite;
    background-size: 200% 200%;
}

/* Скролл анимации */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}