/* Новые стили для статистических карточек */
.stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.header-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 2;
}

/* Логотип */
.logo-section {
    flex-shrink: 0;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-wrapper:hover .logo-glow {
    opacity: 0.3;
}

/* Навигация */
.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1f2937;
}

.nav-link:hover .nav-text {
    transform: translateY(-2px);
}

.nav-text {
    display: block;
    transition: transform 0.3s ease;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

/* Кнопки действий */
.action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    position: relative;
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.login-btn:hover .btn-shine {
    left: 100%;
}

.primary-btn {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary-btn:active {
    transform: translateY(0);
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: inherit;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0;
    }
}

.btn-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: sparkle 3s ease-in-out infinite 1s;
}

.sparkle:nth-child(3) {
    top: 80%;
    left: 40%;
    animation: sparkle 3s ease-in-out infinite 2s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимированный фон */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    padding: 1rem 0;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #667eea;
    padding-left: 1rem;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-login-btn,
.mobile-primary-btn {
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-login-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.mobile-primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .navigation {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }

    .navigation,
    .action-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }
}
.coverage-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Content Layout */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .coverage-content {
        grid-template-columns: 2fr 1fr;
    }
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.yandex-map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
}

.map-stats {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Sidebar */
.coverage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stats-title {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.stats-title svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    color: #667eea;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.stat-line:last-child {
    border-bottom: none;
}

.stat-badge {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-badge.orange {
    background: #ffedd5;
    color: #9a3412;
}

.stat-badge.blue {
    background: #dbeafe;
    color: #1e40af;
}

/* Cities Card */
.cities-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cities-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cities-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.city-item:hover {
    background: #f8fafc;
    border-color: #e5e7eb;
}

.city-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.city-item.active .city-region,
.city-item.active .city-label {
    color: rgba(255, 255, 255, 0.8);
}

.city-rank {
    width: 2rem;
    height: 2rem;
    background: #ffedd5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9a3412;
    flex-shrink: 0;
}

.city-item.active .city-rank {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.city-info {
    flex: 1;
}

.city-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.city-region {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

.city-stats {
    text-align: right;
}

.city-count {
    font-weight: 600;
    font-size: 0.875rem;
}

.city-label {
    font-size: 0.75rem;
    color: #6b7280;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-description {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cta-button {
    width: 100%;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Balloon Styles */
.balloon-content {
    padding: 0.5rem;
}

.balloon-region {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.balloon-companies {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.balloon-description {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coverage-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0.5rem;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Feature Card */
.feature-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: cardAppear 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

/* Content Styles - теперь белый текст при наведении */
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-title {
    color: white;
    transform: translateX(5px);
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Icon Styles */
.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: inherit;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(12px);
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card:hover .icon-glow {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.2);
    background: white;
}

/* Hover Effects */
.feature-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 2;
}

.feature-card:hover .feature-hover-effect {
    left: 100%;
}

/* Card Border Animation */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Animations */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .features-grid {
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}
.cta-section {
    margin-top: 4rem;
    padding: 0 1rem;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .cta-container {
        padding: 4rem 3rem;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Primary Button */
.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn-primary:active {
    transform: translateY(0);
}

.btn-shine {
    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.5s ease;
}

.cta-btn-primary:hover .btn-shine {
    left: 100%;
}

/* Secondary Button */
.cta-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-secondary:hover .btn-hover-effect {
    opacity: 1;
}

/* Decoration Elements */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -30px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -20px;
    animation-delay: 2s;
}

.decoration-star {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 
        79% 91%, 50% 70%, 21% 91%, 32% 57%, 
        2% 35%, 39% 35%
    );
    animation: twinkle 4s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.star-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
/* Улучшенные стили формы */
.form-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    min-width: 0;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
    transform: translateY(-1px);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: #d1d5db;
}

.form-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    overflow: hidden;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.form-button:active {
    transform: translateY(0);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Анимация для иконок в преимуществах */
.stats-icon-animated {
    transition: all 0.3s ease;
}

.stats-icon-animated:hover {
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px;
        padding: 1rem;
    }
    
    .form-button {
        font-size: 1rem;
        padding: 1.125rem 1.5rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}
.stats-card {
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #4b5563;
    background-color: rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(4px);
    transition: opacity 0.5s, transform 0.5s, background-color 0.3s;
}
.grid4 {grid-template-columns: repeat(4, minmax(0, 1fr)); display:grid;}
.stats-card:hover {
    background-color: rgba(55, 65, 81, 0.7);
}
.border {
    border-style: var(--tw-border-style);
    border-width: 1px;
}
.stats-card-content {
    padding: 1.5rem;
    text-align: center;
}

.stats-card-content:last-child {
    padding-bottom: 1.5rem;
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.stats-icon-yellow {
    color: #fbbf24;
}

.stats-icon-blue {
    color: #60a5fa;
}

.stats-icon-green {
    color: #34d399;
}

.stats-icon-purple {
    color: #c084fc;
}

.stats-number {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stats-label {
    color: #d1d5db;
}


/* Стили формы */
.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.form-input,
.form-textarea {
    width: 100%;
    min-width: 0;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: #f8f8f8;
    transition: all 0.15s ease;
}

.form-input {
    height: 2.25rem;
}

.form-textarea {
    min-height: 4rem;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-input:invalid,
.form-textarea:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 2.25rem;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    background-color: #ea580c;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.form-button:hover {
    background-color: #c2410c;
    transform: translateY(-1px);
}

.form-button:active {
    transform: translateY(0);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-input,
    .form-textarea {
        font-size: 16px; /* Предотвращает масштабирование на iOS */
    }
    
    .form-button {
        font-size: 1rem;
        padding: 1rem;
    }
}  




/* Стили для сетки компаний */
.companies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Стили карточки */
.company-card {
    background: #fff;
    color: #111827;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 4rem;
}

.company-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Номер карточки */
.card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.number-badge {
    width: 2rem;
    height: 2rem;
    background: #ea580c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.award-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #eab308;
}

/* Бейдж карточки */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    color: white;
}

.badge-yellow { background: #eab308; }
.badge-green { background: #10b981; }
.badge-blue { background: #3b82f6; }
.badge-purple { background: #a855f7; }
.badge-orange { background: #f97316; }
.badge-rose { background: #f43f5e; }
.badge-cyan { background: #06b6d4; }
.badge-gray { background: #6b7280; }
.badge-emerald { background: #10b981; }
.badge-indigo { background: #6366f1; }

/* Заголовок карточки */
.card-header {
    padding: 0 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.company-card:hover .card-title {
    color: #ea580c;
}

.card-category {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Рейтинг */
.card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    fill: #fbbf24;
    color: #fbbf24;
}

.rating-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.rating-count {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Контент карточки */
.card-content {
    padding: 0 1.5rem 1.5rem;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.info-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #6b7280;
}

/* Футер карточки */
.card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.details-btn {
    width: 100%;
    background: none;
    border: none;
    color: #ea580c;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
    padding: 0;
}

.details-btn:hover {
    color: #c2410c;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Адаптивность */
@media (max-width: 640px) {
    .card-header,
    .card-content {
        padding: 0 1rem 1rem;
    }
    
    .card-number {
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .card-badge {
        top: 0.75rem;
        right: 0.75rem;
    }
}



/* Reset и базовые стили */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            }

            body {
                color: #333;
                line-height: 1.6;
                overflow-x: hidden;
            }

            /* Контейнеры */
            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* Навигация */
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 0;
            }

            .logo {
                font-size: 24px;
                font-weight: 700;
                color: #000;
                text-decoration: none;
            }

            .nav-links {
                display: flex;
                gap: 30px;
            }

            .nav-links a {
                color: #666;
                text-decoration: none;
                font-weight: 500;
                transition: color 0.3s;
            }

            .nav-links a:hover {
                color: #000;
            }

            /* Герой секция */
            .hero {
                padding: 80px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 60px;
                font-weight: 800;
                margin-bottom: 20px;
                line-height: 1.1;
            }

            .hero p {
                font-size: 20px;
                color: #666;
                max-width: 700px;
                margin: 0 auto 40px;
            }

            .btn {
                display: inline-block;
                padding: 15px 30px;
                background: #000;
                color: #fff;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s;
            }

            .btn:hover {
                background: #333;
                transform: translateY(-2px);
            }

            /* Сетка проектов */
            .projects {
                padding: 80px 0;
            }

            .project-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 30px;
            }

            .project-card {
                background: #f8f8f8;
                border-radius: 12px;
                overflow: hidden;
                transition: transform 0.3s;
            }

            .project-card:hover {
                transform: translateY(-5px);
            }

            .project-img {
                width: 100%;
                height: 200px;
                background: #ddd;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #999;
            }

            .project-content {
                padding: 20px;
            }

            .project-content h3 {
                margin-bottom: 10px;
            }

            .project-content p {
                color: #666;
                font-size: 14px;
            }

            /* Футер */
            footer {
                background: #f8f8f8;
                padding: 60px 0 30px;
                margin-top: 80px;
            }

            .footer-content {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 40px;
            }

            .footer-column {
                flex: 1;
                min-width: 200px;
            }

            .footer-column h4 {
                margin-bottom: 20px;
                font-size: 18px;
            }

            .footer-column ul {
                list-style: none;
            }

            .footer-column ul li {
                margin-bottom: 10px;
            }

            .footer-column a {
                color: #666;
                text-decoration: none;
                transition: color 0.3s;
            }

            .footer-column a:hover {
                color: #000;
            }

            .copyright {
                text-align: center;
                margin-top: 60px;
                color: #999;
                font-size: 14px;
            }

            /* Адаптивность */
            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 40px;
                }

                .nav-links {
                    display: none;
                }

                .mobile-menu-btn {
                    display: block;
                }
            }

            /* Специфические стили для сайта СтройРейтинг */
            .min-h-screen {
                min-height: 100vh;
            }

            .bg-white {
                background-color: #fff;
            }

            .shadow-sm {
                box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            }

            .border-b {
                border-bottom: 1px solid #e5e7eb;
            }

            .sticky {
                position: sticky;
            }

            .top-0 {
                top: 0;
            }

            .z-50 {
                z-index: 50;
            }

            .max-w-7xl {
                max-width: 80rem;
            }

            .mx-auto {
                margin-left: auto;
                margin-right: auto;
            }

            .px-4 {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .sm\:px-6 {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .lg\:px-8 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .flex {
                display: flex;
            }

            .justify-between {
                justify-content: space-between;
            }

            .items-center {
                align-items: center;
            }

            .h-16 {
                height: 4rem;
            }

            .space-x-2 > * + * {
                margin-left: 0.5rem;
            }

            .space-x-8 > * + * {
                margin-left: 2rem;
            }

            .h-8 {
                height: 2rem;
            }

            .w-8 {
                width: 2rem;
            }

            .text-orange-600 {
                color: #ea580c;
            }

            .text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }

            .font-bold {
                font-weight: 700;
            }

            .text-gray-900 {
                color: #111827;
            }

            .hidden {
                display: none;
            }

            .md\:flex {
                display: flex;
            }

            .text-gray-700 {
                color: #374151;
            }

            .hover\:text-orange-600:hover {
                color: #ea580c;
            }

            .transition-colors {
                transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }

            .inline-flex {
                display: inline-flex;
            }

            .items-center {
                align-items: center;
            }

            .justify-center {
                justify-content: center;
            }

            .gap-2 {
                gap: 0.5rem;
            }

            .whitespace-nowrap {
                white-space: nowrap;
            }

            .rounded-md {
                border-radius: 0.375rem;
            }

            .text-sm {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .font-medium {
                font-weight: 500;
            }

            .transition-all {
                transition-property: all;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }

            .disabled\:pointer-events-none:disabled {
                pointer-events: none;
            }

            .disabled\:opacity-50:disabled {
                opacity: 0.5;
            }

            .shrink-0 {
                flex-shrink: 0;
            }

            .outline-none {
                outline: 2px solid transparent;
                outline-offset: 2px;
            }

            .h-9 {
                height: 2.25rem;
            }

            .px-4 {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .py-2 {
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }

            .mr-2 {
                margin-right: 0.5rem;
            }

            .bg-orange-600 {
                background-color: #ea580c;
            }

            .hover\:bg-orange-700:hover {
                background-color: #c2410c;
            }

            .text-primary-foreground {
                color: #fff;
            }

            .relative {
                position: relative;
            }

            .bg-gradient-to-br {
                background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
            }

            .from-orange-50 {
                --tw-gradient-from: #fff7ed;
                --tw-gradient-to: rgba(255, 247, 237, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .via-white {
                --tw-gradient-to: rgba(255, 255, 255, 0);
                --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to);
            }

            .to-blue-50 {
                --tw-gradient-to: #eff6ff;
            }

            .py-20 {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }

            .overflow-hidden {
                overflow: hidden;
            }

            .absolute {
                position: absolute;
            }

            .inset-0 {
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
            }

            .bg-gradient-to-r {
                background-image: linear-gradient(to right, var(--tw-gradient-stops));
            }

            .from-orange-500\/10 {
                --tw-gradient-from: rgba(249, 115, 22, 0.1);
                --tw-gradient-to: rgba(249, 115, 22, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-500\/10 {
                --tw-gradient-to: rgba(59, 130, 246, 0.1);
            }

            .grid {
                display: grid;
            }

            .lg\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gap-12 {
                gap: 3rem;
            }

            .text-center {
                text-align: center;
            }

            .lg\:text-left {
                text-align: left;
            }

            .inline-flex {
                display: inline-flex;
            }

            .bg-orange-100 {
                background-color: #ffedd5;
            }

            .text-orange-800 {
                color: #9a3412;
            }

            .rounded-full {
                border-radius: 9999px;
            }

            .mb-6 {
                margin-bottom: 1.5rem;
            }

            .w-4 {
                width: 1rem;
            }

            .h-4 {
                height: 1rem;
            }

            .text-4xl {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }

            .md\:text-5xl {
                font-size: 3rem;
                line-height: 1;
            }

            .lg\:text-6xl {
                font-size: 3.75rem;
                line-height: 1;
            }

            .bg-gradient-to-r {
                background-image: linear-gradient(to right, var(--tw-gradient-stops));
            }

            .from-orange-600 {
                --tw-gradient-from: #ea580c;
                --tw-gradient-to: rgba(234, 88, 12, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-600 {
                --tw-gradient-to: #2563eb;
            }

            .bg-clip-text {
                -webkit-background-clip: text;
                background-clip: text;
            }

            .text-transparent {
                color: transparent;
            }

            .text-lg {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }

            .text-gray-600 {
                color: #4b5563;
            }

            .mb-8 {
                margin-bottom: 2rem;
            }

            .max-w-2xl {
                max-width: 42rem;
            }

            .space-y-3 > * + * {
                margin-top: 0.75rem;
            }

            .flex {
                display: flex;
            }

            .text-gray-700 {
                color: #374151;
            }

            .w-5 {
                width: 1.25rem;
            }

            .h-5 {
                height: 1.25rem;
            }

            .text-green-500 {
                color: #10b981;
            }

            .mr-3 {
                margin-right: 0.75rem;
            }

            .space-y-3 > * + * {
                margin-top: 0.75rem;
            }

            .flex-col {
                flex-direction: column;
            }

            .sm\:flex-row {
                flex-direction: row;
            }

            .gap-4 {
                gap: 1rem;
            }

            .justify-center {
                justify-content: center;
            }

            .lg\:justify-start {
                justify-content: flex-start;
            }

            .mb-12 {
                margin-bottom: 3rem;
            }

            .font-medium {
                font-weight: 500;
            }

            .h-10 {
                height: 2.5rem;
            }

            .rounded-md {
                border-radius: 0.375rem;
            }

            .has-\[\>\svg\]\:px-4 {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .text-lg {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }

            .px-8 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .py-4 {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .shadow-lg {
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            }

            .hover\:shadow-xl:hover {
                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }

            .bg-background {
                background-color: #fff;
            }

            .text-foreground {
                color: #111827;
            }

            .hover\:text-accent-foreground:hover {
                color: #fff;
            }

            .dark\:bg-input\/30 {
                background-color: rgba(255, 255, 255, 0.3);
            }

            .dark\:border-input {
                border-color: #e5e7eb;
            }

            .dark\:hover\:bg-input\/50:hover {
                background-color: rgba(255, 255, 255, 0.5);
            }

            .border-2 {
                border-width: 2px;
            }

            .hover\:bg-gray-50:hover {
                background-color: #f9fafb;
            }

            .grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .max-w-md {
                max-width: 28rem;
            }

            .text-2xl {
                font-size: 1.5rem;
                line-height: 2rem;
            }

            .text-green-600 {
                color: #059669;
            }

            .mb-1 {
                margin-bottom: 0.25rem;
            }

            .text-center {
                text-align: center;
            }

            .bg-white\/80 {
                background-color: rgba(255, 255, 255, 0.8);
            }

            .backdrop-blur-sm {
                -webkit-backdrop-filter: blur(4px);
                backdrop-filter: blur(4px);
            }

            .border-2 {
                border-width: 2px;
            }

            .border-green-100 {
                border-color: #dcfce7;
            }

            .p-4 {
                padding: 1rem;
            }

            .text-blue-600 {
                color: #2563eb;
            }

            .border-blue-100 {
                border-color: #dbeafe;
            }

            .text-purple-600 {
                color: #9333ea;
            }

            .border-purple-100 {
                border-color: #f3e8ff;
            }

            .w-full {
                width: 100%;
            }

            .h-96 {
                height: 24rem;
            }

            .flex {
                display: flex;
            }

            .items-center {
                align-items: center;
            }

            .justify-center {
                justify-content: center;
            }

            .z-10 {
                z-index: 10;
            }

            .w-32 {
                width: 8rem;
            }

            .h-32 {
                height: 8rem;
            }

            .bg-gradient-to-br {
                background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
            }

            .from-orange-500 {
                --tw-gradient-from: #f97316;
                --tw-gradient-to: rgba(249, 115, 22, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-red-500 {
                --tw-gradient-to: #ef4444;
            }

            .rounded-2xl {
                border-radius: 1rem;
            }

            .shadow-2xl {
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            }

            .w-16 {
                width: 4rem;
            }

            .text-white {
                color: #fff;
            }

            .animate-ping {
                animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            }

            @keyframes ping {
                75%,
                100% {
                    transform: scale(2);
                    opacity: 0;
                }
            }

            .animate-ping {
                animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            }

            .top-8 {
                top: 2rem;
            }

            .left-8 {
                left: 2rem;
            }

            .animate-bounce {
                animation: bounce 1s infinite;
            }

            @keyframes bounce {
                0%,
                100% {
                    transform: translateY(-25%);
                    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
                }
                50% {
                    transform: none;
                    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
                }
            }

            .w-16 {
                width: 4rem;
            }

            .h-16 {
                height: 4rem;
            }

            .from-blue-500 {
                --tw-gradient-from: #3b82f6;
                --tw-gradient-to: rgba(59, 130, 246, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-600 {
                --tw-gradient-to: #2563eb;
            }

            .rounded-xl {
                border-radius: 0.75rem;
            }

            .shadow-lg {
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            }

            .w-8 {
                width: 2rem;
            }

            .h-8 {
                height: 2rem;
            }

            .top-16 {
                top: 4rem;
            }

            .right-12 {
                right: 3rem;
            }

            .w-12 {
                width: 3rem;
            }

            .h-12 {
                height: 3rem;
            }

            .from-green-500 {
                --tw-gradient-from: #10b981;
                --tw-gradient-to: rgba(16, 185, 129, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-green-600 {
                --tw-gradient-to: #059669;
            }

            .rounded-lg {
                border-radius: 0.5rem;
            }

            .w-6 {
                width: 1.5rem;
            }

            .h-6 {
                height: 1.5rem;
            }

            .bottom-20 {
                bottom: 5rem;
            }

            .left-16 {
                left: 4rem;
            }

            .w-14 {
                width: 3.5rem;
            }

            .h-14 {
                height: 3.5rem;
            }

            .from-purple-500 {
                --tw-gradient-from: #a855f7;
                --tw-gradient-to: rgba(168, 85, 247, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-purple-600 {
                --tw-gradient-to: #9333ea;
            }

            .w-7 {
                width: 1.75rem;
            }

            .h-7 {
                height: 1.75rem;
            }

            .bottom-12 {
                bottom: 3rem;
            }

            .right-8 {
                right: 2rem;
            }

            .from-yellow-500 {
                --tw-gradient-from: #eab308;
                --tw-gradient-to: rgba(234, 179, 8, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-orange-500 {
                --tw-gradient-to: #f97316;
            }

            .top-32 {
                top: 8rem;
            }

            .left-4 {
                left: 1rem;
            }

            .w-10 {
                width: 2.5rem;
            }

            .h-10 {
                height: 2.5rem;
            }

            .from-cyan-500 {
                --tw-gradient-from: #06b6d4;
                --tw-gradient-to: rgba(6, 182, 212, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-500 {
                --tw-gradient-to: #3b82f6;
            }

            .w-5 {
                width: 1.25rem;
            }

            .h-5 {
                height: 1.25rem;
            }

            .bottom-32 {
                bottom: 8rem;
            }

            .right-4 {
                right: 1rem;
            }

            .from-red-500 {
                --tw-gradient-from: #ef4444;
                --tw-gradient-to: rgba(239, 68, 68, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-pink-500 {
                --tw-gradient-to: #ec4899;
            }

            .top-0 {
                top: 0;
            }

            .right-0 {
                right: 0;
            }

            .w-24 {
                width: 6rem;
            }

            .h-24 {
                height: 6rem;
            }

            .from-orange-200 {
                --tw-gradient-from: #fed7aa;
                --tw-gradient-to: rgba(254, 215, 170, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-orange-300 {
                --tw-gradient-to: #fdba74;
            }

            .opacity-60 {
                opacity: 0.6;
            }

            .animate-pulse {
                animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            }

            @keyframes pulse {
                0%,
                100% {
                    opacity: 1;
                }
                50% {
                    opacity: 0.5;
                }
            }

            .bottom-0 {
                bottom: 0;
            }

            .left-0 {
                left: 0;
            }

            .w-20 {
                width: 5rem;
            }

            .h-20 {
                height: 5rem;
            }

            .from-blue-200 {
                --tw-gradient-from: #bfdbfe;
                --tw-gradient-to: rgba(191, 219, 254, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-300 {
                --tw-gradient-to: #93c5fd;
            }

            .top-1\/2 {
                top: 50%;
            }

            .w-16 {
                width: 4rem;
            }

            .h-16 {
                height: 4rem;
            }

            .from-green-200 {
                --tw-gradient-from: #bbf7d0;
                --tw-gradient-to: rgba(187, 247, 208, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-green-300 {
                --tw-gradient-to: #86efac;
            }

            .-bottom-6 {
                bottom: -1.5rem;
            }

            .-left-6 {
                left: -1.5rem;
            }

            .rounded-xl {
                border-radius: 0.75rem;
            }

            .p-4 {
                padding: 1rem;
            }

            .space-x-3 > * + * {
                margin-left: 0.75rem;
            }

            .bg-green-100 {
                background-color: #dcfce7;
            }

            .text-green-600 {
                color: #059669;
            }

            .-top-6 {
                top: -1.5rem;
            }

            .-right-6 {
                right: -1.5rem;
            }

            .bg-orange-500 {
                background-color: #f97316;
            }

            .top-1\/2 {
                top: 50%;
            }

            .-right-8 {
                right: -2rem;
            }

            .bg-blue-500 {
                background-color: #3b82f6;
            }

            .p-3 {
                padding: 0.75rem;
            }

            .transform {
                transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
            }

            .-translate-y-1\/2 {
                --tw-translate-y: -50%;
                transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
            }

            .from-gray-50 {
                --tw-gradient-from: #f9fafb;
                --tw-gradient-to: rgba(249, 250, 251, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-blue-50 {
                --tw-gradient-to: #eff6ff;
            }

            .mb-16 {
                margin-bottom: 4rem;
            }

            .from-gray-900 {
                --tw-gradient-from: #111827;
                --tw-gradient-to: rgba(17, 24, 39, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .items-start {
                align-items: flex-start;
            }

            .space-y-8 > * + * {
                margin-top: 2rem;
            }
.top70 {margin-top:80px !important;max-width:800px;margin:0 auto;}
            .md\:grid-cols-2 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .gap-6 {
                gap: 1.5rem;
            }

            .bg-card {
                background-color: #fff;
            }

            .text-card-foreground {
                color: #111827;
            }

            .rounded-xl {
                border-radius: 0.75rem;
            }

            .border {
                border-width: 1px;
                border-color: #e5e7eb;
            }

            .hover\:shadow-lg:hover {
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            }

            .transition-shadow {
                transition-property: box-shadow;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }

            .p-6 {
                padding: 1.5rem;
            }

            .rounded-lg {
                border-radius: 0.5rem;
            }

            .text-blue-600 {
                color: #2563eb;
            }

            .bg-blue-100 {
                background-color: #dbeafe;
            }

            .mb-4 {
                margin-bottom: 1rem;
            }

            .mb-3 {
                margin-bottom: 0.75rem;
            }

            .text-sm {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .leading-relaxed {
                line-height: 1.625;
            }

            .text-green-600 {
                color: #059669;
            }

            .bg-green-100 {
                background-color: #dcfce7;
            }

            .text-purple-600 {
                color: #9333ea;
            }

            .bg-purple-100 {
                background-color: #f3e8ff;
            }

            .text-orange-600 {
                color: #ea580c;
            }

            .bg-orange-100 {
                background-color: #ffedd5;
            }

            .from-orange-500 {
                --tw-gradient-from: #f97316;
                --tw-gradient-to: rgba(249, 115, 22, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-red-500 {
                --tw-gradient-to: #ef4444;
            }

            .sticky {
                position: sticky;
            }

            .top-8 {
                top: 2rem;
            }

            .shadow-2xl {
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            }

            .border-2 {
                border-width: 2px;
            }

            .border-orange-100 {
                border-color: #ffedd5;
            }

            .p-8 {
                padding: 2rem;
            }

            .mb-2 {
                margin-bottom: 0.5rem;
            }

            .mt-1 {
                margin-top: 0.25rem;
            }

            .file\:text-foreground::file-selector-button {
                color: #111827;
            }

            .placeholder\:text-muted-foreground::placeholder {
                color: #6b7280;
            }

            .selection\:bg-primary *::selection {
                background-color: #ea580c;
            }

            .selection\:text-primary-foreground *::selection {
                color: #fff;
            }

            .dark\:bg-input\/30 {
                background-color: rgba(255, 255, 255, 0.3);
            }

            .border-input {
                border-color: #e5e7eb;
            }

            .flex {
                display: flex;
            }

            .h-9 {
                height: 2.25rem;
            }

            .min-w-0 {
                min-width: 0px;
            }

            .px-3 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .py-1 {
                padding-top: 0.25rem;
                padding-bottom: 0.25rem;
            }

            .text-base {
                font-size: 1rem;
                line-height: 1.5rem;
            }

            .bg-input-background {
                background-color:#e8e8e8; border:0px;
            }

            .transition-\[color\2c box-shadow\] {
                transition-property: color, box-shadow;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }

            .file\:inline-flex::file-selector-button {
                display: inline-flex;
            }

            .file\:h-7::file-selector-button {
                height: 1.75rem;
            }

            .file\:border-0::file-selector-button {
                border-width: 0;
            }

            .file\:bg-transparent::file-selector-button {
                background-color: transparent;
            }

            .file\:text-sm::file-selector-button {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .file\:font-medium::file-selector-button {
                font-weight: 500;
            }

            .disabled\:cursor-not-allowed:disabled {
                cursor: not-allowed;
            }

            .md\:text-sm {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .focus-visible\:border-ring:focus-visible {
                border-color: #ea580c;
            }

            .focus-visible\:ring-ring\/50:focus-visible {
                --tw-ring-color: rgba(234, 88, 12, 0.5);
            }

            .focus-visible\:ring-\[3px\]:focus-visible {
                --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
                --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
                box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
            }

            .aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
                --tw-ring-color: rgba(239, 68, 68, 0.2);
            }

            .dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
                --tw-ring-color: rgba(239, 68, 68, 0.4);
            }

            .aria-invalid\:border-destructive[aria-invalid="true"] {
                border-color: #ef4444;
            }

            .resize-none {
                resize: none;
            }

            .field-sizing-content {
                box-sizing: content-box;
            }

            .min-h-16 {
                min-height: 4rem;
            }

            .py-2 {
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }

            .disabled\:cursor-not-allowed:disabled {
                cursor: not-allowed;
            }

            .w-full {
                width: 100%;
            }

            .py-3 {
                padding-top: 0.75rem;
                padding-bottom: 0.75rem;
            }

            .text-xs {
                font-size: 0.75rem;
                line-height: 1rem;
            }

            .text-gray-500 {
                color: #6b7280;
            }

            .mt-6 {
                margin-top: 1.5rem;
            }

            .pt-6 {
                padding-top: 1.5rem;
            }

            .border-t {
                border-top-width: 1px;
            }

            .border-gray-200 {
                border-color: #e5e7eb;
            }

            .mb-4 {
                margin-bottom: 1rem;
            }

            .flex-col {
                flex-direction: column;
            }

            .sm\:flex-row {
                flex-direction: row;
            }

            .bg-gray-50 {
                background-color: #f9fafb;
            }

            .from-gray-900 {
                --tw-gradient-from: #111827;
                --tw-gradient-to: rgba(17, 24, 39, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-gray-600 {
                --tw-gradient-to: #4b5563;
            }

            .max-w-3xl {
                max-width: 48rem;
            }

            .lg\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .gap-6 {
                gap: 1.5rem;
            }

            .overflow-hidden {
                overflow: hidden;
            }

            .group:hover .group-hover\:text-orange-600 {
                color: #ea580c;
            }

            .absolute {
                position: absolute;
            }

            .space-x-2 > * + * {
                margin-left: 0.5rem;
            }

            .text-yellow-500 {
                color: #eab308;
            }

            .pt-16 {
                padding-top: 4rem;
            }

            .space-x-1 > * + * {
                margin-left: 0.25rem;
            }

            .fill-yellow-400 {
                fill: #fbbf24;
            }

            .text-yellow-400 {
                color: #fbbf24;
            }

            .mt-4 {
                margin-top: 1rem;
            }

            .bg-yellow-500 {
                background-color: #eab308;
            }

            .bg-green-500 {
                background-color: #10b981;
            }

            .bg-blue-500 {
                background-color: #3b82f6;
            }

            .bg-purple-500 {
                background-color: #a855f7;
            }

            .bg-orange-500 {
                background-color: #f97316;
            }

            .bg-rose-500 {
                background-color: #f43f5e;
            }

            .bg-cyan-500 {
                background-color: #06b6d4;
            }

            .bg-gray-500 {
                background-color: #6b7280;
            }

            .bg-emerald-500 {
                background-color: #10b981;
            }

            .bg-indigo-500 {
                background-color: #6366f1;
            }

            .mt-12 {
                margin-top: 3rem;
            }

            .border-gray-300 {
                border-color: #d1d5db;
            }

            .hover\:bg-gray-50:hover {
                background-color: #f9fafb;
            }

            .from-white {
                --tw-gradient-from: #fff;
                --tw-gradient-to: rgba(255, 255, 255, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .bg-gradient-to-b {
                background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
            }

            .h-96 {
                height: 24rem;
            }

            .bg-gradient-to-br {
                background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
            }

            .from-blue-50 {
                --tw-gradient-from: #eff6ff;
                --tw-gradient-to: rgba(239, 246, 255, 0);
                --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            }

            .to-indigo-100 {
                --tw-gradient-to: #e0e7ff;
            }

            .cursor-pointer {
                cursor: pointer;
            }

            .transition-all {
                transition-property: all;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }

            .duration-200 {
                transition-duration: 200ms;
            }

            .hover\:r-2\.5:hover {
                r: 2.5;
            }

            .pointer-events-none {
                pointer-events: none;
            }

            .select-none {
                user-select: none;
            }

            .text-3xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }

            .md\:text-4xl {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }

            .bg-gray-900 {
                background-color: #111827;
            }

            .text-white {
                color: #fff;
            }

            .bg-gray-800 {
                background-color: #1f2937;
            }

            .py-16 {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .border-b {
                border-bottom-width: 1px;
            }

            .border-gray-700 {
                border-color: #374151;
            }

            .mb-12 {
                margin-bottom: 3rem;
            }

            .text-gray-300 {
                color: #d1d5db;
            }

            .md\:grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .gap-8 {
                gap: 2rem;
            }

            .rounded-xl {
                border-radius: 0.75rem;
            }

            .bg-gray-700\/50 {
                background-color: rgba(55, 65, 81, 0.5);
            }

            .border-gray-600 {
                border-color: #4b5563;
            }

            .backdrop-blur-sm {
                -webkit-backdrop-filter: blur(4px);
                backdrop-filter: blur(4px);
            }

            .hover\:bg-gray-700\/70:hover {
                background-color: rgba(55, 65, 81, 0.7);
            }

            .text-yellow-400 {
                color: #fbbf24;
            }

            .mx-auto {
                margin-left: auto;
                margin-right: auto;
            }

            .text-blue-400 {
                color: #60a5fa;
            }

            .text-green-400 {
                color: #34d399;
            }

            .text-purple-400 {
                color: #c084fc;
            }

            .py-16 {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .mb-12 {
                margin-bottom: 3rem;
            }

            .space-y-3 > * + * {
                margin-top: 0.75rem;
            }

            .text-gray-400 {
                color: #9ca3af;
            }

            .hover\:text-orange-500:hover {
                color: #f97316;
            }

            .space-y-4 > * + * {
                margin-top: 1rem;
            }

            .text-orange-500 {
                color: #f97316;
            }

            .mt-6 {
                margin-top: 1.5rem;
            }

            .text-gray-300 {
                color: #d1d5db;
            }

            .space-x-4 > * + * {
                margin-left: 1rem;
            }

            .p-2 {
                padding: 0.5rem;
            }

            .bg-gray-800 {
                background-color: #1f2937;
            }

            .rounded-lg {
                border-radius: 0.5rem;
            }

            .hover\:bg-gray-700:hover {
                background-color: #374151;
            }

            .border-t {
                border-top-width: 1px;
            }

            .pt-8 {
                padding-top: 2rem;
            }

            .md\:flex-row {
                flex-direction: row;
            }

            .mt-4 {
                margin-top: 1rem;
            }

            .md\:mt-0 {
                margin-top: 0;
            }

            .space-x-6 > * + * {
                margin-left: 1.5rem;
            }

            /* Анимации */
            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }

            @keyframes slideInUp {
                from {
                    transform: translateY(50px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .animate-fadeIn {
                animation: fadeIn 0.6s ease-out;
            }

            .animate-slideInUp {
                animation: slideInUp 0.8s ease-out;
            }

            /* Адаптивность */
            @media (max-width: 768px) {
                .md\:hidden {
                    display: none;
                }

                .flex-col {
                    flex-direction: column;
                }

                .sm\:flex-row {
                    flex-direction: column;
                }

                .space-x-2 > * + *,
                .space-x-3 > * + *,
                .space-x-4 > * + *,
                .space-x-6 > * + *,
                .space-x-8 > * + * {
                    margin-left: 0;
                    margin-top: 0.5rem;
                }

                .text-4xl {
                    font-size: 1.875rem;
                }

                .md\:text-5xl {
                    font-size: 2.25rem;
                }

                .lg\:text-6xl {
                    font-size: 2.5rem;
                }

                .grid-cols-3 {
                    grid-template-columns: repeat(1, minmax(0, 1fr));
                }

                .md\:grid-cols-2 {
                    grid-template-columns: repeat(1, minmax(0, 1fr));
                }

                .lg\:grid-cols-3 {
                    grid-template-columns: repeat(1, minmax(0, 1fr));
                }

                .md\:grid-cols-4 {
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                }
            }