:root {
            /* Пастельные цвета */
            --primary-gradient: linear-gradient(135deg, #a8d5ba 0%, #94c9a9 100%);
            --secondary-gradient: linear-gradient(135deg, #f7d794 0%, #f1c27d 100%);
            --accent-gradient: linear-gradient(135deg, #b8e6e1 0%, #a0d7d2 100%);
            --success-gradient: linear-gradient(135deg, #c8e6c9 0%, #b9dfba 100%);
            --warning-gradient: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            
            --primary-light: #fafcfb;
            --primary-soft: #f0f6f2;
            --text-primary: #4a5d4f;
            --text-secondary: #6b7c70;
            --text-muted: #9ca3a0;
            --card-bg: #ffffff;
            --border-light: #e8f0ea;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 12px 30px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: var(--primary-light);
            color: var(--text-primary);
            line-height: 1.7;
            font-family: 'Nunito', sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(45deg); }
            50% { transform: translateY(-10px) rotate(45deg); }
        }

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

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        .fade-in-scale {
            animation: fadeInScale 0.6s ease-out;
        }

        /* Header */
        header {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-light);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .rocket-container {
            position: relative;
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }
        
        .fa-rocket {
            font-size: 24px;
            color: white;
            animation: float 3s ease-in-out infinite;
        }
        
        .logo-text h1 {
            font-weight: 700;
            font-size: 28px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .tagline {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 4px;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--primary-gradient);
            color: white;
            padding: 14px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }
        
        .header-phone:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Hero Section - НОВЫЙ СТИЛЬ */
        .hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.08) 0%, rgba(148, 201, 169, 0.08) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.1) 0%, rgba(148, 201, 169, 0.1) 100%);
            border-radius: 50%;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(247, 215, 148, 0.1) 0%, rgba(241, 194, 125, 0.1) 100%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            text-align: left;
        }

        .hero h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin: 0 0 30px;
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.6;
        }

        .hero-features {
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .hero-feature i {
            width: 20px;
            height: 20px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
        }
        
        .hero-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
        }

        .search-container {
            max-width: 100%;
            margin: 0;
        }
        
        .search-wrapper {
            position: relative;
            background: var(--card-bg);
            border-radius: 60px;
            padding: 8px;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-light);
        }

        .search-container input {
            width: 100%;
            padding: 20px 60px 20px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            color: var(--text-primary);
            background: transparent;
            outline: none;
            font-weight: 500;
        }
        
        .search-container input::placeholder {
            color: var(--text-muted);
        }

        .search-btn {
            position: absolute;
            right: 8px;
            top: 8px;
            background: var(--primary-gradient);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }
        
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }
        
        .search-btn i {
            color: white;
            font-size: 18px;
        }

        /* Stats Section - НОВЫЙ СТИЛЬ */
        .stats {
            padding: 60px 0;
            background: var(--card-bg);
            position: relative;
            z-index: 3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .stat-item {
            background: var(--card-bg);
            padding: 32px 24px;
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: #a8d5ba;
        }

        .stat-item:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
            box-shadow: var(--shadow-sm);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 600;
            line-height: 1.4;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .stats-title {
            font-size: 32px;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .stats-subtitle {
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
        }

        /* Filters */
        .filters {
            padding: 40px 0;
        }

        .filters-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }
        
        .filters h3 {
            margin-bottom: 24px;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-primary);
        }

        .filters h3 i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .filter-btn {
            padding: 12px 24px;
            background: var(--primary-soft);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition);
            white-space: nowrap;
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .filter-btn.active {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .services-header h2 {
            font-size: 36px;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .sort-options {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .sort-label {
            font-weight: 600;
            color: var(--text-secondary);
        }
        
        .sort-options select {
            padding: 12px 20px;
            border-radius: 12px;
            border: 2px solid var(--border-light);
            background: var(--card-bg);
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            outline: none;
        }

        .sort-options select:focus {
            border-color: #a8d5ba;
        }

        /* Service Cards - НОВЫЙ СТИЛЬ */
        .services-grid {
            display: grid;
            gap: 24px;
        }
        
        .service-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 2px solid var(--border-light);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: #a8d5ba;
        }

        /* Выделенная карточка */
        .service-card.featured {
            border: 2px solid #a8d5ba;
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .service-card.featured::before {
            content: '⭐ ТОП';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: var(--primary-gradient);
            color: white;
            text-align: center;
            padding: 8px;
            font-size: 12px;
            font-weight: 700;
            z-index: 10;
        }

        .service-card.featured:hover {
            transform: scale(1.02) translateY(-4px);
        }

        .card-content {
            padding: 24px;
        }

        .card-content.featured-padding {
            padding-top: 40px;
        }
        
        .company-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: white;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }
        
        .company-details h3 {
            font-size: 22px;
            margin-bottom: 8px;
            color: var(--text-primary);
            font-weight: 700;
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .rating-score {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            background: var(--primary-soft);
            padding: 4px 8px;
            border-radius: 6px;
        }
        
        .stars {
            color: #f7d794;
            font-size: 14px;
        }

        .rating-count {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .service-info {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: start;
        }

        .service-details p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 14px;
        }
        
        .service-details i {
            width: 16px;
            color: #a8d5ba;
            text-align: center;
            font-size: 14px;
        }
        
        .price-section {
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .price {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            background: var(--success-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            white-space: nowrap;
        }
        
        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: var(--shadow-sm);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: white;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
            grid-column: 1 / -1;
        }
        
        .tag {
            background: var(--primary-soft);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
            border: 1px solid var(--border-light);
            white-space: nowrap;
        }

        /* Reviews Section - УБРАНА ПУСТОТА */
        .reviews-section {
            padding: 32px 0;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: var(--shadow-md);
        }
        
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 24px;
        }
        
        .reviews-header h2 {
            font-size: 32px;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .review-nav {
            display: flex;
            gap: 8px;
        }
        
        .review-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 2px solid var(--border-light);
            background: var(--card-bg);
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            font-size: 14px;
        }
        
        .review-nav-btn:hover {
            border-color: #a8d5ba;
            background: var(--primary-gradient);
            color: white;
            transform: scale(1.05);
        }

        .review-nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .review-nav-btn:disabled:hover {
            border-color: var(--border-light);
            background: var(--card-bg);
            color: var(--text-primary);
        }
        
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 0 24px;
        }

        .review-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
        }

        .review-card.hidden {
            display: none;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: 16px;
            font-size: 40px;
            color: var(--border-light);
            font-weight: bold;
            line-height: 1;
        }
        
        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .review-author {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 15px;
        }
        
        .review-date {
            color: var(--text-muted);
            font-size: 13px;
        }
        
        .review-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        
        .review-company {
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            font-size: 13px;
        }
        
        .review-text {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
            font-style: italic;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background-color: var(--card-bg);
            margin: 5% auto;
            padding: 0;
            border-radius: var(--border-radius);
            width: 90%;
            max-width: 800px;
            box-shadow: var(--shadow-xl);
            animation: fadeInScale 0.3s ease;
            overflow: hidden;
        }

        .modal-header {
            background: var(--primary-gradient);
            color: white;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 700;
        }

        .close {
            color: white;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: var(--transition);
        }

        .close:hover {
            background: rgba(255,255,255,0.2);
        }

        .modal-body {
            padding: 24px;
        }

        /* Info Section */
        .info-section {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 50px;
            margin: 60px 0;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }
        
        .info-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 16px;
        }
        
        .info-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .info-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .info-content h3 {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 24px 0 16px;
            font-size: 20px;
            font-weight: 700;
            padding-left: 16px;
            border-left: 3px solid #a8d5ba;
        }
        
        .info-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        .info-content ul {
            padding-left: 24px;
            margin-bottom: 20px;
        }
        
        .info-content li {
            margin-bottom: 10px;
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 500;
        }

        .info-content li strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        /* FAQ Section */
        .faq-section {
            margin: 60px 0;
        }
        
        .faq-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 16px;
        }
        
        .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--primary-soft);
            transition: var(--transition);
            font-size: 15px;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.15) 0%, rgba(148, 201, 169, 0.15) 100%);
        }
        
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            transition: var(--transition);
            color: #a8d5ba;
            font-size: 12px;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: var(--text-secondary);
            line-height: 1.6;
            font-weight: 500;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 24px 20px;
            max-height: 500px;
        }

        /* Join Rating Section - В ТРИ РАЗА МЕНЬШЕ И НЕЗАМЕТНЫЙ */
        .join-rating {
            background: var(--primary-soft);
            border-radius: var(--border-radius);
            padding: 30px 24px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        
        .join-rating h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        
        .join-rating p {
            max-width: 500px;
            margin: 0 auto 20px;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .join-rating .btn {
            background: var(--primary-gradient);
            color: white;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 8px;
        }

        .join-rating .btn:hover {
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #4a5d4f 0%, #a8d5ba 100%);
            padding: 60px 0 30px;
            color: white;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/></svg>') top;
            background-size: cover;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: rgba(255,255,255,0.6);
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            text-decoration: none;
            color: rgba(255,255,255,0.85);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(6px);
        }

        .footer-column p {
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            font-weight: 500;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .reviews-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 16px;
            }

            .menu-toggle {
                display: block;
            }

            .header-actions {
                order: -1;
                width: 100%;
                justify-content: space-between;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h2 {
                font-size: 32px;
            }

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

            .search-container {
                margin-top: 32px;
            }

            .stats {
                padding: 30px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 28px;
            }
            
            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .services-header h2 {
                font-size: 28px;
            }

            .service-info {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .price-section {
                align-items: flex-start;
                text-align: left;
            }
            
            .reviews-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .reviews-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                text-align: center;
            }

            .reviews-header h2 {
                font-size: 24px;
            }
            
            .info-section {
                padding: 30px 20px;
            }

            .info-section h2, .faq-section h2 {
                font-size: 24px;
            }

            .modal-content {
                width: 95%;
                margin: 10% auto;
            }

            .modal-header, .modal-body {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero h2 {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 14px;
            }

            .hero-card {
                padding: 24px;
                border-radius: 16px;
            }

            .search-container input {
                font-size: 16px;
                padding: 16px 50px 16px 20px;
            }

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

            .stat-number {
                font-size: 28px;
            }

            .stat-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .stats-title {
                font-size: 24px;
            }
            
            .filter-options {
                justify-content: center;
            }
            
            .filter-btn {
                padding: 10px 18px;
                font-size: 13px;
            }

            .card-content {
                padding: 20px;
            }

            .card-content.featured-padding {
                padding-top: 36px;
            }

            .filters-card {
                padding: 24px;
            }

            .company-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .join-rating {
                padding: 24px 16px;
            }

            .join-rating h2 {
                font-size: 18px;
            }

            .join-rating p {
                font-size: 13px;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10000;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--border-light);
            border-top: 3px solid #a8d5ba;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: var(--primary-gradient);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }

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

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

#Terms Of Use

    .legal-page {
        background: var(--primary-light);
        min-height: 100vh;
    }

    .legal-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 24px 80px;
    }

    .legal-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 40px 0;
        background: var(--card-bg);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
    }

    .legal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
    }

    .legal-header h1 {
        font-size: 36px;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 12px;
    }

    .legal-header .subtitle {
        color: var(--text-secondary);
        font-size: 18px;
        font-weight: 500;
    }

    .last-updated {
        background: var(--primary-soft);
        padding: 16px 24px;
        border-radius: 12px;
        margin-bottom: 30px;
        border-left: 4px solid #a8d5ba;
    }

    .last-updated p {
        color: var(--text-primary);
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .legal-content {
        background: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 40px;
        box-shadow: var(--shadow-md);
        line-height: 1.7;
    }

    .legal-content h2 {
        color: var(--text-primary);
        font-size: 24px;
        font-weight: 700;
        margin: 32px 0 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--border-light);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .legal-content h2:first-child {
        margin-top: 0;
    }

    .legal-content h2 i {
        color: #a8d5ba;
        font-size: 20px;
    }

    .legal-content h3 {
        color: var(--text-primary);
        font-size: 18px;
        font-weight: 600;
        margin: 24px 0 12px;
    }

    .legal-content p {
        color: var(--text-secondary);
        font-size: 15px;
        margin-bottom: 16px;
        font-weight: 500;
    }

    .legal-content ul, .legal-content ol {
        padding-left: 24px;
        margin-bottom: 16px;
    }

    .legal-content li {
        color: var(--text-secondary);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .legal-content strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .contact-info {
        background: var(--primary-soft);
        padding: 24px;
        border-radius: 12px;
        margin: 24px 0;
        border: 1px solid var(--border-light);
    }

    .contact-info h4 {
        color: var(--text-primary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-info p {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contact-info i {
        color: #a8d5ba;
        width: 16px;
        text-align: center;
    }

    .highlight-box {
        background: linear-gradient(135deg, rgba(168, 213, 186, 0.1), rgba(148, 201, 169, 0.1));
        border: 2px solid #a8d5ba;
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
    }

    .highlight-box h4 {
        color: var(--text-primary);
        font-weight: 700;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .highlight-box i {
        color: #a8d5ba;
    }

    .warning-box {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
        border: 2px solid #ffc107;
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
    }

    .warning-box h4 {
        color: #f57c00;
        font-weight: 700;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .warning-box i {
        color: #ffc107;
    }

    .breadcrumbs {
        margin-bottom: 20px;
        padding: 12px 0;
    }

    .breadcrumbs a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .breadcrumbs a:hover {
        color: #a8d5ba;
    }

    .breadcrumbs span {
        color: var(--text-muted);
        margin: 0 8px;
    }

    @media (max-width: 768px) {
        .legal-container {
            padding: 20px 16px 60px;
        }

        .legal-header {
            padding: 30px 20px;
        }

        .legal-header h1 {
            font-size: 28px;
        }

        .legal-content {
            padding: 24px 20px;
        }

        .legal-content h2 {
            font-size: 20px;
        }
    }

# Privacy


	