  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #e0e5ec;
            color: #1a2c3e;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Neumorphism Core Variables */
        :root {
            --bg-color: #e0e5ec;
            --text-dark: #2c3e50;
            --text-muted: #5c6e7e;
            --primary: #4a90e2;
            --primary-dark: #3a7bc8;
            --shadow-light: #ffffff;
            --shadow-dark: #a3b1c6;
            --neumorph-light: 9px 9px 16px var(--shadow-dark), -9px -9px 16px var(--shadow-light);
            --neumorph-inset: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
            --neumorph-hover: 12px 12px 20px var(--shadow-dark), -12px -12px 20px var(--shadow-light);
            --neumorph-active: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
            --radius: 2rem;
            --radius-sm: 1.2rem;
            --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: 5rem 0;
        }

        /* Neumorphism Text Gradient */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: var(--text-dark);
            text-shadow: 2px 2px 4px var(--shadow-light), -2px -2px 4px var(--shadow-dark);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: 3rem;
        }

        /* Neumorphism Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border-radius: 3rem;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            background: var(--bg-color);
            box-shadow: var(--neumorph-light);
            color: var(--text-dark);
        }

        .btn-primary {
            background: var(--bg-color);
            color: var(--primary);
            box-shadow: var(--neumorph-light);
        }

        .btn-primary:hover {
            box-shadow: var(--neumorph-hover);
            transform: translateY(-2px);
            color: var(--primary-dark);
        }

        .btn-outline {
            background: var(--bg-color);
            box-shadow: var(--neumorph-light);
            color: var(--text-muted);
        }

        .btn-outline:hover {
            box-shadow: var(--neumorph-hover);
            transform: translateY(-2px);
            color: var(--primary);
        }

        /* Navbar Neumorphism */
        .navbar {
            position: sticky;
            top: 1rem;
            z-index: 1000;
            margin: 1rem;
            border-radius: 4rem;
            background: var(--bg-color);
            box-shadow: var(--neumorph-light);
            backdrop-filter: blur(4px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            text-shadow: 2px 2px 4px var(--shadow-light), -2px -2px 4px var(--shadow-dark);
            letter-spacing: -0.02em;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
        }

        .nav-links a:hover {
            box-shadow: var(--neumorph-inset);
            color: var(--primary);
        }
		
		.nav-links-tel a {
			text-decoration: none;
            font-weight: 500;
            
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
			box-shadow: var(--neumorph-inset);
            color: var(--primary);
		}

        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-dark);
        }
		
		/* Телефон в шапке (стиль как у hero-badge) */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-color);
    box-shadow: var(--neumorph-inset);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-phone:hover {
    box-shadow: var(--neumorph-hover);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* На мобильных: телефон слева (рядом с логотипом) */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        justify-content: space-between;
    }
    
    .nav-phone {
        order: 1;           /* размещаем после логотипа, перед бургером */
        margin-left: auto;  /* прижимаем к правому краю? Нет, чтобы был слева от бургера */
        margin-right: 1rem;
    }
    
    .burger {
        order: 2;
    }
    
    .nav-links {
        order: 3;
    }
    
    /* Опционально: на очень маленьких экранах скрываем текст номера, оставляем только иконку */
    @media (max-width: 480px) {
        .nav-phone span {
            display: none;
        }
        .nav-phone {
            padding: 0.5rem;
            margin-right: 0.5rem;
        }
    }
}

/* Для планшетов и десктопов: телефон справа от меню */
@media (min-width: 769px) {
    .nav-container {
        display: flex;
        align-items: center;
    }
    
    .nav-phone {
        margin-left: auto;  /* прижимаем вправо */
        margin-right: 1.5rem;
    }
    
    .burger {
        display: none;
    }
}

        /* Hero Section Neumorphism */
        .hero {
            padding: 2rem 0 4rem;
        }

        .hero-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 280px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: var(--bg-color);
            box-shadow: var(--neumorph-inset);
            color: var(--primary);
            padding: 0.4rem 1.2rem;
            border-radius: 3rem;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            text-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 550px;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        .hero-image {
            flex: 1;
            text-align: center;
            animation: fadeInRight 0.8s ease-out;
        }

        .hero-image i {
            font-size: 16rem;
            color: var(--primary);
            filter: drop-shadow(6px 6px 12px var(--shadow-dark)) drop-shadow(-6px -6px 12px var(--shadow-light));
            transition: transform 0.5s;
        }

        .hero-image i:hover {
            transform: scale(1.02);
        }

        /* Neumorphism Cards */
        .services-grid, .benefits-grid, .portfolio-grid, .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card, .benefit-item, .step, .portfolio-item, .review-card {
            background: var(--bg-color);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--neumorph-light);
            transition: var(--transition);
            border: none;
        }

        .service-card:hover, .benefit-item:hover, .step:hover, .portfolio-item:hover, .review-card:hover {
            box-shadow: var(--neumorph-hover);
            transform: translateY(-6px);
        }

        .service-icon, .benefit-item i, .portfolio-img i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            text-shadow: 2px 2px 4px var(--shadow-dark);
        }

        .service-card h3, .benefit-item h3, .step h3, .portfolio-info h3, .review-author {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
        }

        .step-number {
            width: 54px;
            height: 54px;
            background: var(--bg-color);
            color: var(--primary);
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.6rem;
            margin: 0 auto 1.2rem;
            box-shadow: var(--neumorph-inset);
        }

        .portfolio-img {
            background: var(--bg-color);
            border-radius: 1.5rem;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: var(--neumorph-inset);
        }

        .review-text {
            font-style: italic;
            margin-bottom: 1.2rem;
            color: var(--text-muted);
        }

        /* Contact Neumorphism */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            background: var(--bg-color);
            border-radius: 3rem;
            padding: 3rem;
            box-shadow: var(--neumorph-light);
        }

        .contact-item {
            flex: 1;
            min-width: 180px;
            text-align: center;
        }

        .contact-item i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px var(--shadow-dark);
        }

        /* Footer Neumorphism */
        footer {
            background: var(--bg-color);
            color: var(--text-muted);
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
            box-shadow: var(--neumorph-light);
            border-radius: 2rem 2rem 0 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll Top Neumorphism */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--bg-color);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: 0.3s;
            box-shadow: var(--neumorph-light);
            z-index: 99;
        }
        .scroll-top.visible {
            opacity: 1;
        }
        .scroll-top:hover {
            box-shadow: var(--neumorph-hover);
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--bg-color);
                flex-direction: column;
                padding: 2rem;
                transition: 0.3s;
                box-shadow: var(--neumorph-light);
                gap: 1.5rem;
                align-items: flex-start;
                border-radius: 2rem;
            }
            .nav-links.active {
                left: 1rem;
            }
            .burger {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-image i {
                font-size: 10rem;
            }
            .timeline {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            .container {
                padding: 0 1rem;
            }
            section {
                padding: 3rem 0;
            }
        }


/* Neumorphism Toggle - под заголовком */
.neo-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.neo-toggle {
    width: 60px;
    height: 30px;
    background: var(--bg-color, #e0e5ec);
    border-radius: 30px;
    box-shadow: var(--neumorph-light);
    cursor: pointer;
    transition: var(--transition);
}

.neo-toggle:hover {
    box-shadow: var(--neumorph-hover);
    transform: translateY(-2px);
}

.neo-toggle__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-color, #e0e5ec);
    border-radius: 30px;
    box-shadow: inset 4px 4px 8px var(--shadow-dark, #a3b1c6), inset -4px -4px 8px var(--shadow-light, #ffffff);
}

.neo-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--primary, #4a90e2);
    border-radius: 50%;
    box-shadow: 2px 2px 5px var(--shadow-dark, #a3b1c6), -2px -2px 5px var(--shadow-light, #ffffff);
    transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Активное состояние (переключено) */
.neo-toggle.active .neo-toggle__thumb {
    transform: translateX(30px);
    background: var(--primary-dark, #3a7bc8);
}

.neo-toggle-hint {
    font-size: 12px;
    color: var(--text-muted, #5c6e7e);
    opacity: 0.6;
    letter-spacing: -0.2px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .neo-toggle {
        width: 52px;
        height: 26px;
    }
    
    .neo-toggle__thumb {
        width: 20px;
        height: 20px;
        top: 3px;
        left: 3px;
    }
    
    .neo-toggle.active .neo-toggle__thumb {
        transform: translateX(26px);
    }
    
    .neo-toggle-hint {
        font-size: 10px;
    }
}