
        /* ===== ОБЩИЕ СТИЛИ (хедер, герой, преимущества, о нас, форма, контакты, карта, футер) ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1e90ff;
            --primary-dark: #1670cc;
            --primary-light: #6ab8ee;
            --primary-gradient: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
            --secondary: #ff6b35;
            --text-dark: #1a1a2e;
            --text-muted: #4a4a5a;
            --bg-light: #f4f7fc;
            --bg-white: #ffffff;
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 40px rgba(0,0,0,0.08);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            display: block;
        }

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

        .section {
            padding: 80px 0;
        }

        .section-label {
            display: inline-block;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 8px;
            position: relative;
            padding-left: 48px;
        }
        .section-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .section-title span {
            color: var(--primary);
        }

        .section-sub {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 620px;
            margin-bottom: 40px;
        }

        .text-center .section-sub {
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== КНОПКИ (общие) ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 4px 20px rgba(30,144,255,0.35);
            font-family: var(--font);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(30,144,255,0.45);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            box-shadow: none;
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 20px rgba(30,144,255,0.35);
        }
        .btn-sm {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
        }
        .header.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--text-dark);
        }
        .logo img {
            height: 40px;
            width: auto;
        }
        .logo span {
            color: var(--primary);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            position: relative;
        }
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        .nav a:hover {
            color: var(--text-dark);
        }
        .nav a:hover::after {
            width: 100%;
        }
        .nav .btn-nav {
            padding: 8px 20px;
            font-size: 0.85rem;
            border-radius: 50px;
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 4px 14px rgba(30,144,255,0.3);
        }
        .nav .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(30,144,255,0.4);
            color: #fff;
        }
        .nav .btn-nav::after {
            display: none;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .burger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 72px;
            background: var(--bg-light);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/herobg.jpg') center/cover no-repeat;
            z-index: 0;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,20,60,0.75) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            padding: 40px 0;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px 6px 12px;
            border-radius: 50px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.9);
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 24px;
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ade80;
            display: inline-block;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .hero h1 {
            font-size: 3.6rem;
            font-weight: 800;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: var(--primary-light);
        }
        .hero p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.85);
            max-width: 540px;
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        .hero-stats-item {
            color: #fff;
        }
        .hero-stats-item .num {
            font-size: 1.8rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }
        .hero-stats-item .label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-top: 4px;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            background: #fff;
            z-index: 1;
            pointer-events: none;
        }
        .shape-1 {
            width: 400px;
            height: 400px;
            top: -120px;
            right: -80px;
        }
        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 60px;
            right: 60px;
        }

        /* ===== ADVANTAGES ===== */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 16px;
        }
        .advantage-card {
            background: var(--bg-white);
            padding: 32px 24px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }
        .advantage-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }
        .advantage-card:hover::before {
            opacity: 1;
        }
        .advantage-card .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(30,144,255,0.1);
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 16px;
        }
        .advantage-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .advantage-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* ===== ABOUT ===== */
        .about-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .about-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .about-content h2 span {
            color: var(--primary);
        }
        .about-content p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 24px;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }
        .about-features li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .about-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* ===== FORM ===== */
        .form-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .form-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 100%;
            min-height: 400px;
            background: url('/assets/form.jpg') center/cover no-repeat;
        }
        .form-card {
            background: var(--bg-white);
            padding: 40px 36px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .form-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .form-card .desc {
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ecf2;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: var(--font);
            transition: var(--transition);
            background: var(--bg-light);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(30,144,255,0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-card .btn {
            width: 100%;
            margin-top: 8px;
        }
        .form-footnote {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* ===== CONTACTS ===== */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 16px;
        }
        .contact-item {
            background: var(--bg-white);
            padding: 28px 20px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
        }
        .contact-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .contact-item .icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .contact-item h4 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        .contact-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }
        .contact-item a {
            color: var(--text-dark);
        }
        .contact-item a:hover {
            color: var(--primary);
        }

        /* ===== MAP ===== */
        .map-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 400px;
            background: #e8ecf2;
        }
        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.7);
            padding: 40px 0 24px;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer .logo {
            color: #fff;
        }
        .footer .logo img {
            filter: brightness(0) invert(1);
        }
        .footer a {
            color: rgba(255,255,255,0.7);
        }
        .footer a:hover {
            color: #fff;
        }
        .footer .copy {
            font-size: 0.85rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            .about-wrap { grid-template-columns: 1fr; gap: 32px; }
            .form-wrap { grid-template-columns: 1fr; gap: 32px; }
            .form-image { min-height: 240px; }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(16px);
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid rgba(0,0,0,0.06);
                box-shadow: var(--shadow-md);
            }
            .nav.open { display: flex; }
            .burger { display: flex; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .hero-stats { gap: 24px; flex-wrap: wrap; }
            .section { padding: 56px 0; }
            .section-title { font-size: 1.8rem; }
            .about-features { grid-template-columns: 1fr; }
            .contacts-grid { grid-template-columns: 1fr 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .contacts-grid { grid-template-columns: 1fr; }
            .hero-actions { flex-direction: column; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            .form-card { padding: 24px 18px; }
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .bg-white { background: var(--bg-white); }
        .bg-light { background: var(--bg-light); }
        .text-center { text-align: center; }
    

        /* ===== СТИЛИ СОГЛАСОВАННОГО БЛОКА (без изменений) ===== */
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 30px;
            border-bottom: 2px solid #e8ecf2;
            padding-bottom: 8px;
        }
        .filter-tab {
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.3s;
            background: transparent;
            color: #4a4a5a;
            border: none;
            font-family: inherit;
        }
        .filter-tab:hover {
            background: rgba(30,144,255,0.08);
            color: #1e90ff;
        }
        .filter-tab.active {
            background: linear-gradient(135deg, #1e90ff, #0066cc);
            color: #fff;
            box-shadow: 0 4px 14px rgba(30,144,255,0.3);
        }

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

        .service-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.04);
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 40px rgba(0,0,0,0.08);
        }

        .service-card .card-image {
            height: 160px;
            background: #eef2f7;
            overflow: hidden;
            position: relative;
        }
        .service-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .service-card:hover .card-image img {
            transform: scale(1.05);
        }
        .service-card .card-image .badge-popular {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff6b35;
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(255,107,53,0.3);
        }

        .service-card .card-body {
            padding: 16px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card .card-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 4px;
        }
        .service-card .card-body h4 a {
            color: #1a1a2e;
            text-decoration: none;
        }
        .service-card .card-body h4 a:hover {
            color: #1e90ff;
        }
        .service-card .card-body .desc {
            font-size: 0.9rem;
            color: #4a4a5a;
            flex: 1;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .service-card .card-body .price-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            border-top: 1px solid #f0f2f5;
            padding-top: 12px;
            margin-top: auto;
            margin-bottom: 12px;
        }
        .service-card .card-body .price-row .label {
            font-size: 0.8rem;
            color: #4a4a5a;
        }
        .service-card .card-body .price-row .value {
            font-weight: 700;
            color: #1e90ff;
            font-size: 1.1rem;
        }

        /* ===== УЛУЧШЕННЫЕ КНОПКИ ===== */
        .service-card .card-body .btn-group {
            display: flex;
            gap: 8px;
            margin-top: auto;
        }
        .service-card .card-body .btn-group .btn {
            flex: 1;
            padding: 10px 12px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: inherit;
        }
        /* Кнопка "Заказать" (основная) */
        .service-card .card-body .btn-primary {
            background: linear-gradient(135deg, #1e90ff, #0066cc);
            color: #fff;
            box-shadow: 0 4px 16px rgba(30,144,255,0.3);
        }
        .service-card .card-body .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(30,144,255,0.4);
        }
        .service-card .card-body .btn-primary:active {
            transform: translateY(0);
        }
        /* Кнопка "Подробнее" (вторичная) */
        .service-card .card-body .btn-secondary {
            background: transparent;
            color: #1e90ff;
            border: 2px solid #1e90ff;
            box-shadow: none;
        }
        .service-card .card-body .btn-secondary:hover {
            background: #1e90ff;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(30,144,255,0.2);
        }

        /* Адаптив для кнопок */
        @media (max-width: 480px) {
            .service-card .card-body .btn-group {
                flex-direction: column;
            }
            .service-card .card-body .btn-group .btn {
                width: 100%;
            }
        }

        @media (max-width: 640px) {
            .grid-services { grid-template-columns: 1fr; }
            .filter-tabs { flex-wrap: nowrap; overflow-x: auto; }
            .filter-tab { flex-shrink: 0; }
        }
    
/* ===== SUBPAGE ===== */
.page-hero{background:linear-gradient(135deg,#1a1a2e 0%,#0a2a5e 100%);color:#fff;padding:118px 0 54px;position:relative;overflow:hidden}
.page-hero .shape{position:absolute}
.page-hero-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:center;position:relative;z-index:2}
.page-hero .crumb{font-size:.85rem;color:rgba(255,255,255,.6);margin-bottom:10px}
.page-hero .crumb a{color:rgba(255,255,255,.8)}
.page-hero h1{font-size:2.5rem;font-weight:800;line-height:1.15;color:#fff;margin-bottom:14px}
.page-hero p{font-size:1.08rem;color:rgba(255,255,255,.85);margin-bottom:22px;max-width:560px}
.page-hero .phimg{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);height:300px}
.page-hero .phimg img{width:100%;height:100%;object-fit:cover}
.page-hero .price-badge{display:inline-flex;align-items:baseline;gap:8px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(8px);padding:10px 20px;border-radius:50px;margin:0 0 22px}
.page-hero .price-badge .lab{font-size:.85rem;color:rgba(255,255,255,.7)}
.page-hero .price-badge .val{font-size:1.5rem;font-weight:800;color:var(--primary-light)}
.article{padding:60px 0;background:var(--bg-white)}
.article .container{max-width:920px}
.article h2{font-size:1.7rem;font-weight:700;color:var(--text-dark);margin:34px 0 14px;padding-left:16px;border-left:4px solid var(--primary)}
.article h3{font-size:1.18rem;font-weight:700;color:var(--primary-dark);margin:22px 0 4px}
.article p{color:var(--text-muted);font-size:1.02rem;margin:12px 0}
.article p.lead{font-weight:600;color:var(--text-dark)}
.article ul{margin:12px 0 16px;padding-left:22px}
.article li{margin:8px 0;color:var(--text-muted)}
.vidy{padding:56px 0}
.cta-band{background:var(--primary-gradient);color:#fff;text-align:center;padding:56px 0}
.cta-band h2{color:#fff;font-size:1.9rem;font-weight:700;margin-bottom:10px}
.cta-band p{color:rgba(255,255,255,.9);margin-bottom:24px}
.cta-band .btn{background:#fff;color:var(--primary)}
.cta-band .btn:hover{color:var(--primary-dark)}
@media(max-width:992px){.page-hero-wrap{grid-template-columns:1fr;gap:26px}.page-hero .phimg{height:230px}.page-hero h1{font-size:2rem}}
