:root {
            --accent: #ff6b35;
            --accent-dark: #e65622;
            --accent-light: #ffe1d3;
            --teal: #0d6f70;
            --teal-soft: #f2f7f8;
            --text-main: #333333;
            --text-muted: #777777;
            --bg-page: #f7f7f7;
            --bg-soft: #fafafa;
            --border-color: #e3e3e3;
            --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.06);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            color: var(--text-main);
            background: var(--bg-page);
        }

        a {
            color: var(--accent-dark);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        h1, h2, h3, h4 {
            margin: 0 0 16px;
            font-weight: 700;
            line-height: 1.3;
        }

        p {
            margin: 0 0 12px;
            line-height: 1.7;
        }

        ul {
            margin: 0 0 12px 20px;
            padding: 0;
        }

        ul li { margin-bottom: 4px; }
.btn-ghost{
			    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
		}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .page {
            padding: 0 0 60px;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 999px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            transition: box-shadow .2s ease, transform .15s ease, opacity .15s ease;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 18px rgba(230, 86, 34, 0.35);
            transform: translateY(-1px);
            opacity: .96;
        }

        .btn-outline {
            border-radius: 999px;
            border: 1px solid var(--accent);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-dark);
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-small { padding: 6px 12px; font-size: 12px; }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .badge-eat {
            background: #e5f6ff;
            color: #116aa8;
        }

        .badge-label {
            background: #eceff2;
            color: #555;
        }

        .badge-price {
            background: #e6f3e9;
            color: #2d7a3e;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid #dde2e7;
            padding: 5px 12px;
            font-size: 13px;
            background: #ffffff;
            color: #555;
            cursor: pointer;
            white-space: nowrap;
        }

        .chip--active {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent-dark);
            font-weight: 600;
        }

        /* ---------- HEADER (как в общем макете) ---------- */

        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .header-top {
            font-size: 13px;
            color: #ffffff;
            background: var(--teal);
        }

        .header-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
        }

        .header-top-left,
        .header-top-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .header-main {
            padding: 10px 0;
        }

        .header-main-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 18px;
            align-items: center;
        }

        .logo-block {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-text-main { font-size: 18px; font-weight: 700; }
        .logo-text-sub { font-size: 12px; color: var(--text-muted); }

        .main-nav {
            display: flex;
            justify-content: center;
            gap: 18px;
            font-size: 14px;
        }

        .main-nav a {
            color: var(--text-main);
            text-decoration: none;
            padding: 4px 0;
        }

        .main-nav a:hover { color: var(--accent-dark); }

        .header-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .header-burger {
            display: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
        }

        /* ---------- HERO страницы услуг ---------- */

        .services-hero-wrap {
            background: #ffffff;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            margin-bottom: 24px;
			padding: 0 50vw;
			margin: 0 -50vw;
        }

        .services-hero {
            padding: 22px 0 22px;
        }

        .services-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1.5fr);
            gap: 24px;
            align-items: start;
        }

        .breadcrumb {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .breadcrumb a { color: var(--text-muted); }

        .services-hero-title {
            font-size: 28px;
            margin-bottom: 6px;
        }

        .services-hero-lead {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 10px;
            max-width: 680px;
        }

        .services-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .direction-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .services-hero-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .services-hero-side {
            border-radius: 16px;
            background: var(--teal-soft);
            padding: 14px 16px 14px;
        }

        .services-hero-side h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .services-hero-side p {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .services-hero-side ul {
            font-size: 13px;
            margin-left: 18px;
        }

        /* ---------- Основной layout: навигация направлений + список услуг ---------- */

        .section {
            padding: 24px 0;
        }

        .section--soft {
            background: var(--bg-soft);
        }

        .services-layout {
            display: grid;
            grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.4fr);
            gap: 24px;
            align-items: flex-start;
        }

        .services-nav {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 16px;
            font-size: 13px;
        }

        .services-nav-title {
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .services-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .services-nav-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #f1f3f6;
        }

        .services-nav-item:last-child { border-bottom: none; }

        .services-nav-link-wrap {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .services-nav-icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        .services-nav a {
            font-weight: 500;
            color: var(--text-main);
        }

        .services-nav-count {
            font-size: 12px;
            color: var(--text-muted);
        }

        .services-nav-note {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .services-nav-note a { color: var(--accent-dark); }

        .services-groups {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .services-group {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 16px 16px 14px;
        }

        .services-group-header {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
            margin-bottom: 10px;
        }

        .services-group-title {
            font-size: 18px;
            margin-bottom: 2px;
        }

        .services-group-sub {
            font-size: 13px;
            color: var(--text-muted);
        }

        .services-group-labels {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: flex-end;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 12px;
        }

        .service-item {
            border-radius: var(--radius-md);
            border: 1px solid #edf0f3;
            padding: 10px 10px 10px;
            font-size: 13px;
        }

        .service-item-header {
            display: flex;
            justify-content: space-between;
            gap: 6px;
            align-items: baseline;
            margin-bottom: 4px;
        }

        .service-item-title {
            font-size: 14px;
            font-weight: 600;
        }

        .service-item-price {
            font-size: 12px;
            color: #2d7a3e;
        }

        .service-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 4px;
        }

        .service-item-tag {
            border-radius: 999px;
            background: #f3f4f6;
            padding: 2px 8px;
            font-size: 11px;
            color: #555;
        }

        .service-item-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .service-item-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .service-item-link {
            font-weight: 500;
        }

        .service-item-cta {
            font-size: 12px;
            color: var(--accent-dark);
        }

        .services-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
        }

        /* ---------- Дополнительные блоки (FAQ, CTA) ---------- */

        .services-extra-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1.2fr);
            gap: 18px;
        }

        .faq-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        details.faq-item + details.faq-item {
            border-top: 1px solid var(--border-color);
        }

        .faq-summary {
            list-style: none;
            cursor: pointer;
            padding: 10px 14px;
            background: #fafafa;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-summary::-webkit-details-marker { display: none; }

        .faq-icon {
            font-size: 18px;
            margin-left: 8px;
        }

        .faq-body {
            padding: 8px 14px 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .services-cta-card {
            background: var(--teal);
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 14px 16px 14px;
            font-size: 13px;
        }

        .services-cta-card h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .services-cta-card p {
            margin-bottom: 8px;
        }

        /* ---------- FOOTER (короткий) ---------- */

        .site-footer {
            margin-top: 26px;
            background: #111827;
            color: #e5e7eb;
            padding: 20px 0 16px;
            font-size: 13px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-bottom: 10px;
        }

        .footer-logo {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            align-items: center;
        }

        .footer-logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .footer-logo-text-main { font-size: 16px; font-weight: 700; }
        .footer-logo-text-sub { font-size: 11px; color: #9ca3af; }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .footer-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-list li { margin-bottom: 4px; }

        .footer-list a {
            color: #e5e7eb;
            text-decoration: none;
        }

        .footer-list a:hover { color: var(--accent-light); }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            border-top: 1px solid #1f2937;
            padding-top: 8px;
            color: #9ca3af;
            font-size: 12px;
        }

        /* ---------- Адаптив ---------- */

        @media (max-width: 992px) {
            .header-main-inner {
                grid-template-columns: auto auto;
                grid-template-rows: auto auto;
                row-gap: 8px;
            }

            .main-nav { display: none; }
            .header-burger { display: inline-flex; }

            .services-hero-grid {
                grid-template-columns: 1fr;
            }

            .services-layout {
                grid-template-columns: 1fr;
            }

            .services-list {
                grid-template-columns: 1fr;
            }

            .services-extra-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .services-hero-title { font-size: 22px; }

            .direction-chips {
                gap: 6px;
            }

            .chip {
                padding: 4px 10px;
                font-size: 12px;
            }

            .section { padding: 20px 0; }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }