* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --orange-light: #FF8C5A;
    --black: #000000;
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --gray: #4a4a4a;
    --light-gray: #666666;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #0f0f0f;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Отступ сверху при прокрутке к якорям */
}

/* Кастомный скроллбар - скрываем фон трека */
/* Для WebKit браузеров (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

::-webkit-scrollbar-corner {
    display: none;
}

/* Для Microsoft Edge (старые версии) */
* {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Для Firefox - тонкий скроллбар с прозрачным фоном */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    overflow: overlay;
    font-weight: 400;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(0, 0, 0, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header с навигацией */
.header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 15px 20px;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 15px 20px;
}

.header.scrolled .container {
    padding: 15px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08), 0 0 1px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.logo-text .dash {
    font-size: 1.2rem;
    vertical-align: middle;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-image {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px 3px 0 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.nav a:hover::before {
    opacity: 1;
}

.nav a:hover::after {
    width: 80%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav.mobile-open a {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark-gray);
}

.nav.mobile-open a:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero секция */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f5f5f5 70%, #ffffff 100%);
    color: var(--black);
    padding: 0 20px 80px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-top: 0;
    margin-top: 0;
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.header-scrolled .hero-content {
    padding-top: 20px;
}

/* Убираем любые границы и отступы сверху */
.hero > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, rgba(255, 140, 90, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 90, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 15s ease-in-out infinite reverse;
}

.hero::before,
.hero::after {
    filter: blur(60px);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 16s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 13s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 19s; }
.particle:nth-child(10) { left: 15%; animation-delay: 6s; animation-duration: 11s; }

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    animation: rotateShape 20s linear infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 5%;
    animation-duration: 18s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-text h1,
.hero-text .subtitle,
.hero-text .hero-cta {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
    animation: slideInFromLeft 1s ease, glowText 3s ease-in-out infinite;
    position: relative;
    color: var(--black);
}

.hero h1 span {
    display: inline-block;
    animation: letterPop 0.5s ease forwards;
    opacity: 0;
}

.hero h1 span:nth-child(1) { animation-delay: 0.1s; }
.hero h1 span:nth-child(2) { animation-delay: 0.3s; }
.hero h1 span:nth-child(3) { animation-delay: 0.5s; }
.hero h1 span:nth-child(4) { animation-delay: 0.7s; }

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--gray);
    line-height: 1.6;
    animation: fadeInScale 1.2s ease 0.5s both;
}

.hero .highlight {
    color: var(--orange);
    font-weight: 600;
    position: relative;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    animation: underlineExpand 1s ease 1.5s both;
}

.hero-cta {
    display: inline-flex;
    gap: 15px;
    margin-top: 40px;
    animation: bounceIn 1s ease 1.2s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    padding: 18px 45px;
    border: 2px solid var(--orange);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.4s;
    z-index: 0;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Калькулятор лизинга - поля ввода */
.leasing-calculator-inputs {
    flex: 0 0 380px;
    position: relative;
    z-index: 2;
    animation: fadeInScale 1.2s ease 0.8s both;
}

/* Контейнер результатов на всю ширину */
.calculator-results-container {
    width: 100%;
    max-width: 1200px;
    margin: 25px auto 0;
    position: relative;
    z-index: 2;
}

/* Результаты калькулятора */
.calculator-results {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.calculator-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.calculator-result-card {
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.calculator-result-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 107, 53, 0.3);
}

.calculator-result-card.highlight {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: var(--orange);
}

.calculator-result-card.highlight:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.calculator-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 18px;
    margin-top: 10px;
    text-align: left;
}

.calculator-input-group {
    margin-bottom: 18px;
}

.calculator-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 6px;
}

.calculator-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.calculator-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    background: var(--white);
}

.calculator-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.calculator-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 4px;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.6);
}

.calculator-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.calculator-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
}

.calculator-slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 4px;
}

.calculator-result-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculator-result-card.highlight .calculator-result-label {
    color: rgba(255, 255, 255, 0.9);
}

.calculator-result-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.calculator-result-value.main {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 700;
}

.calculator-result-value.highlight {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.calculator-savings-toggle {
    margin-top: 15px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    user-select: none;
}

.calculator-savings-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--orange);
}

.calculator-savings-toggle i {
    transition: transform 0.3s ease;
    color: var(--orange);
}

.calculator-savings-toggle.active i {
    transform: rotate(180deg);
}

.calculator-savings {
    margin-top: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-savings-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.calculator-savings-label {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-savings-value {
    font-weight: 600;
    color: var(--white);
}

.calculator-savings-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1.5px solid var(--orange);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.calculator-savings-total-label {
    font-weight: 600;
    color: var(--white);
}

.calculator-savings-total-value {
    font-weight: 700;
    color: var(--orange);
    font-size: 1.1rem;
}

.calculator-button {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.calculator-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.calculator-button:active {
    transform: translateY(0);
}

.calculator-disclaimer {
    margin-top: 12px;
    font-size: 0.65rem;
    color: var(--gray);
    line-height: 1.3;
    text-align: center;
}

/* Статистика */
.stats {
    background-color: var(--white);
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    align-items: center;
    min-height: 350px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.stats-track {
    display: flex;
    gap: 30px;
    animation: scrollStats 40s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    align-items: center;
}

.stats-track:hover {
    animation-play-state: paused;
}

@keyframes scrollStats {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    flex: 0 0 320px;
    min-width: 320px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.stat-card:hover .stat-icon::before {
    width: 120px;
    height: 120px;
}

.stat-card:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
    transition: all 0.4s;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.stat-card:hover .stat-label {
    color: var(--black);
}

/* Преимущества */
.benefits {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 12s ease-in-out infinite reverse;
}

/* Анимированный фон для раздела benefits */
.benefits-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.benefits-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.benefits-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 15s;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.benefits-particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-duration: 18s;
    animation-delay: -2s;
}

.benefits-particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-duration: 22s;
    animation-delay: -4s;
    width: 5px;
    height: 5px;
}

.benefits-particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation-duration: 16s;
    animation-delay: -6s;
}

.benefits-particle:nth-child(5) {
    left: 85%;
    top: 50%;
    animation-duration: 20s;
    animation-delay: -8s;
    width: 5px;
    height: 5px;
}

.benefits-particle:nth-child(6) {
    left: 20%;
    top: 70%;
    animation-duration: 17s;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -80px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translate(-40px, -120px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(60px, -60px) scale(1.2);
        opacity: 0.6;
    }
}

.benefits-gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 40%, transparent 70%);
    filter: blur(40px);
    animation: orbMove 25s ease-in-out infinite;
}

.benefits-gradient-orb:nth-child(7) {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation-duration: 30s;
}

.benefits-gradient-orb:nth-child(8) {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -80px;
    animation-duration: 35s;
    animation-delay: -10s;
}

.benefits-gradient-orb:nth-child(9) {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
    animation-delay: -15s;
}

@keyframes orbMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.2);
    }
    66% {
        transform: translate(-80px, 80px) scale(0.9);
    }
}

.benefits-gradient-orb:nth-child(9) {
    animation-name: orbMoveCenter;
}

@keyframes orbMoveCenter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-40%, -60%) scale(1.1);
    }
    50% {
        transform: translate(-60%, -40%) scale(0.95);
    }
    75% {
        transform: translate(-45%, -55%) scale(1.05);
    }
}

.benefits-ripple {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: rippleExpand 8s ease-out infinite;
}

.benefits-ripple:nth-child(10) {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.benefits-ripple:nth-child(11) {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 25%;
    animation-delay: -4s;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
    animation: expandLine 1s ease 0.5s forwards;
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.6s ease both;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.benefit-card::after {
    display: none;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.3));
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

/* Как мы работаем */
.process {
    padding: 100px 20px;
    background: var(--white);
}

/* Отключение анимации для секции "Как мы работаем" */
#process .section-header,
#process .process-step,
#process .process-timeline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.process-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), var(--orange-light));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 0 30px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-step:nth-child(even) .process-content {
    border-left: none;
    border-right: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    color: var(--orange);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.process-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* Услуги */
.services {
    padding: 100px 20px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Анимированный фон для раздела services */
.services-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.services-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.services-particle:nth-child(1) {
    left: 15%;
    top: 25%;
    animation-duration: 15s;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.services-particle:nth-child(2) {
    left: 35%;
    top: 65%;
    animation-duration: 18s;
    animation-delay: -2s;
}

.services-particle:nth-child(3) {
    left: 75%;
    top: 35%;
    animation-duration: 22s;
    animation-delay: -4s;
    width: 5px;
    height: 5px;
}

.services-particle:nth-child(4) {
    left: 55%;
    top: 85%;
    animation-duration: 16s;
    animation-delay: -6s;
}

.services-particle:nth-child(5) {
    left: 90%;
    top: 55%;
    animation-duration: 20s;
    animation-delay: -8s;
    width: 5px;
    height: 5px;
}

.services-particle:nth-child(6) {
    left: 25%;
    top: 75%;
    animation-duration: 17s;
    animation-delay: -10s;
}

.services-gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 40%, transparent 70%);
    filter: blur(40px);
    animation: orbMove 25s ease-in-out infinite;
}

.services-gradient-orb:nth-child(7) {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation-duration: 30s;
}

.services-gradient-orb:nth-child(8) {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -80px;
    animation-duration: 35s;
    animation-delay: -10s;
}

.services-gradient-orb:nth-child(9) {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
    animation-delay: -15s;
}

.services-gradient-orb:nth-child(9) {
    animation-name: orbMoveCenter;
}

.services-ripple {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: rippleExpand 8s ease-out infinite;
}

.services-ripple:nth-child(10) {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.services-ripple:nth-child(11) {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 25%;
    animation-delay: -4s;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    height: 450px;
    position: relative;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 16px;
    margin-right: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s, transform 0.3s ease-out, scale 0.3s ease-out;
    cursor: pointer;
    border: 2px solid transparent;
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    min-width: 150px;
    max-width: 150px;
}

.service-card.active {
    max-width: 450px;
    margin-right: 0;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
    z-index: 10;
    transform: scale(1);
}

.services-grid.has-active .service-card:not(.active) {
    transform: scale(0.85);
    transition: transform 0.3s ease-out, max-width 0s, box-shadow 0s, border-color 0s;
}

.service-card.active ~ .service-card {
    transform: none;
}

.service-card-header {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    user-select: none;
    height: 100%;
    min-height: 200px;
}

.service-card-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.service-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.service-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    transition: color 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.service-card.active .service-title h3 {
    color: var(--orange);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0);
}

.service-card.active .service-icon {
    opacity: 1;
    transform: scale(1);
}

.service-arrow {
    display: none;
}

.service-body {
    width: 0;
    min-width: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0;
    background: var(--white);
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.service-card.active .service-body {
    width: 350px;
    min-width: 350px;
    padding: 30px;
    overflow-y: auto;
}

.service-card:not(.active) .service-body {
    transition: width 0s, min-width 0s, padding 0s;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
    overflow-y: auto;
    white-space: normal;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.service-subtitle {
    display: none;
}

/* Кейсы */
.cases {
    padding: 100px 20px;
    background: var(--white);
}

.cases-list {
    max-width: 1000px;
    margin: 60px auto 0;
}

.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.case-card.active {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}


.case-card-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.case-card-header:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
}

.case-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.case-header-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.case-card.active .case-header-arrow {
    transform: rotate(180deg);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.case-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.case-card-body {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
}

.case-card.active .case-card-body {
    max-height: 2000px;
    padding: 35px;
}

.case-card .problem,
.case-card .solution {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    margin: 25px 0;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.case-card .problem {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.08) 100%);
}

.case-card .solution {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.08) 100%);
}

.case-card .problem::before,
.case-card .solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--orange);
}

.case-card .solution::before {
    background: #4caf50;
}

.case-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.case-card .problem .case-section-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange);
}

.case-card .solution .case-section-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.case-section-content {
    padding: 25px;
}

.case-section-header strong {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.case-card .problem .case-section-header strong {
    color: var(--orange);
}

.case-card .solution .case-section-header strong {
    color: #4caf50;
}

.case-section-content strong {
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.case-card .solution .case-section-content strong {
    color: #4caf50;
}

.case-card p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1rem;
}

.case-card .problem p:last-child,
.case-card .solution p:last-child {
    margin-bottom: 0;
}

.case-card .problem p,
.case-card .solution p {
    padding-left: 0;
}


/* FAQ */
.faq {
    padding: 100px 20px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.faq-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.faq-particle:nth-child(1) {
    left: 25%;
    top: 15%;
    animation-duration: 18s;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.faq-particle:nth-child(2) {
    left: 60%;
    top: 45%;
    animation-duration: 22s;
    animation-delay: -3s;
}

.faq-particle:nth-child(3) {
    left: 85%;
    top: 25%;
    animation-duration: 16s;
    animation-delay: -5s;
    width: 5px;
    height: 5px;
}

.faq-particle:nth-child(4) {
    left: 45%;
    top: 75%;
    animation-duration: 20s;
    animation-delay: -7s;
}

.faq-particle:nth-child(5) {
    left: 10%;
    top: 55%;
    animation-duration: 19s;
    animation-delay: -9s;
    width: 5px;
    height: 5px;
}

.faq-particle:nth-child(6) {
    left: 70%;
    top: 80%;
    animation-duration: 17s;
    animation-delay: -11s;
}

.faq-gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 40%, transparent 70%);
    filter: blur(40px);
    animation: orbMove 25s ease-in-out infinite;
}

.faq-gradient-orb:nth-child(7) {
    width: 450px;
    height: 450px;
    top: -80px;
    right: -120px;
    animation-duration: 32s;
}

.faq-gradient-orb:nth-child(8) {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    animation-duration: 28s;
    animation-delay: -12s;
}

.faq-gradient-orb:nth-child(9) {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 10%;
    transform: translate(0, 0);
    animation-duration: 38s;
    animation-delay: -18s;
    animation-name: orbMove;
}

.faq-ripple {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: rippleExpand 8s ease-out infinite;
}

.faq-ripple:nth-child(10) {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.faq-ripple:nth-child(11) {
    width: 160px;
    height: 160px;
    bottom: 30%;
    left: 30%;
    animation-delay: -4s;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--black);
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--orange);
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

/* Форма */
.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f5f5f5 70%, #ffffff 100%);
    color: var(--black);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, rgba(255, 140, 90, 0.12) 30%, rgba(255, 107, 53, 0.06) 50%, transparent 75%);
    border-radius: 50%;
    animation: pulseGlow 14s ease-in-out infinite;
    filter: blur(80px);
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -3%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 90, 0.1) 30%, rgba(255, 107, 53, 0.05) 50%, transparent 75%);
    border-radius: 50%;
    animation: pulseGlow 18s ease-in-out infinite reverse;
    filter: blur(80px);
}

.form-section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.form-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.form-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.form-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 22s; }
.form-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.form-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 25s; }
.form-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
.form-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 20s; }
.form-particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 19s; }
.form-particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 17s; }
.form-particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 21s; }
.form-particle:nth-child(10) { left: 15%; animation-delay: 6s; animation-duration: 14s; }

.form-section > * {
    position: relative;
    z-index: 1;
}

.form-section .section-header {
    animation: formHeaderFadeIn 0.8s ease-out;
}

.form-section .section-header h2 {
    color: var(--black);
    animation: formTitleSlide 0.8s ease-out 0.2s backwards;
}

.form-section .section-header h2::after {
    background: var(--orange);
    animation: underlineExpand 1s ease 0.5s backwards;
}

.form-section .section-header p {
    color: var(--gray);
    animation: formSubtitleFadeIn 0.8s ease-out 0.4s backwards;
}

@keyframes formHeaderFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formTitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes formSubtitleFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.form-container {
    max-width: 700px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    animation: formContainerFadeIn 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

@keyframes formContainerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-part {
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-part-1 {
    max-height: 1000px;
    opacity: 1;
}

.form-part-1.hidden {
    max-height: 0 !important;
    opacity: 0;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-part-2 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-part-2.active {
    max-height: 1200px;
    opacity: 1;
    padding: 0;
    margin: 0;
    animation: formPart2FadeIn 0.6s ease-out;
}

@keyframes formPart2FadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
    animation: formFieldFadeIn 0.6s ease-out backwards;
}

.form-part-2.active .form-group:nth-child(1) { animation-delay: 0.1s; }
.form-part-2.active .form-group:nth-child(2) { animation-delay: 0.2s; }
.form-part-2.active .form-group:nth-child(3) { animation-delay: 0.3s; }
.form-part-2.active .form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes formFieldFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.form-group label .required {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 5px;
}

.form-next {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.form-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-next:hover::before {
    width: 400px;
    height: 400px;
}

.form-next:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
    width: 400px;
    height: 400px;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-submit:disabled::before {
    display: none;
}

/* Футер */
.footer {
    background-color: var(--bg-dark);
    background-image: url(./patern.png);
    background-repeat: repeat;
    background-size: 200px 200px;
    background-position: 0 0;
    color: var(--white);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-dark);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Анимация при скролле */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes letterPop {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.3);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-step {
        flex-direction: row !important;
    }

    .process-number {
        margin-right: 20px;
    }

    .process-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        height: auto;
        padding: 0 20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;
        margin-right: 0;
        background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
        padding: 35px 30px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border: 2px solid transparent;
        cursor: default;
        position: relative;
        overflow: visible;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--orange), var(--orange-light));
        transform: scaleX(0);
        transition: transform 0.4s;
        border-radius: 20px 20px 0 0;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
        border-color: var(--orange);
        background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.05) 100%);
    }

    .service-card.active {
        max-width: 100%;
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
        border-color: var(--orange);
    }

    .service-card-header {
        padding: 0;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .service-card-header::after {
        display: none;
    }

    .service-title {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .service-title h3 {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--black);
        margin: 0;
        white-space: normal;
    }

    .service-icon {
        opacity: 1;
        transform: scale(1);
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transition: all 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon i {
        font-size: 1.8rem;
        width: auto;
        height: auto;
        color: var(--white);
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }

    .service-body {
        position: relative;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        display: block;
    }

    .service-card.active .service-body {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .service-content {
        flex-direction: column;
        gap: 20px;
        height: auto;
        overflow: visible;
    }

    .service-icon-large {
        display: none;
    }

    .service-features {
        margin: 0;
    }

    .service-features li {
        padding: 12px 0;
        padding-left: 25px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services-grid.has-active .service-card:not(.active) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1,
    .hero-text .subtitle,
    .hero-text .hero-cta {
        text-align: center;
    }

    .leasing-calculator-inputs {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .calculator-results-container {
        margin-top: 20px;
        padding: 0 15px;
    }

    .calculator-results {
        padding: 15px;
    }

    .calculator-results-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calculator-result-value.main {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stats-grid,
    .services-grid,


    .form-container {
        padding: 20px;
    }
    .services{
        padding: 100px 0px;
    }
    .benefits-grid {
        padding: 0;
    }

}
