  /* ===== ПОЛНОСТЬЮ СОХРАНЕНА СТРУКТУРА И ДИЗАЙН ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e1e2f;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        :root {
            --primary: #2c3e2f;
            --primary-dark: #1f2c21;
            --secondary: #c49a6c;
            --accent: #e6bc8b;
            --gray-bg: #f9f7f4;
            --gray-light: #f0ede8;
            --text-dark: #2d2f36;
            --text-muted: #5e636e;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --shadow-md: 0 20px 25px -12px rgba(0,0,0,0.08);
        }
        h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; }
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 680px;
            margin-bottom: 2.5rem;
            border-left: 3px solid var(--secondary);
            padding-left: 1rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(44,62,47,0.2);
        }

        /* ===== NAVBAR (бургер сохранен) ===== */
        .navbar {
            background: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(2px);
            background: rgba(255,255,255,0.96);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .logo span { color: var(--secondary); }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--secondary); }
        .nav-phone {
            background: var(--gray-light);
            padding: 8px 18px;
            border-radius: 60px;
            font-weight: 600;
            color: var(--primary);
            transition: 0.2s;
            white-space: nowrap;
        }
        .nav-phone:hover { background: var(--accent); color: var(--primary-dark); }

        .burger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }
        .burger span {
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            transition: 0.25s ease;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 30px rgba(0,0,0,0.1);
            z-index: 1002;
            padding: 80px 32px 40px;
            transition: left 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .mobile-menu a {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-dark);
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid #f0eae2;
        }
        .mobile-menu a:hover { color: var(--secondary); }
        .mobile-menu .mobile-phone {
            margin-top: 20px;
            background: var(--gray-light);
            display: inline-block;
            width: fit-content;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            opacity: 0;
            visibility: hidden;
            transition: 0.25s;
            z-index: 1001;
        }
        body.menu-open .mobile-menu { left: 0; }
        body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
        body.menu-open .burger span:first-child { transform: translateY(9px) rotate(45deg); }
        body.menu-open .burger span:nth-child(2) { opacity: 0; }
        body.menu-open .burger span:last-child { transform: translateY(-9px) rotate(-45deg); }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .burger { display: flex; }
            .nav-container { padding: 12px 20px; }
            .nav-phone {
                margin-right: 12px;
                font-size: 0.9rem;
                padding: 6px 16px;
            }
            .hero-grid, .contact-grid { grid-template-columns: 1fr; }
            .hero-title { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
        }
        @media (max-width: 550px) {
            .nav-phone { padding: 6px 12px; font-size: 0.8rem; }
            .logo { font-size: 1.4rem; }
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(105deg, #f7f3ef 0%, #ffffff 100%);
            padding: 70px 0 80px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-title {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #1f2a1b;
        }
        .hero-highlight {
            color: var(--secondary);
            border-bottom: 3px solid var(--accent);
        }
        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 2rem;
        }
        .stat-item { font-weight: 700; }
        .stat-number { font-size: 1.8rem; color: var(--primary); }
        .hero-image {
            border-radius: 28px;
            min-height: 340px;
            box-shadow: var(--shadow-md);
            background-size: cover;
            background-position: center;
            background-image: linear-gradient(120deg, rgba(44,62,47,0.2), rgba(0,0,0,0.05)), url('https://images.pexels.com/photos/160388/pexels-photo-160388.jpeg?auto=compress&cs=tinysrgb&w=800');
        }

        section { padding: 80px 0; }
        .bg-light { background-color: var(--gray-bg); }

        /* ===== КАРТОЧКИ УСЛУГ (НАПЛАВЛЯЕМАЯ) ===== */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .service-card {
            background: white;
            border-radius: 24px;
            padding: 30px 24px;
            transition: all 0.25s;
            box-shadow: var(--shadow-sm);
            border: 1px solid #f0eae2;
        }
        .service-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .service-card h3 { margin-bottom: 12px; font-size: 1.5rem; }

        /* ===== ПОРТФОЛИО ===== */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin: 40px 0 20px;
        }
        .portfolio-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: var(--shadow-sm);
        }
        .portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .portfolio-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .portfolio-info { padding: 20px 20px 24px; }
        .portfolio-title { font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
        .portfolio-details {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 12px;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-top: 1px solid #eee;
            padding-top: 14px;
        }
        .detail-item { display: flex; align-items: center; gap: 6px; }
        .badge {
            background: var(--gray-light);
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.8rem;
        }

        /* ===== ТАБЛИЦА ЦЕН ===== */
        .pricing-table {
            background: white;
            border-radius: 28px;
            overflow-x: auto;
            box-shadow: var(--shadow-sm);
        }
        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .pricing-table th {
            background: var(--primary);
            color: white;
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
        }
        .pricing-table td {
            padding: 14px 20px;
            border-bottom: 1px solid #e9e5df;
        }

        /* ===== КОНТАКТЫ ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
        }
        .contact-icon {
            width: 52px;
            height: 52px;
            background: var(--gray-light);
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
        }
        .form-group { margin-bottom: 20px; }
        input, textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2dcd5;
            border-radius: 32px;
            font-family: 'Inter', sans-serif;
            background: white;
            transition: 0.2s;
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(196,154,108,0.2);
        }
        footer {
            background: #1e2a1c;
            color: #cfd8cd;
            padding: 40px 0;
            text-align: center;
        }