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

        :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #10b981;
            --accent-color: #f59e0b;
            --danger-color: #dc2626;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-light: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header and mobile menu styles moved to header-footer.css */

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

        .page-header {
            background: var(--bg-white);
            padding: 40px;
            margin-bottom: 50px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .breadcrumbs {
            margin-bottom: 20px;
            font-size: 14px;
        }

        .breadcrumbs a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumbs a:hover {
            color: var(--primary-color);
        }

        .page-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
        }

        /* Services Intro */
        .services-intro {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 50px 0;
            border-radius: 20px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .services-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

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

        .services-intro h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .services-intro p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Services Grid */
        .main-services {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 50px;
        }

        .service-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .service-icon {
            font-size: 56px;
            margin-bottom: 24px;
            display: block;
        }

        .service-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .service-description {
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .service-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            padding-left: 32px;
            font-size: 15px;
        }

        .service-features li::before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 12px;
            font-size: 16px;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-price {
            margin-bottom: 24px;
        }

        .price {
            font-size: 2.2rem;
            font-weight: 800;
            display: block;
            margin-bottom: 4px;
        }

        .price.paid {
            color: var(--secondary-color);
        }

        .price.free {
            color: var(--accent-color);
        }

        .price-note {
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
        }

        .service-btn {
            background: var(--secondary-color);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .service-btn:hover {
            background: #059669;
            transform: translateY(-2px);
        }

        .service-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Detailed Services */
        .detailed-services {
            margin-bottom: 80px;
        }

        .service-detail {
            background: var(--bg-white);
            margin-bottom: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }

        .service-detail-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 24px 32px;
            font-weight: 700;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-detail-content {
            padding: 40px 32px;
        }

        .service-process {
            margin-top: 32px;
        }

        .process-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .step {
            background: var(--bg-light);
            padding: 24px 20px;
            border-radius: 16px;
            text-align: center;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
        }

        .step:hover {
            border-color: var(--primary-color);
            transform: translateY(-4px);
        }

        .step-number {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-weight: 800;
            font-size: 18px;
        }

        .step-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .step-description {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.5;
        }

        /* Pricing Table */
        .pricing-section {
            margin-bottom: 80px;
        }

        .pricing-table {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }

        /* Стили для контейнера прайс-листа */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            border-radius: 12px;
        }

        #services-pricing-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            border-radius: 12px;
        }

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

        .pricing-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            min-height: 80px;
            gap: 8px;
        }

        .pricing-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .pricing-item:last-child {
            border-bottom: 2px solid var(--border-light);
        }

        .pricing-service {
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 8px;
        }

        .pricing-price {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.2rem;
            text-align: center;
        }

        /* Специальный стиль для блока "БЕЗКОШТОВНО" */
        .pricing-item.free-service .pricing-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary-color);
        }

        /* Guarantee Section */
        .guarantee-section {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            border: 2px solid var(--secondary-color);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 60px;
        }

        .guarantee-section h3 {
            color: #065f46;
            margin-bottom: 16px;
            font-size: 1.8rem;
            font-weight: 800;
        }

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

        .guarantee-item {
            background: rgba(255, 255, 255, 0.7);
            padding: 20px;
            border-radius: 12px;
        }

        .guarantee-item strong {
            color: #065f46;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            text-align: center;
            margin-bottom: 60px;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-phone {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-phone:hover {
            background: white;
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Loading Animation */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-nav {
            display: flex;
            gap: 24px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #93c5fd;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 24px;
            text-align: center;
            color: #9ca3af;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 24px;
            }
            
            .process-steps {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .page-header {
                padding: 40px 24px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            /* Адаптивные стили для прайс-листа */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            #services-pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .pricing-item {
                padding: 16px;
                min-height: 70px;
                gap: 6px;
            }
            
            .pricing-service {
                font-size: 0.9rem;
            }
            
            .pricing-price {
                font-size: 1.1rem;
            }
            
            /* Специальный стиль для блока "БЕЗКОШТОВНО" на мобильных */
            .pricing-item.free-service .pricing-price {
                font-size: 1.2rem;
            }
            
            .services-intro h2 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 32px 24px;
            }
            
            .service-detail-content {
                padding: 32px 24px;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .guarantee-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-table {
                padding: 32px 24px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 12px 0;
            }
            
            .page-header {
                padding: 40px 20px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            /* Адаптивные стили для прайс-листа на очень маленьких экранах */
            #services-pricing-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .pricing-item {
                padding: 12px;
                min-height: 60px;
                gap: 4px;
            }
            
            .pricing-service {
                font-size: 0.85rem;
            }
            
            .pricing-price {
                font-size: 1rem;
            }
            
            /* Специальный стиль для блока "БЕЗКОШТОВНО" на очень маленьких экранах */
            .pricing-item.free-service .pricing-price {
                font-size: 1.1rem;
            }
            
            .logo-icon {
                font-size: 28px;
            }
            
            /* .phone-main стили в header-footer.css */
            
            .page-title {
                font-size: 2rem;
            }
            
            .services-intro {
                padding: 40px 20px;
            }
            
            .services-intro h2 {
                font-size: 1.8rem;
            }
            
            .service-icon {
                font-size: 48px;
            }
            
            .service-title {
                font-size: 1.4rem;
            }
            
            .price {
                font-size: 1.8rem;
            }
            
            .cta-section {
                padding: 50px 24px;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-light: #000000;
                --text-light: #000000;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--bg-white);
            margin: 5% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: var(--shadow-xl);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 24px 32px;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

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

        .contact-form {
            padding: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
            background-color: white;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group input[readonly] {
            background-color: var(--bg-light);
            color: var(--text-light);
            font-style: italic;
        }

        .form-actions {
            margin-top: 32px;
        }

        .submit-btn {
            background: var(--secondary-color);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
        }

        .submit-btn:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Mobile responsive for modal */
        @media (max-width: 768px) {
            .modal-content {
                margin: 10% auto;
                width: 95%;
            }
            
            .modal-header {
                padding: 20px 24px;
            }
            
            .contact-form {
                padding: 24px;
            }
        }
