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

:root {
    --primary: #1db854;
    --primary-dark: #1a8a3e;
    --primary-light: #2db966;
    --secondary: #667eea;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --max-width: 1400px; /* ЕДИНАЯ ШИРИНА ДЛЯ ВСЕГО! */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff;
    width: 100%;
}

/* ГЛОБАЛЬНЫЙ КОНТЕЙНЕР */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== АНИМИРОВАННЫЙ ФОН ========== */
.animated-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #1db854, #2db966);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 40%;
    right: -200px;
    animation-delay: 8s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    left: 35%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(20px, 50px) rotate(180deg); }
    75% { transform: translate(-40px, 20px) rotate(270deg); }
}

/* ========== ЧАСТИЦЫ ========== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ========== НАВИГАЦИЯ (ИСПРАВЛЕНО!) ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    z-index: 1000;
    border-bottom: 1px solid rgba(29, 184, 84, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
    padding: 15px 20px; /* Уменьшил padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-wrapper {
    position: relative;
}

.logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(29, 184, 84, 0.15), transparent);
    border-radius: 50%;
    filter: blur(15px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
}

.nav-center {
    flex: 1;
    max-width: 500px;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(29, 184, 84, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-search:focus-within {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(29, 184, 84, 0.15);
}

.nav-search svg {
    color: var(--text-gray);
    flex-shrink: 0;
}

.nav-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: var(--text-dark);
}

.nav-search input::placeholder {
    color: var(--text-gray);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.1), rgba(29, 184, 84, 0.05));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link:hover {
    color: var(--primary);
}

.link-icon {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.nav-link span:last-child {
    position: relative;
    z-index: 2;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-notification {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(29, 184, 84, 0.2);
    background: rgba(29, 184, 84, 0.05);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-notification:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 184, 84, 0.3);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #f5576c, #f093fb);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-outline {
    padding: 10px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 184, 84, 0.3);
}

.btn-primary {
    padding: 10px 24px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 184, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 184, 84, 0.4);
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 0%;
    transition: width 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(29, 184, 84, 0.05);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.mobile-search svg {
    color: var(--text-gray);
}

.mobile-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(29, 184, 84, 0.1);
    color: var(--primary);
}

/* ========== HERO СЕКЦИЯ ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 20px 80px;
    position: relative;
}

.hero-container {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(26, 138, 62, 0.15), rgba(29, 184, 84, 0.1));
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    border: 2px solid rgba(29, 184, 84, 0.2);
    box-shadow: 0 4px 15px rgba(29, 184, 84, 0.1);
}

.badge-icon {
    font-size: 20px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-dark);
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--primary);
    opacity: 0;
    transform: translateY(20px);
}

.cd-words-wrapper b.is-visible {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    animation: slide-in 0.6s;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero p strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-actions {
    margin-bottom: 60px;
}

.action-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.action-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.action-tab.active {
    color: white;
}

.tab-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.tab-title {
    font-size: 16px;
    font-weight: 700;
}

.tab-desc {
    font-size: 12px;
    opacity: 0.8;
}

.tab-indicator {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(50% - 12px);
    height: calc(100% - 16px);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(29, 184, 84, 0.3);
}

.action-tab:nth-child(2).active ~ .tab-indicator {
    left: calc(50% + 4px);
}

.btn-hero-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(29, 184, 84, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero-action::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 ease;
}

.btn-hero-action:hover::before {
    left: 100%;
}

.btn-hero-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 184, 84, 0.45);
}

.btn-hero-action svg {
    transition: transform 0.3s ease;
}

.btn-hero-action:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 32px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.hero-visual {
    position: relative;
    height: 550px;
}

.orders-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.order-card {
    position: absolute;
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    width: 260px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(29, 184, 84, 0.1);
    cursor: pointer;
}

.order-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    border-color: var(--primary);
    z-index: 10;
}

.card-1 {
    top: 30px;
    left: -10px;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: 0;
    animation: cardFloat2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30px;
    left: 50px;
    animation: cardFloat3 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.order-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.order-badge {
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(26, 138, 62, 0.15), rgba(29, 184, 84, 0.1));
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    border: 1.5px solid rgba(29, 184, 84, 0.3);
    white-space: nowrap;
}

.order-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.order-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.order-time {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.hero-circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    opacity: 0.2;
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========== СЕКЦИЯ ШАГОВ ========== */
.steps-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(29, 184, 84, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 138, 62, 0.15), rgba(29, 184, 84, 0.1));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(29, 184, 84, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text1 {
    background: linear-gradient(135deg, #FFD700, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.steps-role-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
}

.role-switch-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.role-switch-btn .role-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.role-switch-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.25);
}

.role-switch-btn:hover .role-icon {
    transform: scale(1.2) rotate(10deg);
}

.role-switch-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(29, 184, 84, 0.4);
    transform: scale(1.05);
}

.role-switch-btn.active .role-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(15deg); }
}

.steps-container {
    display: none;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
    position: relative;
}

.steps-container.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-item {
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.4s ease;
}

.step-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.steps-container.active .step-item {
    animation: stepReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.step-item[data-step="1"] { animation-delay: 0.1s; }
.step-item[data-step="2"] { animation-delay: 0.3s; }
.step-item[data-step="3"] { animation-delay: 0.5s; }
.step-item[data-step="4"] { animation-delay: 0.7s; }

@keyframes stepReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(20deg);
    }
    50% {
        transform: translateY(-10px) scale(1.05) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.step-number {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    position: relative;
    z-index: 3;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.15), rgba(29, 184, 84, 0.25));
    border-radius: 50%;
    z-index: 1;
}

.step-circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
    animation: pulse-outer 3s ease-in-out infinite;
}

@keyframes pulse-outer {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.step-icon-wrapper {
    margin-bottom: 25px;
    perspective: 1000px;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.15);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 22px;
    opacity: 0.7;
}

.icon-3d {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.step-icon-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-icon-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.step-icon-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.step-icon-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.step-item:hover .step-icon {
    transform: translateY(-12px) rotateY(12deg) rotateX(8deg) scale(1.08);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 12px 25px rgba(0, 0, 0, 0.2);
}

.step-item:hover .icon-3d {
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateZ(0) rotateZ(0); }
    50% { transform: translateZ(15px) rotateZ(3deg); }
}

.step-item:hover .step-circle-outer {
    animation: pulse-hover 1s ease-in-out infinite;
}

@keyframes pulse-hover {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-item:hover .step-content h3 {
    color: var(--primary);
    transform: translateY(-2px);
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 80px;
    left: calc(100% + 10px);
    width: 30px;
    height: 80px;
    pointer-events: none;
    z-index: -1;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-connector svg {
    width: 100%;
    height: 100%;
}

.step-connector path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.steps-container.active .step-connector path {
    animation: drawConnector 1.5s ease forwards;
}

.step-item[data-step="1"] .step-connector path { animation-delay: 0.5s; }
.step-item[data-step="2"] .step-connector path { animation-delay: 0.8s; }
.step-item[data-step="3"] .step-connector path { animation-delay: 1.1s; }

@keyframes drawConnector {
    to {
        stroke-dashoffset: 0;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 70px;
}

.btn-steps-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(29, 184, 84, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-steps-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-steps-cta:hover::before {
    left: 100%;
}

.btn-steps-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(29, 184, 84, 0.5);
}

.btn-steps-cta svg {
    transition: transform 0.3s ease;
}

.btn-steps-cta:hover svg {
    transform: translateX(8px);
}

.steps-cta-note {
    margin-top: 18px;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}
/* ========== СЕКЦИЯ ТИПОВ РАБОТ ========== */
.work-types-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.work-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(29, 184, 84, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(102, 126, 234, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.work-types-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-icon {
    font-size: 20px;
}

.filter-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.35);
    transform: scale(1.05);
}

.work-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
}

.work-type-card {
    position: relative;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.work-type-card[data-order="1"] { animation-delay: 0.1s; }
.work-type-card[data-order="2"] { animation-delay: 0.15s; }
.work-type-card[data-order="3"] { animation-delay: 0.2s; }
.work-type-card[data-order="4"] { animation-delay: 0.25s; }
.work-type-card[data-order="5"] { animation-delay: 0.3s; }
.work-type-card[data-order="6"] { animation-delay: 0.35s; }
.work-type-card[data-order="7"] { animation-delay: 0.4s; }
.work-type-card[data-order="8"] { animation-delay: 0.45s; }
.work-type-card[data-order="9"] { animation-delay: 0.5s; }
.work-type-card[data-order="10"] { animation-delay: 0.55s; }
.work-type-card[data-order="11"] { animation-delay: 0.6s; }
.work-type-card[data-order="12"] { animation-delay: 0.65s; }

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    border-radius: 24px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.work-type-card:hover .card-glow {
    opacity: 0.6;
}

.card-inner {
    background: white;
    border-radius: 22px;
    padding: 30px;
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.work-type-card:hover .card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 20px;
}

.card-icon svg {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.work-type-card:hover .card-icon {
    transform: translateY(-10px) rotateZ(-10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.card-badge.popular {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.card-badge.urgent {
    background: linear-gradient(135deg, #f5576c, #f093fb);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

.work-type-card:hover .card-content h3 {
    color: var(--primary);
    transform: translateX(5px);
}

.card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 42px;
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 18px;
}

.stat-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.card-btn::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 ease;
}

.card-btn:hover::before {
    left: 100%;
}

.card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 184, 84, 0.4);
}

.card-btn svg {
    transition: transform 0.3s ease;
}

.card-btn:hover svg {
    transform: translateX(5px);
}

.work-types-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.btn-show-more:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 184, 84, 0.35);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    bottom: 15%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(15px, 30px) rotate(180deg); }
    75% { transform: translate(-25px, 15px) rotate(270deg); }
}

/* ========== СЕКЦИЯ ТОП ИСПОЛНИТЕЛЕЙ ========== */
.top-executors-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.executor-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.executor-filter-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.executor-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.35);
    transform: scale(1.05);
}

.executors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
}

.executor-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: executorFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.executor-card[data-order="1"] { animation-delay: 0.1s; }
.executor-card[data-order="2"] { animation-delay: 0.2s; }
.executor-card[data-order="3"] { animation-delay: 0.3s; }
.executor-card[data-order="4"] { animation-delay: 0.4s; }
.executor-card[data-order="5"] { animation-delay: 0.5s; }
.executor-card[data-order="6"] { animation-delay: 0.6s; }

@keyframes executorFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.executor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.executor-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    z-index: 10;
}

.executor-badge.top-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.executor-badge.top-2 {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.5);
}

.executor-badge.top-3 {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.5);
}

.executor-avatar-wrapper {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.executor-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.executor-card:hover .executor-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.executor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
}

.executor-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
}

.executor-status.online {
    color: #1db854;
}

.executor-status.offline {
    color: var(--text-gray);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.executor-info {
    position: relative;
    z-index: 5;
}

.executor-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
    text-align: center;
    transition: all 0.3s ease;
}

.executor-card:hover .executor-name {
    color: var(--primary);
    transform: translateY(-2px);
}

.executor-specialty {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.executor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(29, 184, 84, 0.05);
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    opacity: 0.3;
}

.star.filled {
    opacity: 1;
}

.star.half {
    opacity: 0.5;
}

.rating-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.rating-count {
    font-size: 12px;
    color: var(--text-gray);
}

.executor-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
}

.executor-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.1), rgba(29, 184, 84, 0.05));
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid rgba(29, 184, 84, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 184, 84, 0.3);
}

.executor-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.executor-btn::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 ease;
}

.executor-btn:hover::before {
    left: 100%;
}

.executor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 184, 84, 0.4);
}

.executors-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-show-all-executors {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.executors-count {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.btn-show-all-executors:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 184, 84, 0.35);
}

.btn-show-all-executors:hover .executors-count {
    background: white;
    color: var(--primary);
}
/* ========== СЕКЦИЯ ОТЗЫВОВ ========== */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(29, 184, 84, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-filter-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.testimonial-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.35);
    transform: scale(1.05);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 40px;
    padding: 0 60px;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0.9) translateX(100px);
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    display: block;
    animation: testimonialSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes testimonialSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(29, 184, 84, 0.4);
}

.avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.avatar-badge.customer {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar-badge.executor {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.testimonial-author h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating .star {
    font-size: 16px;
}

.rating-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-left: 5px;
}

.testimonial-content {
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.03), rgba(102, 126, 234, 0.03));
    border-radius: 16px;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    padding-left: 40px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.work-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.date {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.verified {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.1), rgba(29, 184, 84, 0.05));
    border-radius: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(29, 184, 84, 0.2);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(29, 184, 84, 0.4);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(29, 184, 84, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(29, 184, 84, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    width: 40px;
    border-radius: 10px;
    background: var(--primary);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 50px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
}

.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(29, 184, 84, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-leave-review::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 ease;
}

.btn-leave-review:hover::before {
    left: 100%;
}

.btn-leave-review:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(29, 184, 84, 0.5);
}

.testimonials-note {
    margin-top: 18px;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: floatCircle 30s ease-in-out infinite;
}

.circle-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1db854, #2db966);
    bottom: 20%;
    right: 15%;
    animation-delay: 10s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 60%;
    left: 60%;
    animation-delay: 20s;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

/* ========== СЕКЦИЯ БЕЗОПАСНОСТИ ========== */
.security-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.security-main-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
}

.main-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: featureCardFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.main-feature-card[data-order="1"] { animation-delay: 0.1s; }
.main-feature-card[data-order="2"] { animation-delay: 0.2s; }
.main-feature-card[data-order="3"] { animation-delay: 0.3s; }

@keyframes featureCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.main-feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.feature-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.main-feature-card:hover .feature-icon {
    transform: translateY(-10px) scale(1.1) rotate(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.feature-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(29, 184, 84, 0.2);
    animation: pulse-feature 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-feature {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.main-feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.main-feature-card:hover h3 {
    color: var(--primary);
    transform: translateY(-3px);
}

.main-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(29, 184, 84, 0.3);
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
}

.security-feature {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-30px);
    animation: featureSlideIn 0.6s ease forwards;
}

.security-feature[data-order="1"] { animation-delay: 0.1s; }
.security-feature[data-order="2"] { animation-delay: 0.2s; }
.security-feature[data-order="3"] { animation-delay: 0.3s; }
.security-feature[data-order="4"] { animation-delay: 0.4s; }
.security-feature[data-order="5"] { animation-delay: 0.5s; }
.security-feature[data-order="6"] { animation-delay: 0.6s; }

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.security-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.sf-icon {
    flex-shrink: 0;
}

.sf-content {
    flex: 1;
}

.sf-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.sf-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.sf-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.status-dot.online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

.sf-badge {
    padding: 6px 12px;
    background: rgba(29, 184, 84, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.secure-deal-process {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.05), rgba(102, 126, 234, 0.05));
    border-radius: 24px;
    border: 2px solid rgba(29, 184, 84, 0.1);
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--primary);
    opacity: 0.3;
}

.process-step:last-child .step-arrow {
    display: none;
}

.security-certificates {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.certificates-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.certificate-badge {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.certificate-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.cert-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.cert-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.security-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(29, 184, 84, 0.3);
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-security-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-security-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-security-outline {
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-security-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}
/* ========== СЕКЦИЯ СТАТИСТИКИ ========== */
.stats-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(29, 184, 84, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
}

.stat-main-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid rgba(29, 184, 84, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: statCardFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    overflow: hidden;
}

.stat-main-card[data-order="1"] { animation-delay: 0.1s; }
.stat-main-card[data-order="2"] { animation-delay: 0.2s; }
.stat-main-card[data-order="3"] { animation-delay: 0.3s; }
.stat-main-card[data-order="4"] { animation-delay: 0.4s; }

@keyframes statCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.stat-main-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.stat-icon-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(29, 184, 84, 0.05), transparent);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.stat-main-card:hover .stat-icon-bg {
    transform: scale(1.5) rotate(180deg);
    opacity: 0.3;
}

.stat-icon-wrapper {
    margin-bottom: 25px;
}

.stat-main-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 184, 84, 0.05);
    border-radius: 20px;
    transition: all 0.5s ease;
}

.stat-main-icon svg {
    width: 60px;
    height: 60px;
}

.stat-main-card:hover .stat-main-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(29, 184, 84, 0.1);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-plus,
.stat-percent,
.stat-rating {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.7;
}

.stat-main-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.stat-main-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.stat-trend.up {
    background: rgba(29, 184, 84, 0.1);
    color: var(--primary);
}

.stat-trend.stable {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.stats-rows {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-30px);
    animation: rowSlideIn 0.6s ease forwards;
}

.stat-row[data-order="1"] { animation-delay: 0.1s; }
.stat-row[data-order="2"] { animation-delay: 0.2s; }
.stat-row[data-order="3"] { animation-delay: 0.3s; }
.stat-row[data-order="4"] { animation-delay: 0.4s; }

@keyframes rowSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-row-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.stat-row-content {
    flex: 1;
}

.stat-row-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.stat-row-number span:first-child {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.stat-row-number .suffix {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
}

.stat-row-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.stat-row-bar {
    width: 200px;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

/* ========== СЕКЦИЯ FAQ ========== */
.faq-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cat-icon {
    font-size: 20px;
}

.faq-category-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.2);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.35);
    transform: scale(1.05);
}

.faq-search {
    max-width: 700px;
    margin: 0 auto 60px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: white;
    border: 2px solid rgba(29, 184, 84, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(29, 184, 84, 0.2);
}

.search-wrapper svg {
    color: var(--primary);
    flex-shrink: 0;
}

.search-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
}

.search-wrapper input::placeholder {
    color: var(--text-gray);
}

.clear-search {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.clear-search:hover {
    background: var(--primary);
    color: white;
}

.search-results-count {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: faqItemFadeIn 0.5s ease forwards;
}

.faq-item[data-order="1"] { animation-delay: 0.05s; }
.faq-item[data-order="2"] { animation-delay: 0.1s; }
.faq-item[data-order="3"] { animation-delay: 0.15s; }
.faq-item[data-order="4"] { animation-delay: 0.2s; }
.faq-item[data-order="5"] { animation-delay: 0.25s; }
.faq-item[data-order="6"] { animation-delay: 0.3s; }
.faq-item[data-order="7"] { animation-delay: 0.35s; }
.faq-item[data-order="8"] { animation-delay: 0.4s; }
.faq-item[data-order="9"] { animation-delay: 0.45s; }
.faq-item[data-order="10"] { animation-delay: 0.5s; }
.faq-item[data-order="11"] { animation-delay: 0.55s; }
.faq-item[data-order="12"] { animation-delay: 0.6s; }

@keyframes faqItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(29, 184, 84, 0.15);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    gap: 20px;
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary);
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(29, 184, 84, 0.1);
    border: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 700;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-cta {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(29, 184, 84, 0.3);
}

.faq-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.faq-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-faq-chat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-faq-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-icon {
    font-size: 20px;
}

.btn-faq-contact {
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-faq-contact:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.faq-popular-topics {
    max-width: 900px;
    margin: 0 auto;
}

.topics-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.topic-tag {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.topic-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
}

/* ========== СЕКЦИЯ CTA ========== */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cta-main-block {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(29, 184, 84, 0.3);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.cta-particle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    animation: floatParticle 20s infinite ease-in-out;
}

.cta-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
}

.cta-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 8s;
}

.cta-particle:nth-child(4) {
    top: 30%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 12s;
}

.cta-particle:nth-child(5) {
    bottom: 10%;
    right: 40%;
    width: 90px;
    height: 90px;
    animation-delay: 16s;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.2); }
    50% { transform: translate(-20px, 40px) scale(0.8); }
    75% { transform: translate(40px, 20px) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-stat-icon {
    font-size: 24px;
}

.mini-stat-value {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.mini-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover .btn-shine {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

.btn-icon {
    font-size: 22px;
}

.cta-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-image {
    position: relative;
    z-index: 2;
}

.cta-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 32px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-status {
    font-size: 12px;
    color: var(--text-gray);
}

.cta-main-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
}

.cta-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: featureCardUp 0.6s ease forwards;
}

.cta-feature-card[data-order="1"] { animation-delay: 0.1s; }
.cta-feature-card[data-order="2"] { animation-delay: 0.2s; }
.cta-feature-card[data-order="3"] { animation-delay: 0.3s; }

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

.cta-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.feature-card-icon svg {
    width: 100%;
    height: 100%;
}

.cta-feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}

.feature-link svg {
    transition: transform 0.3s ease;
}

.feature-link:hover svg {
    transform: translateX(3px);
}

.cta-urgent-block {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto 80px;
    padding: 40px 50px;
    background: linear-gradient(135deg, #057f24, #064709);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.urgent-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.urgent-icon {
    font-size: 60px;
    animation: pulse 2s ease-in-out infinite;
}

.urgent-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.urgent-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-urgent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: #0d6c2f;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.btn-urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.urgent-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #057f24, #064709);
    color: white;
    border-radius: 12px;
    font-size: 12px;
}

.cta-final {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 50px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(29, 184, 84, 0.1);
}

.final-content h3 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.final-list {
    list-style: none;
    margin-bottom: 40px;
}

.final-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 18px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.final-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 24px;
}

.final-cta {
    text-align: center;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(29, 184, 84, 0.3);
    margin-bottom: 15px;
}

.btn-final-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(29, 184, 84, 0.4);
}

.final-note {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.social-proof {
    text-align: center;
}

.proof-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.proof-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.proof-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin-left: -15px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.proof-text {
    font-size: 16px;
    color: var(--text-gray);
}

.proof-text strong {
    color: var(--primary);
    font-weight: 800;
}
/* ========== ФУТЕР (ИСПРАВЛЕНО - НА ВСЮ ШИРИНУ!) ========== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100vw; /* ПОЛНАЯ ШИРИНА ЭКРАНА! */
    margin-left: calc(50% - 50vw); /* РАСТЯГИВАЕМ НА ВСЮ ШИРИНУ! */
    margin-right: calc(50% - 50vw);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(29, 184, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Основной футер */
.footer-main {
    padding: 80px 20px 40px;
    position: relative;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА КОНТЕНТА! */
    margin: 0 auto;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Логотип и описание */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

.logo-name {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.logo-tagline {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-stats {
    display: flex;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-stat .stat-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
}

.footer-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Заголовки колонок */
.footer-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

/* Ссылки */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Контакты */
.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Социальные сети */
.footer-social {
    margin-top: 30px;
}

.social-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00a8e8);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #4267B2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Подписка */
.footer-newsletter {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.newsletter-content {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(29, 184, 84, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 184, 84, 0.4);
}

/* Нижний футер */
.footer-bottom {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-bottom-content {
    max-width: var(--max-width); /* ЕДИНАЯ ШИРИНА! */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.footer-made {
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    font-size: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Кнопка наверх */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(29, 184, 84, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 184, 84, 0.5);
}

/* ========== АДАПТИВНОСТЬ ========== */

/* 1400px и ниже */
@media (max-width: 1400px) {
    :root {
        --max-width: 1200px;
    }
    
    .hero-container {
        gap: 60px;
    }

    .hero-visual {
        height: 520px;
    }

    .order-card {
        width: 240px;
        padding: 16px 18px;
    }
}

/* 1200px и ниже */
@media (max-width: 1200px) {
    .steps-container.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .step-connector {
        display: none !important;
    }

    .work-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .executors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .stats-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1024px и ниже */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .nav-links {
        display: none;
    }

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

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

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .security-main-features {
        grid-template-columns: 1fr;
    }

    .security-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-arrow {
        display: none;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-main-block {
        grid-template-columns: 1fr;
        padding: 60px 40px;
    }

    .cta-image-wrapper {
        height: 400px;
    }

    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px и ниже */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .action-selector {
        flex-direction: column;
    }

    .tab-indicator {
        width: calc(100% - 16px);
        height: 70px;
        top: 8px;
    }

    .action-tab:nth-child(2).active ~ .tab-indicator {
        left: 8px;
        top: 86px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-visual {
        height: 480px;
    }

    .order-card {
        width: 200px;
        padding: 15px 17px;
    }

    .nav-buttons .btn-notification,
    .nav-buttons .btn-outline {
        display: none;
    }

    .steps-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

    .steps-role-switch {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto 60px;
    }

    .role-switch-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .steps-container.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-item {
        padding: 30px 20px;
    }

    .work-types-section {
        padding: 80px 20px;
    }

    .work-types-filter {
        gap: 10px;
    }

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

    .work-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-executors-section {
        padding: 80px 20px;
    }

    .executors-filter {
        gap: 10px;
    }

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

    .executors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-filter {
        gap: 10px;
    }

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

    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }

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

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .security-section {
        padding: 80px 20px;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
    }

    .secure-deal-process {
        padding: 30px 20px;
    }

    .process-title {
        font-size: 26px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .security-cta {
        padding: 35px 25px;
    }
    
    .stats-section {
        padding: 80px 20px;
    }

    .stats-main-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        flex-direction: column;
        text-align: center;
    }

    .stat-row-bar {
        width: 100%;
    }
    
    .faq-section {
        padding: 80px 20px;
    }

    .faq-categories {
        gap: 10px;
    }

    .faq-category-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-cta {
        padding: 35px 25px;
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-section {
        padding: 80px 20px;
    }

    .cta-main-block {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-stats-mini {
        flex-direction: column;
        gap: 15px;
    }

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-urgent-block {
        flex-direction: column;
        padding: 35px 25px;
        text-align: center;
    }

    .urgent-content {
        flex-direction: column;
    }

    .btn-urgent {
        width: 100%;
        justify-content: center;
    }

    .cta-final {
        padding: 35px 25px;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-stats {
        flex-wrap: wrap;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 480px и ниже */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-visual {
        height: 460px;
    }

    .order-card {
        width: 180px;
        padding: 14px 16px;
    }

    .steps-role-switch {
        max-width: 280px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
    }

    .icon-3d {
        width: 50px;
        height: 50px;
    }

    .work-types-filter,
    .executors-filter,
    .testimonials-filter,
    .faq-categories {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .filter-btn,
    .executor-filter-btn,
    .testimonial-filter-btn,
    .faq-category-btn {
        width: 100%;
        justify-content: center;
    }

    .card-icon {
        width: 65px;
        height: 65px;
    }

    .card-icon svg {
        width: 40px;
        height: 40px;
    }

    .executor-avatar {
        width: 90px;
        height: 90px;
    }

    .executor-rating {
        flex-direction: column;
        gap: 8px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-image-wrapper {
        height: 300px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-payment {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ UTILITY КЛАССЫ ========== */

/* AOS анимации */
[data-aos] {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Smooth scroll для всего документа */
html {
    scroll-padding-top: 100px;
}

/* Выделение текста */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-to-top,
    .cta-section,
    .footer-newsletter {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .animated-background,
    #particles {
        display: none;
    }
}
