        :root {
            --accent: #ffb128;
            --accent-soft: #ffd76e;
            --ink: #111827;
            --ink-2: #1f2937;
            --muted: #6b7280;
            --line: rgba(17, 24, 39, 0.08);
            --white: #ffffff;
            --canvas: #f7f8fb;
            --container: min(1240px, calc(100vw - 32px));
            --g: #182131;
            --g-bright: #22324a;
            --g-glow: rgba(24, 33, 49, 0.14);
            --text: #111827;
        }

        * { box-sizing: border-box; }

        html {
            background: var(--canvas);
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) #ffffff;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            font-family: 'Manrope', sans-serif;
            color: var(--ink);
            background:
                radial-gradient(circle at 0% 0%, rgba(255, 177, 40, 0.12), transparent 18%),
                linear-gradient(180deg, #fffaf0 0%, #f7f8fb 220px, #f7f8fb 100%);
            min-height: 100vh;
        }

        *::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        *::-webkit-scrollbar-track {
            background: #ffffff;
        }

        *::-webkit-scrollbar-thumb {
            border: 3px solid #ffffff;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
        }

        *::-webkit-scrollbar-thumb:hover,
        *::-webkit-scrollbar-thumb:active {
            border: 3px solid #ffffff;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
        }

        a { color: inherit; text-decoration: none; }
        button { font: inherit; }

        .container {
            width: var(--container);
            margin: 0 auto;
        }

        .site-shell {
            padding-bottom: 0;
        }

        .header-accent {
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 52%, var(--accent) 100%);
        }

        .site-header {
            position: relative;
            z-index: 60;
        }

        .header-float {
            position: relative;
        }

        .topbar {
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid rgba(17, 24, 39, 0.06);
        }

        .topbar-inner {
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .topbar-info,
        .topbar-side {
            display: flex;
            align-items: center;
            gap: 18px;
            min-width: 0;
        }

        .topbar-info {
            flex: 1 1 auto;
            flex-wrap: wrap;
        }

        .topbar-side {
            flex: 0 0 auto;
            margin-left: auto;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 10px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.4;
            border-radius: 999px;
            transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }

        .topbar-item i {
            color: var(--accent);
            font-size: 13px;
            flex-shrink: 0;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .topbar-item strong {
            color: var(--ink);
            font-weight: 800;
        }

        .topbar-item--email,
        .topbar-item--schedule {
            white-space: nowrap;
        }

        .topbar-item:hover {
            color: var(--ink);
            background: rgba(255, 177, 40, 0.1);
            box-shadow: inset 0 0 0 1px rgba(255, 177, 40, 0.28);
        }

        .topbar-item:hover i {
            color: #d97706;
            transform: translateY(-1px);
        }

        .topbar-item--email {
            padding: 4px 10px;
            text-decoration: none;
        }

        .topbar-item--email:hover {
            background: rgba(255, 177, 40, 0.16);
            box-shadow: inset 0 0 0 1px rgba(255, 177, 40, 0.4), 0 6px 16px rgba(255, 177, 40, 0.18);
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px;
            border-radius: 999px;
            background: rgba(17, 24, 39, 0.05);
            border: 1px solid rgba(17, 24, 39, 0.08);
            transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .lang-switch:hover {
            background: rgba(17, 24, 39, 0.08);
            border-color: rgba(17, 24, 39, 0.12);
            box-shadow: 0 6px 14px rgba(17, 24, 39, 0.08);
        }

        .lang-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .lang-pill.is-active {
            background: var(--accent);
            color: var(--ink);
            box-shadow: 0 8px 18px rgba(255, 177, 40, 0.22);
        }

        .lang-pill.is-active:hover {
            background: var(--accent);
            color: var(--ink);
        }

        .lang-pill:hover {
            background: var(--accent);
            color: var(--ink);
            box-shadow: 0 8px 18px rgba(255, 177, 40, 0.22);
            transform: none;
        }

        .lang-switch--mobile {
            display: none;
        }

        .middle-bar {
            position: relative;
            z-index: 80;
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid rgba(17, 24, 39, 0.06);
            backdrop-filter: blur(10px);
        }

        .middle-inner {
            min-height: 86px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .menu-bar {
            position: relative;
            z-index: 70;
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            color: var(--white);
            box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
        }

        .menu-bar::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 10px;
            pointer-events: none;
            background: linear-gradient(to bottom, rgba(2, 8, 23, 0.26), rgba(2, 8, 23, 0));
        }

        @media (min-width: 1161px) {
            .site-header.is-floating {
                padding-bottom: 152px;
            }

            .site-header.is-floating .header-float {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 62;
                box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
            }
        }

        .menu-inner {
            min-height: 66px;
            display: flex;
            align-items: center;
            justify-content: stretch;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
            flex-shrink: 0;
        }

        .brand.is-current {
            cursor: default;
        }

        .brand-mark {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: var(--ink);
            font-size: 24px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
        }

        .brand-copy {
            display: grid;
            gap: 4px;
            min-width: max-content;
        }

        .brand-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 30px;
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.04em;
            color: var(--ink);
        }

        .brand-title strong {
            color: var(--accent);
        }

        .brand-subtitle {
            display: grid;
            grid-template-columns: auto auto auto auto auto;
            align-items: center;
            column-gap: 1px;
            width: 100%;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            justify-content: space-between;
        }

        .brand-subtitle span {
            white-space: nowrap;
        }

        .brand-subtitle i {
            font-size: 22px;
            line-height: 1;
            color: var(--accent);
            transform: translateY(0);
        }

        .desktop-nav {
            width: 100%;
        }

        .nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2px;
            flex-wrap: nowrap;
            width: 100%;
        }

        .nav-item {
            position: relative;
        }

        .nav-link,
        .nav-trigger {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 66px;
            padding: 0 12px;
            background: transparent;
            border: 0;
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .nav-link.is-current {
            cursor: default;
        }

        .nav-link:hover,
        .nav-trigger:hover,
        .nav-item.is-active > .nav-link,
        .nav-item.is-active > .nav-trigger {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-link::after,
        .nav-trigger::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 16px;
            height: 3px;
            border-radius: 999px;
            background: var(--accent);
            opacity: 0;
            transform: scaleX(0.45);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .nav-link:hover::after,
        .nav-trigger:hover::after,
        .nav-item.is-active > .nav-link::after,
        .nav-item.is-active > .nav-trigger::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            padding: 10px;
            background: #fff;
            border-top: 3px solid var(--accent);
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.18s ease, transform 0.18s ease;
            z-index: 20;
        }

        .nav-item:hover .submenu {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .submenu .submenu-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 10px;
            color: var(--ink-2);
            font-size: 14px;
            font-weight: 600;
        }

        .submenu .submenu-link--group-head {
            margin-bottom: 0;
            padding-bottom: 12px;
            border-bottom: none;
            font-weight: 700;
        }

        .submenu .submenu-link i {
            color: var(--accent);
            font-size: 16px;
            flex-shrink: 0;
        }

        .submenu a.submenu-link:hover,
        .submenu .submenu-link.is-current {
            background: rgba(255, 177, 40, 0.12);
            color: var(--ink);
        }

        .submenu .submenu-link.is-current {
            cursor: default;
        }

        .middle-tools {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .lang-dropdown {
            position: relative;
            display: inline-block;
            z-index: 140;
        }

        .lang-toggle {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            color: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(255, 177, 40, 0.34);
            border-radius: 11px;
            min-width: 78px;
            min-height: 36px;
            padding: 7px 12px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.04em;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }

        .lang-toggle::after {
            content: '';
            display: inline-block;
            border-top: 0.28em solid currentColor;
            border-right: 0.24em solid transparent;
            border-left: 0.24em solid transparent;
            margin-top: 2px;
        }

        .lang-toggle:hover {
            background: linear-gradient(90deg, #18253a 0%, #1a2a41 58%, #213149 100%);
            border-color: rgba(255, 177, 40, 0.55);
        }

        .lang-dropdown .lang-menu {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            width: max-content;
            min-width: 0;
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 8px;
            display: none;
            z-index: 145;
            box-shadow: 0 12px 22px rgba(3, 10, 24, 0.36);
        }

        .lang-dropdown.is-open .lang-menu {
            display: block;
        }

        .lang-dropdown .lang-option {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 8px 10px;
            border-radius: 9px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0;
            text-transform: none;
            line-height: 1.2;
            white-space: nowrap;
        }

        .lang-dropdown .lang-option:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .lang-dropdown .lang-option.active {
            color: var(--accent);
            background: transparent;
        }

        .phone-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            border-radius: 999px;
            background: var(--accent);
            color: var(--ink);
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 6px 16px rgba(17, 24, 39, 0.12);
            transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .phone-button i {
            font-size: 15px;
        }

        .phone-button:hover {
            background: #ffc247;
            box-shadow: 0 8px 20px rgba(17, 24, 39, 0.16);
            color: #0f172a;
        }

        .mobile-head {
            display: none;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .mobile-call,
        .mobile-toggle {
            width: 46px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(17, 24, 39, 0.08);
            background: rgba(17, 24, 39, 0.04);
            color: var(--ink);
            font-size: 19px;
            box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
        }

        .mobile-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: min(390px, 100vw);
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(180deg, #ffffff 0%, #fff9ef 100%);
            box-shadow: -18px 0 44px rgba(17, 24, 39, 0.18);
            transform: translateX(0);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.22s ease, visibility 0.22s ease;
            z-index: 140;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .mobile-panel::-webkit-scrollbar {
            width: 0;
            height: 0;
            display: none;
        }

        .mobile-panel.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-backdrop {
            position: fixed;
            inset: 0;
            border: 0;
            padding: 0;
            background: rgba(17, 24, 39, 0.48);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.24s ease;
            z-index: 130;
        }

        .mobile-backdrop.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-panel-inner {
            width: 100%;
            min-height: 100%;
            padding: 20px 20px 28px;
        }

        .mobile-panel-head {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            margin-bottom: 8px;
        }

        .mobile-close {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(17, 24, 39, 0.08);
            background: rgba(17, 24, 39, 0.04);
            color: var(--ink);
            font-size: 18px;
        }

        .mobile-panel-top {
            display: grid;
            gap: 14px;
            margin-bottom: 10px;
            padding: 16px;
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
            justify-items: start;
        }

        .mobile-panel-top .lang-switch {
            width: auto;
            justify-content: flex-start;
        }

        .mobile-panel-bottom {
            display: grid;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
        }

        .mobile-panel-contact-list {
            display: grid;
            gap: 10px;
        }

        .mobile-panel-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--ink-2);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.45;
        }

        .mobile-panel-contact-item i {
            color: var(--accent);
            font-size: 14px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .mobile-panel-contact-item a {
            color: var(--ink-2);
            text-decoration: none;
        }

        .mobile-panel-bottom .lang-switch {
            width: auto;
            justify-content: center;
            margin: 0 auto;
        }

        .mobile-link,
        .mobile-submenu-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 15px 0;
            border: 0;
            border-bottom: 1px solid rgba(17, 24, 39, 0.08);
            background: transparent;
            color: var(--ink);
            text-align: left;
            font-size: 15px;
            font-weight: 700;
        }

        .mobile-link span,
        .mobile-submenu a span,
        .mobile-submenu .mobile-submenu-link span {
            flex: 1 1 auto;
        }

        .mobile-submenu {
            display: none;
            padding-bottom: 8px;
        }

        .mobile-group.is-open .mobile-submenu {
            display: block;
        }

        .mobile-submenu a,
        .mobile-submenu .mobile-submenu-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0 12px 18px;
            color: var(--ink-2);
            font-size: 14px;
            font-weight: 600;
        }

        .mobile-submenu .mobile-submenu-link--group-head {
            margin-bottom: 0;
            padding-bottom: 12px;
            border-bottom: none;
            font-weight: 700;
        }

        .mobile-link.is-current,
        .mobile-submenu .mobile-submenu-link.is-current {
            color: var(--accent-dark);
            cursor: default;
        }

        .landing-hero {
            position: relative;
            overflow: hidden;
            margin-top: -1px;
            background: #101827;
            color: var(--white);
        }

        .landing-hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .landing-hero__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
        }

        .landing-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(135deg, rgba(9, 20, 33, 0.58) 0%, rgba(13, 28, 44, 0.46) 52%, rgba(16, 33, 52, 0.38) 100%),
                radial-gradient(circle at 12% 18%, rgba(255, 177, 40, 0.12) 0%, rgba(255, 177, 40, 0) 24%),
                radial-gradient(circle at 88% 12%, rgba(255, 215, 110, 0.08) 0%, rgba(255, 215, 110, 0) 24%);
            pointer-events: none;
        }

        .landing-hero-inner {
            position: relative;
            z-index: 2;
            padding: 48px 0 54px;
            display: grid;
            gap: 22px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            min-height: 38px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(255, 177, 40, 0.14);
            border: 1px solid rgba(255, 177, 40, 0.24);
            color: var(--accent-soft);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-copy {
            max-width: 840px;
        }

        .hero-title {
            margin: 0;
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(38px, 4.2vw, 52px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.04em;
            color: var(--white);
        }

        .hero-title strong {
            color: var(--accent);
        }

        .hero-subtitle {
            margin: 18px 0 0;
            max-width: 720px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 18px;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-primary,
        .hero-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            padding: 0 24px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .hero-primary {
            background: var(--accent);
            color: var(--ink);
            box-shadow: 0 12px 26px rgba(255, 177, 40, 0.2);
        }

        .hero-primary:hover {
            background: #ffc247;
            color: #0f172a;
            transform: translateY(-1px);
        }

        .hero-secondary {
            background: rgba(255, 255, 255, 0.04);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .hero-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            transform: translateY(-1px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            max-width: 560px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(34, 50, 74, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 26px rgba(14, 22, 33, 0.2);
        }

        .hero-stat {
            padding: 20px 14px 18px;
            text-align: center;
            background: transparent;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-stat:last-child {
            border-right: 0;
        }

        .hero-stat-value {
            display: block;
            color: var(--accent);
            font-size: clamp(30px, 2.5vw, 38px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .hero-stat-label {
            display: block;
            margin-top: 8px;
            color: rgba(218, 225, 221, 0.82);
            font-size: 11px;
            font-weight: 600;
            line-height: 1.22;
        }

        .hero-wave {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            z-index: 2;
            line-height: 0;
        }

        .hero-wave svg {
            display: block;
            width: 100%;
            height: 72px;
        }

        .section-block {
            padding: 64px 0;
        }

        .section-block--city-intro {
            padding-bottom: 28px;
        }

        .section-block--city-services {
            padding-top: 28px;
        }

        .section-heading {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 38px;
        }

        .section-title {
            margin: 0;
            font-family: 'Exo 2', sans-serif;
            color: var(--ink);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.04em;
        }

        .section-title strong {
            color: var(--accent);
        }

        .section-subtitle {
            margin: 14px 0 0;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .service-card {
            display: grid;
            align-content: start;
            gap: 16px;
            min-height: 100%;
            padding: 28px 24px 24px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(17, 24, 39, 0.06);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
            border-color: rgba(255, 177, 40, 0.18);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--ink);
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
        }

        .service-icon--soft {
            color: #fff;
            background: linear-gradient(145deg, #182536 0%, #23354b 100%);
        }

        .service-title {
            margin: 0;
            color: var(--ink);
            font-size: 24px;
            font-weight: 800;
            line-height: 1.15;
        }

        .service-text {
            margin: 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            color: #c97d00;
            font-size: 14px;
            font-weight: 700;
            transition: color 0.2s ease;
        }

        .service-link:hover {
            color: var(--accent);
        }

        .section-block--soft {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 250, 240, 0.86) 100%);
        }

        .section-block--city-copy {
            padding-top: 52px;
            padding-bottom: 52px;
        }

        .section-block--city-repair {
            padding-top: 52px;
        }

        .reasons-grid,
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .city-insights-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .city-insight-card {
            height: 100%;
            padding: 28px 30px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(17, 24, 39, 0.06);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
        }

        .city-insight-card--text {
            display: grid;
            align-content: start;
            gap: 16px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 242, 0.98) 100%);
        }

        .city-insight-card--fact {
            text-align: center;
        }

        .city-insight-card--fact .service-icon {
            margin: 0 auto;
        }

        .city-insight-card--fact .service-title {
            margin-top: 16px;
            font-size: 22px;
        }

        .city-insight-card--fact .service-text {
            margin-top: 10px;
        }

        .city-insight-kicker {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            min-height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 177, 40, 0.14);
            color: #c97d00;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .city-insight-text {
            margin: 0;
            color: #4b5563;
            font-size: 16px;
            line-height: 1.8;
        }

        .reason-card,
        .review-card {
            padding: 28px 24px 24px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(17, 24, 39, 0.06);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
        }

        .reason-card {
            text-align: center;
        }

        .reason-card .service-icon {
            margin: 0 auto;
        }

        .reason-card .service-title {
            font-size: 22px;
            margin-top: 16px;
        }

        .reason-card .service-text {
            margin-top: 10px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .process-card {
            text-align: center;
            padding: 10px 10px 0;
        }

        .process-num {
            width: 64px;
            height: 64px;
            margin: 0 auto 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: var(--ink);
            font-size: 24px;
            font-weight: 800;
            box-shadow: 0 12px 24px rgba(255, 177, 40, 0.22);
        }

        .process-title {
            margin: 0;
            color: var(--ink);
            font-size: 22px;
            font-weight: 800;
        }

        .process-text {
            margin: 10px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .review-card {
            display: grid;
            grid-template-rows: auto minmax(0, 1fr) auto;
            gap: 14px;
            align-content: stretch;
            height: 100%;
        }

        .review-stars {
            color: #f4a623;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .review-text {
            margin: 0;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.75;
            font-style: italic;
            align-self: start;
        }

        .review-text::before {
            content: '"';
            color: var(--accent);
            font-size: 24px;
            line-height: 0;
            margin-right: 4px;
        }

        .review-text::after {
            content: '"';
            color: var(--accent);
            font-size: 24px;
            line-height: 0;
            margin-left: 4px;
        }

        .hero-actions--city-repair {
            justify-content: center;
        }

        .hero-primary--city-repair {
            box-shadow: 0 12px 26px rgba(255, 177, 40, 0.24);
        }

        .hero-secondary--city-repair {
            background: rgba(24, 37, 54, 0.08);
            color: var(--ink);
            border-color: rgba(24, 37, 54, 0.12);
        }

        .hero-secondary--city-repair:hover {
            background: rgba(24, 37, 54, 0.14);
            color: var(--ink);
        }

        .review-author {
            display: grid;
            grid-template-columns: 52px minmax(0, 1fr);
            align-items: center;
            gap: 14px;
            padding-top: 16px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
        }

        .review-author > div:last-child {
            min-width: 0;
            display: grid;
            gap: 2px;
            justify-items: start;
        }

        .review-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: var(--ink);
            font-size: 22px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .review-name {
            color: var(--ink);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.25;
        }

        .review-meta {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.35;
            margin-top: 0;
        }

        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .faq-item {
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .faq-item.is-open {
            background: #ffffff;
            border-color: rgba(255, 177, 40, 0.22);
            box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
        }

        .faq-trigger {
            width: 100%;
            border: 0;
            background: transparent;
            cursor: pointer;
            position: relative;
            padding: 22px 54px 22px 22px;
            color: var(--ink);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            text-align: left;
            transition: color 0.2s ease;
        }

        .faq-item.is-open .faq-trigger {
            color: #101827;
        }

        .faq-trigger::after {
            content: '+';
            position: absolute;
            top: 50%;
            right: 22px;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 28px;
            font-weight: 400;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .faq-item.is-open .faq-trigger::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
        }

        .faq-item.is-open .faq-content {
            grid-template-rows: 1fr;
            opacity: 1;
        }

        .faq-answer {
            overflow: hidden;
            padding: 0 22px;
            color: #4b5563;
            font-size: 16px;
            line-height: 1.85;
            letter-spacing: 0.01em;
        }

        .faq-answer::before {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            margin: 0 0 14px;
            background: linear-gradient(90deg, rgba(255, 177, 40, 0.26) 0%, rgba(17, 24, 39, 0.08) 100%);
        }

        .faq-answer-text {
            padding: 0 0 22px;
        }

        .cta-shell {
            padding-bottom: 76px;
        }

        .section-block--service-rich {
            padding-top: 22px;
        }

        .service-rich-stack {
            display: grid;
            gap: 28px;
        }

        .service-rich-section {
            padding: 34px 0 0;
        }

        .service-rich-section--soft {
            padding: 36px 30px;
            border-radius: 30px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 235, 0.92) 100%);
            border: 1px solid rgba(255, 177, 40, 0.18);
            box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06);
        }

        .service-rich-section--article {
            padding: 38px 34px;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(16, 24, 39, 0.96) 0%, rgba(26, 38, 56, 0.96) 100%);
            box-shadow: 0 24px 50px rgba(17, 24, 39, 0.14);
        }


        .service-rich-section--comparison {
            padding: 36px;
            border-radius: 34px;
            background:
                radial-gradient(circle at top left, rgba(255, 197, 79, 0.18) 0, rgba(255, 197, 79, 0) 34%),
                radial-gradient(circle at bottom right, rgba(255, 225, 160, 0.2) 0, rgba(255, 225, 160, 0) 32%),
                linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
            border: 1px solid rgba(255, 177, 40, 0.18);
            box-shadow: 0 28px 58px rgba(17, 24, 39, 0.08);
        }
        .service-rich-section--article .section-title {
            color: #ffffff;
        }

        .service-rich-section--article .section-subtitle,
        .service-rich-section--article .service-rich-prose p {
            color: rgba(255, 255, 255, 0.78);
        }

        .service-rich-heading {
            margin-bottom: 22px;
        }

        .service-rich-prose {
            max-width: 980px;
            display: grid;
            gap: 14px;
        }

        .service-rich-prose p {
            margin: 0;
            color: #4b5563;
            font-size: 17px;
            line-height: 1.82;
        }

        .service-rich-grid,
        .service-rich-split {
            display: grid;
            gap: 18px;
        }

        .service-rich-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .service-rich-split {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .service-rich-card,
        .service-rich-split-card {
            min-height: 100%;
            padding: 24px 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 18px 34px rgba(17, 24, 39, 0.06);
        }

        .service-comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .service-comparison-grid--triple {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .service-comparison-card {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 28px;
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 246, 0.96) 100%);
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
        }

        .service-comparison-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }

        .service-comparison-icon {
            flex: 0 0 auto;
            width: 54px;
            height: 54px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 177, 40, 0.18) 0%, rgba(255, 215, 110, 0.34) 100%);
            color: #b45309;
            font-size: 24px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        .service-comparison-title {
            margin: 0 0 10px;
            color: #0f172a;
            font-size: 32px;
            line-height: 1.12;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .service-comparison-text {
            margin: 0;
            color: #334155;
            font-size: 17px;
            line-height: 1.7;
        }

        .service-comparison-lead {
            margin: 18px 0 0;
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(255, 177, 40, 0.08);
            color: #1f2937;
            font-size: 15px;
            line-height: 1.72;
            font-weight: 600;
        }

        .service-comparison-points {
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .service-comparison-points li {
            position: relative;
            min-height: 54px;
            display: flex;
            align-items: center;
            padding: 12px 14px 12px 52px;
            border-radius: 18px;
            background: rgba(248, 250, 252, 0.92);
            border: 1px solid rgba(226, 232, 240, 0.95);
            color: #0f172a;
            font-size: 15px;
            line-height: 1.45;
            font-weight: 700;
        }

        .service-comparison-points li::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 50%;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            transform: translateY(-50%);
            background: linear-gradient(180deg, var(--accent) 0%, #f59e0b 100%);
            box-shadow: 0 0 0 6px rgba(255, 177, 40, 0.14);
        }

        .service-comparison-points li::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 50%;
            width: 6px;
            height: 10px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: translateY(-65%) rotate(45deg);
        }

        .service-comparison-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .service-comparison-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 0 14px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid rgba(255, 177, 40, 0.18);
            color: #9a6700;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        @media (max-width: 1360px) {
            .service-comparison-grid--triple {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .service-rich-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            background: linear-gradient(135deg, rgba(255, 177, 40, 0.18) 0%, rgba(255, 215, 110, 0.28) 100%);
            color: #b45309;
            font-size: 22px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        .service-rich-card-title {
            margin: 0 0 10px;
            color: #111827;
            font-size: 22px;
            line-height: 1.3;
            font-weight: 800;
        }

        .service-rich-card-text {
            margin: 0;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.78;
        }

        .service-rich-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            color: #9a6700;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .service-rich-card-link:hover {
            color: #b45309;
        }

        .service-rich-kicker {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            margin-bottom: 12px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(255, 177, 40, 0.14);
            color: #9a6700;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .service-rich-points {
            margin: 16px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .service-rich-points li {
            position: relative;
            padding-left: 18px;
            color: #374151;
            font-size: 14px;
            line-height: 1.65;
            font-weight: 600;
        }

        .service-rich-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--accent) 0%, #f59e0b 100%);
            box-shadow: 0 0 0 4px rgba(255, 177, 40, 0.12);
        }

        .service-rich-table-wrap {
            overflow-x: auto;
            border-radius: 24px;
            border: 1px solid rgba(17, 24, 39, 0.08);
            background: #ffffff;
            box-shadow: 0 18px 34px rgba(17, 24, 39, 0.06);
        }

        .service-rich-table {
            width: 100%;
            min-width: 640px;
            border-collapse: collapse;
        }

        .service-rich-table th,
        .service-rich-table td {
            padding: 16px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(17, 24, 39, 0.07);
            font-size: 15px;
            line-height: 1.6;
        }

        .service-rich-table th {
            background: linear-gradient(180deg, rgba(255, 248, 235, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
            color: #111827;
            font-weight: 800;
        }

        .service-rich-table td {
            color: #374151;
            font-weight: 600;
        }

        .service-rich-table tr:last-child td {
            border-bottom: 0;
        }

        .service-repair-band {
            padding: 34px 32px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: linear-gradient(135deg, #101827 0%, #1c2b3f 58%, #24364e 100%);
            color: #ffffff;
            box-shadow: 0 24px 50px rgba(17, 24, 39, 0.16);
        }

        .service-repair-copy {
            max-width: 780px;
        }

        .service-repair-copy .section-title {
            color: #ffffff;
            margin-bottom: 10px;
        }

        .service-repair-copy .section-subtitle {
            color: rgba(255, 255, 255, 0.76);
            margin: 0;
        }

        .hero-actions--service-repair {
            flex: 0 0 auto;
            margin: 0;
            gap: 16px;
            justify-content: flex-end;
        }

        .hero-primary--service-repair {
            box-shadow: 0 16px 32px rgba(255, 177, 40, 0.28);
        }

        .hero-secondary--service-repair {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.96);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .hero-secondary--service-repair:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #ffffff;
        }

        .cta-panel {
            padding: 54px 42px 48px;
            border-radius: 28px;
            background: linear-gradient(135deg, #101827 0%, #162233 58%, #1d2a3d 100%);
            color: #ffffff;
            box-shadow: 0 24px 54px rgba(17, 24, 39, 0.18);
            text-align: center;
        }

        .cta-copy {
            max-width: 760px;
            margin: 0 auto 26px;
        }

        .cta-copy--no-mb {
            margin-bottom: 0;
        }

        .cta-panel .section-title {
            color: #ffffff;
        }

        .cta-panel .section-subtitle {
            color: rgba(255, 255, 255, 0.72);
            margin-top: 12px;
        }

        @media (max-width: 1024px) {
            .service-rich-grid,
            .service-rich-split {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .service-comparison-grid {
                grid-template-columns: 1fr;
            }

            .service-comparison-title {
                font-size: 28px;
            }

            .service-repair-band {
                align-items: flex-start;
                flex-direction: column;
            }

            .hero-actions--service-repair {
                justify-content: flex-start;
            }
        }

        @media (max-width: 767px) {
            .section-block--service-rich {
                padding-top: 4px;
            }

            .service-rich-stack {
                gap: 20px;
            }

            .service-rich-section {
                padding-top: 24px;
            }

            .service-rich-section--soft,
            .service-rich-section--article,
            .service-rich-section--comparison,
            .service-repair-band {
                padding: 24px 18px;
                border-radius: 22px;
            }

            .service-rich-grid,
            .service-rich-split,
            .service-comparison-grid {
                grid-template-columns: 1fr;
            }

            .service-rich-card,
            .service-rich-split-card {
                padding: 20px 18px;
                border-radius: 20px;
            }

            .service-comparison-card {
                padding: 22px 18px;
                border-radius: 22px;
            }

            .service-comparison-head {
                align-items: flex-start;
            }

            .service-comparison-title {
                font-size: 24px;
            }

            .service-rich-card-title {
                font-size: 20px;
            }

            .service-rich-prose p,
            .service-rich-card-text,
            .service-comparison-text,
            .service-comparison-lead,
            .service-rich-table th,
            .service-rich-table td {
                font-size: 14px;
            }

            .service-rich-card-link {
                font-size: 12px;
            }

            .service-rich-table {
                min-width: 0;
            }

            .hero-actions--service-repair {
                width: 100%;
                gap: 12px;
            }

            .hero-actions--service-repair .hero-primary,
            .hero-actions--service-repair .hero-secondary {
                width: 100%;
            }
        }

        .cta-form {
            max-width: 920px;
            margin: 0 auto;
        }

        .cta-form-grid {
            display: grid;
            gap: 14px;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 240px;
            align-items: center;
        }

        .cta-input-group {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 62px;
            padding: 0 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .cta-input-icon {
            color: var(--accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .cta-input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: #1f2937;
            font-size: 15px;
            font-weight: 600;
        }

        .cta-input::placeholder {
            color: #6b7280;
            font-weight: 500;
        }

        .cta-submit {
            min-height: 62px;
            border: 0;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 22px;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
            font-size: 15px;
            font-weight: 800;
            box-shadow: 0 16px 32px rgba(255, 177, 40, 0.22);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cta-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 18px 34px rgba(255, 177, 40, 0.26);
        }

        .cta-privacy {
            margin: 16px auto 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            line-height: 1.6;
        }

        .cta-privacy i {
            color: var(--accent);
            margin-right: 6px;
        }

        .cta-features {
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .cta-feature {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.84);
            font-size: 14px;
            font-weight: 600;
        }

        .cta-feature i {
            color: var(--accent);
        }

        .page-hero {
            position: relative;
            padding: 72px 0 84px;
            background: linear-gradient(135deg, #111827 0%, #182536 58%, #22324a 100%);
            overflow: hidden;
        }

        .page-hero::before,
        .page-hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            border: 56px solid rgba(255, 177, 40, 0.1);
        }

        .page-hero::before {
            width: 360px;
            height: 360px;
            left: -190px;
            bottom: -170px;
        }

        .page-hero::after {
            width: 420px;
            height: 420px;
            top: -210px;
            right: -190px;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-hero-breadcrumb {
            margin-bottom: 14px;
        }

        .page-hero-breadcrumb ol {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            padding: 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            font-weight: 500;
        }

        .page-hero-breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .page-hero-breadcrumb li + li::before {
            content: '/';
            color: rgba(255, 255, 255, 0.34);
            font-weight: 600;
        }

        .page-hero-breadcrumb a {
            color: rgba(255, 214, 117, 0.92);
        }

        .page-hero-breadcrumb a:hover {
            color: #ffffff;
        }

        .page-hero-title {
            margin: 0;
            color: #ffffff;
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -0.04em;
        }

        .page-hero--blog .page-hero-title {
            font-size: clamp(38px, 4.2vw, 56px);
        }

        .page-hero-title-accent {
            color: var(--accent);
        }

        .page-hero-text {
            margin: 14px 0 0;
            max-width: 700px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 19px;
            line-height: 1.65;
        }

        .page-hero--portfolio .page-hero-text {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }

        .ct-main {
            padding: 34px 0 82px;
            background:
                linear-gradient(180deg, #f7f8fb 0%, #f4f6fa 58%, #eef2f8 100%);
        }

        .ct-col-title {
            margin: 0 0 28px;
            color: var(--ink);
            font-family: 'Exo 2', sans-serif;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.03em;
        }

        .ct-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 56px;
            align-items: start;
            padding: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .page-hero--foundation .page-hero-title {
            max-width: 880px;
        }

        .foundation-shell {
            padding: 34px 0 82px;
            background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 48%, #f4f6fa 100%);
        }

        .foundation-layout {
            display: grid;
            grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
            gap: 34px;
            align-items: start;
        }

        .foundation-nav {
            position: sticky;
            top: 118px;
            display: grid;
            gap: 8px;
            padding: 14px;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
        }

        .foundation-nav .foundation-link {
            min-height: 44px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            color: #253247;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.25;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .foundation-nav .foundation-link i {
            color: var(--accent);
            font-size: 17px;
        }

        .foundation-nav a.foundation-link:hover,
        .foundation-nav .foundation-link.is-active {
            background: linear-gradient(135deg, rgba(255, 177, 40, 0.18), rgba(255, 215, 110, 0.16));
            color: #111827;
            transform: translateX(2px);
        }

        .foundation-nav .foundation-link.is-active {
            cursor: default;
        }

        .foundation-content {
            display: grid;
            gap: 18px;
        }

        .foundation-section,
        .foundation-note {
            padding: 26px;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
        }

        .foundation-section h2 {
            margin: 0 0 14px;
            color: var(--ink);
            font-family: 'Exo 2', sans-serif;
            font-size: 28px;
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        .foundation-section p {
            margin: 0;
            color: #4b5563;
            font-size: 16px;
            line-height: 1.78;
        }

        .foundation-section p + p {
            margin-top: 12px;
        }

        .foundation-note {
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            background: linear-gradient(135deg, #fff9ef 0%, #ffffff 100%);
            border-color: rgba(255, 177, 40, 0.28);
        }

        .foundation-note i {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: #111827;
            font-size: 20px;
        }

        .foundation-note p {
            margin: 0;
            color: #374151;
            font-size: 15px;
            line-height: 1.7;
        }

        .ct-info-col {
            padding: 30px 0 0;
        }

        .ct-form-card {
            padding: 40px;
            border-radius: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
            border: 1px solid rgba(32, 55, 86, 0.08);
            box-shadow: 0 20px 44px rgba(17, 24, 39, 0.1);
        }

        .ct-info-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .ct-info-row:last-child {
            margin-bottom: 0;
        }

        .ct-info-icon {
            min-width: 50px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
            background: linear-gradient(145deg, #1a2940 0%, #24364d 100%);
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(24, 33, 49, 0.12);
        }

        .ct-info-icon--alt {
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
            box-shadow: 0 14px 28px rgba(255, 177, 40, 0.22);
        }

        .ct-info-label {
            margin: 0 0 4px;
            color: var(--ink);
            font-size: 20px;
            font-weight: 800;
            line-height: 1.3;
        }

        .ct-info-text {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .ct-info-link {
            color: #c97d00;
            font-size: 17px;
            font-weight: 800;
            transition: color 0.2s ease;
        }

        .ct-info-link:hover {
            color: var(--accent);
        }

        .ct-form-card .ct-col-title {
            color: var(--ink);
            margin-bottom: 20px;
        }

        .ct-form-card .ct-submit {
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
        }

        .ct-form-card .ct-submit:hover {
            box-shadow: 0 18px 34px rgba(255, 177, 40, 0.22);
        }

        .contact-success {
            margin: 0 0 18px;
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(255, 177, 40, 0.14);
            border: 1px solid rgba(255, 177, 40, 0.24);
            color: #6b4700;
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-errors {
            margin: 0 0 18px;
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(176, 25, 25, 0.08);
            border: 1px solid rgba(176, 25, 25, 0.12);
            color: #7e1f1f;
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-errors ul {
            margin: 0;
            padding-left: 18px;
        }

        .ct-form {
            display: grid;
            gap: 14px;
        }

        .ct-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .ct-input {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid rgba(17, 24, 39, 0.1);
            border-radius: 16px;
            font-size: 15px;
            color: #1f2937;
            background: #ffffff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
            font-family: inherit;
            font-weight: 600;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .ct-input:focus {
            border-color: rgba(255, 177, 40, 0.8);
            box-shadow: 0 0 0 4px rgba(255, 177, 40, 0.12);
        }

        .ct-input::placeholder {
            color: #6b7280;
            font-weight: 500;
        }

        .ct-textarea {
            resize: vertical;
            min-height: 140px;
            line-height: 1.65;
        }

        .ct-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 10px;
            min-height: 58px;
            padding: 0 18px;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
            border: none;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.2s ease;
            text-transform: none;
            letter-spacing: 0;
            font-family: inherit;
            box-shadow: 0 16px 32px rgba(255, 177, 40, 0.22);
        }

        .ct-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 18px 34px rgba(255, 177, 40, 0.26);
        }

        .ct-form-note {
            margin: 2px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .site-footer {
            margin-top: 0;
        }

        .zkf-footer-stack {
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
        }

        .zkf-footer-stack::before,
        .zkf-footer-stack::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            border: 56px solid rgba(255, 177, 40, 0.1);
            z-index: 0;
        }

        .zkf-footer-stack::before {
            width: 460px;
            height: 460px;
            left: -230px;
            top: 180px;
        }

        .zkf-footer-stack::after {
            width: 560px;
            height: 560px;
            right: -260px;
            top: -180px;
        }

        .zkf-footer-stack > * {
            position: relative;
            z-index: 1;
        }

        .zkf-template {
            --orange: var(--zkf-orange, var(--accent));
            --orange-dark: var(--zkf-orange-dark, #d9681a);
            --orange-light: var(--zkf-orange-light, rgba(244, 123, 32, 0.08));
            --blue: var(--zkf-blue, #1b3a5b);
            --blue-dark: var(--zkf-blue-dark, #0f2540);
            font-family: 'Montserrat', sans-serif;
        }

        .zkf-template.footer {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            padding: 4.5rem 0 0;
            position: relative;
            overflow: visible;
        }

        .zkf-template.footer > .container,
        .zkf-dev-strip > .text-center {
            padding-left: 20px;
            padding-right: 20px;
            position: relative;
            z-index: 1;
        }

        .zkf-template.footer > .container {
            position: relative;
            z-index: 1;
        }

        .zkf-template.footer .row {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
            gap: 2rem 2.5rem;
            align-items: start;
        }

        .zkf-template.footer .row > [class*='col-'] {
            min-width: 0;
        }

        .zkf-template .d-inline-flex {
            display: inline-flex;
        }

        .zkf-template .d-flex {
            display: flex;
        }

        .zkf-template .flex-column {
            flex-direction: column;
        }

        .zkf-template .flex-md-row {
            flex-direction: column;
        }

        .zkf-template .justify-content-between {
            justify-content: space-between;
        }

        .zkf-template .align-items-center {
            align-items: center;
        }

        .zkf-template .gap-2 {
            gap: 0.5rem;
        }

        .zkf-template .mb-3 {
            margin-bottom: 1rem;
        }

        .zkf-template .mt-2 {
            margin-top: 0.5rem;
        }

        .zkf-template .me-1 {
            margin-right: 0.25rem;
        }

        .zkf-template .me-2 {
            margin-right: 0.5rem;
        }

        .zkf-template .me-3 {
            margin-right: 1rem;
        }

        .zkf-template .text-center {
            text-align: center;
        }

        .zkf-template .text-decoration-none {
            text-decoration: none;
        }

        .zkf-template ul,
        .zkf-template .list-unstyled {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .zkf-template.footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 52%, var(--accent) 100%);
            z-index: 2;
        }

        .zkf-template .footer-title {
            color: #fff;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .zkf-template .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--orange);
            border-radius: 2px;
        }

        .zkf-template ul li {
            margin-bottom: 0.6rem;
        }

        .zkf-template ul li a,
        .zkf-template ul li .footer-link {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color 0.25s, padding-left 0.25s;
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
        }

        .zkf-template ul li a:hover {
            color: var(--orange);
            padding-left: 4px;
        }

        .zkf-template ul li a i,
        .zkf-template ul li .footer-link i {
            font-size: 0.7rem;
            margin-right: 0.5rem;
            color: var(--orange);
            opacity: 0.5;
            transition: opacity 0.25s;
        }

        .zkf-template ul li a:hover i {
            opacity: 1;
        }

        .zkf-template ul li .footer-link.is-current {
            color: var(--orange);
            cursor: default;
        }

        .zkf-template ul li .footer-link.is-current i {
            opacity: 1;
        }

        .zkf-template a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .zkf-template a:hover {
            color: var(--orange);
        }

        .zkf-template.footer a[href^="tel"] {
            transition: color 0.2s;
        }

        .zkf-template.footer a[href^="tel"]:hover {
            color: var(--orange);
        }

        .zkf-template .footer-bottom {
            background: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.82rem;
        }

        .zkf-template .footer-bottom small {
            font-size: inherit;
        }

        .zkf-template .footer-bottom .d-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            flex-wrap: wrap;
            text-align: left;
        }

        .zkf-template .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-top: 0;
            margin-bottom: 1rem;
            text-decoration: none;
        }

        .zkf-template .footer-brand.is-current {
            cursor: default;
        }

        .zkf-template .footer-brand i {
            font-size: 1.08rem !important;
            line-height: 1;
            transform: translateY(-1px);
            color: var(--orange);
        }

        .zkf-template .footer-brand__accent {
            color: var(--orange);
        }

        .zkf-template .footer-brand__name {
            color: #fff;
        }

        .zkf-template .footer-brand__desc {
            font-size: .88rem;
            line-height: 1.7;
        }

        .zkf-template .footer-brand__phone {
            color: var(--orange);
            font-weight: 700;
            font-size: 1.05rem;
        }

        .footer-cities-title {
            color: #ffb128;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .footer-legal-link {
            font-size: .82rem;
        }

        .footer-legal-link.is-current {
            color: rgba(255, 255, 255, 0.72);
            cursor: default;
        }

        .footer-commercial-name {
            font-size: .8rem;
            color: rgba(255,255,255,.55);
            line-height: 1.5;
        }

        .zkf-template .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            margin-bottom: 0.85rem;
            font-size: 0.88rem;
            min-width: 0;
        }

        .zkf-template .footer-contact-item > div:last-child {
            flex: 1 1 auto;
            min-width: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .zkf-template .footer-contact-item a {
            display: inline;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .zkf-template .footer-contacts-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
        }

        .zkf-template .footer-contact-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: rgba(244, 123, 32, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            flex-shrink: 0;
            font-size: 0.85rem;
        }

        .zkf-template.footer .footer-social-link:hover,
        .zkf-template .footer-social-link:hover {
            transform: scale(1.12);
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            box-shadow: 0 4px 15px rgba(244, 123, 32, 0.35);
        }

        .zkf-footer-cities {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            padding: 1rem 0;
            position: relative;
            overflow: visible;
        }

        .zkf-footer-cities .text-center {
            text-align: center;
        }

        .zkf-footer-cities .small {
            font-size: 0.875rem;
            line-height: 1.35;
        }

        .zkf-footer-cities .mb-2 {
            margin-bottom: 0.5rem;
        }

        .zkf-footer-cities .text-white-50 {
            color: rgba(255, 255, 255, 0.72) !important;
        }

        .zkf-footer-cities .d-flex {
            display: flex;
        }

        .zkf-footer-cities .flex-wrap {
            flex-wrap: wrap;
        }

        .zkf-footer-cities .gap-2 {
            gap: 0.5rem;
        }

        .zkf-footer-cities .justify-content-center {
            justify-content: center;
        }

        .zkf-footer-cities .badge {
            display: inline-block;
            padding: 0.3rem 0.7rem;
            margin: 3px;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 4px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.4) !important;
            background: rgba(255, 255, 255, 0.02) !important;
            transition: color 0.2s, border-color 0.2s, background-color 0.2s, transform 0.2s;
        }

        .zkf-footer-cities .badge:hover {
            color: var(--orange) !important;
            border-color: var(--orange);
            background: rgba(244, 123, 32, 0.06) !important;
            transform: translateY(-1px);
        }

        .zkf-footer-cities .badge.is-current {
            color: var(--orange) !important;
            border-color: var(--orange);
            background: rgba(244, 123, 32, 0.06) !important;
            cursor: default;
        }

        .zkf-dev-strip {
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: transparent;
            position: relative;
            overflow: visible;
        }

        .zkf-dev-link {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.75rem;
            text-decoration: none !important;
            transition: color 0.3s;
            letter-spacing: 0.02em;
        }

        .zkf-dev-link:hover {
            color: rgba(255, 255, 255, 0.55);
        }

        @media (max-width: 767.98px) {
            .zkf-template.footer {
                padding: 3rem 0 0;
                text-align: center;
            }

            .zkf-template.footer > .container,
            .zkf-dev-strip > .text-center {
                padding-left: 16px;
                padding-right: 16px;
            }

            .zkf-template.footer .row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .zkf-template.footer .row > div {
                padding-bottom: 2rem;
                margin-bottom: 0.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .zkf-template.footer .row > div:last-child {
                border-bottom: 0;
                margin-bottom: 0;
            }

            .zkf-template .footer-title {
                font-size: 0.8rem;
                margin-bottom: 1.25rem;
            }

            .zkf-template .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .zkf-template .footer-brand {
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                gap: 0.35rem;
            }

            .zkf-template.footer p {
                font-size: 0.85rem !important;
            }

            .zkf-template.footer .d-inline-flex[href^="tel"] {
                justify-content: center;
                width: 100%;
                background: #b45309;
                color: #fff !important;
                padding: 0.75rem 1.5rem;
                border-radius: 12px;
                font-size: 1.1rem !important;
                font-weight: 700;
                margin-bottom: 1.25rem !important;
                transition: background 0.2s;
            }

            .zkf-template.footer .d-inline-flex[href^="tel"]:hover {
                background: var(--orange-dark);
            }

            .zkf-template.footer .d-inline-flex[href^="tel"] i {
                color: #fff;
            }

            .zkf-template.footer ul {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.25rem 0.5rem;
            }

            .zkf-template.footer ul li {
                margin-bottom: 0;
            }

            .zkf-template.footer ul li a,
            .zkf-template.footer ul li .footer-link {
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.85rem;
                padding: 0.5rem 0.25rem;
                border-radius: 8px;
                justify-content: center;
                transition: all 0.2s;
                width: 100%;
            }

            .zkf-template.footer ul li a i,
            .zkf-template.footer ul li .footer-link i {
                display: none;
            }

            .zkf-template.footer ul li a:hover {
                background: rgba(255, 255, 255, 0.04);
                color: var(--orange);
                padding-left: 0.25rem;
            }

            .zkf-template .footer-contact-item {
                flex-direction: column;
                align-items: center;
                gap: 0.4rem;
                background: rgba(255, 255, 255, 0.03);
                border-radius: 12px;
                padding: 1rem 0.75rem;
                margin-bottom: 0.5rem;
            }

            .zkf-template .footer-contact-icon {
                width: 40px;
                height: 40px;
                border-radius: 10px;
                font-size: 0.95rem;
            }

            .zkf-template .footer-contact-item > div:last-child {
                font-size: 0.84rem;
            }

            .zkf-template .footer-contacts-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .zkf-template .footer-contact-item {
                margin-bottom: 0;
            }

            .zkf-template .footer-bottom {
                margin-top: 1.5rem;
                padding: 1.25rem 0;
                text-align: center;
            }

            .zkf-template .footer-bottom .d-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.75rem;
            }

            .zkf-footer-stack::before,
            .zkf-footer-stack::after {
                display: none;
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .zkf-template.footer .row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-areas:
                    'brand contacts'
                    'info services';
            }

            .zkf-template.footer .row > :nth-child(1) {
                grid-area: brand;
            }

            .zkf-template.footer .row > :nth-child(2) {
                grid-area: services;
            }

            .zkf-template.footer .row > :nth-child(3) {
                grid-area: info;
            }

            .zkf-template.footer .row > :nth-child(4) {
                grid-area: contacts;
            }

            .zkf-template.footer > .container,
            .zkf-footer-cities > .container,
            .zkf-dev-strip > .text-center {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        @media (min-width: 768px) {
            .zkf-template .flex-md-row {
                flex-direction: row;
            }
        }

        @media (min-width: 992px) and (max-width: 1399.98px) {
            .zkf-template.footer .row {
                gap: 1.25rem 1.5rem;
            }

            .zkf-template .footer-brand {
                font-size: 1.15rem;
            }
        }

        .footer-nav {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-nav-inner {
            padding: 34px 0 30px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 28px;
        }

        .footer-nav-brand {
            display: grid;
            gap: 14px;
            align-content: start;
            min-width: 0;
        }

        .footer-brand-link {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            width: fit-content;
        }

        .footer-brand-mark {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
            font-size: 24px;
            box-shadow: 0 14px 30px rgba(255, 177, 40, 0.2);
        }

        .footer-brand-name {
            display: grid;
            gap: 4px;
            color: #ffffff;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .footer-brand-name strong {
            color: var(--accent);
        }

        .footer-brand-name small {
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: none;
        }

        .footer-brand-desc {
            margin: 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 14px;
            line-height: 1.65;
            max-width: 280px;
        }

        .footer-brand-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            border-radius: 0;
            background: transparent;
            color: #ffb128;
            font-size: 15px;
            font-weight: 700;
            width: fit-content;
            box-shadow: none;
            transition: color 0.2s ease;
        }

        .footer-brand-phone i {
            color: var(--accent);
        }

        .footer-brand-phone:hover {
            color: #ffffff;
        }

        .footer-nav-group {
            display: grid;
            gap: 16px;
            align-content: start;
            min-width: 0;
        }

        .footer-nav-heading {
            margin: 0;
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .footer-nav-list a {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding-left: 18px;
            color: rgba(255, 255, 255, 0.74);
            font-size: 14px;
            line-height: 1.5;
            transition: color 0.2s ease, padding-left 0.22s ease, transform 0.22s ease;
        }

        .footer-nav-list a::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(0, -50%);
            opacity: 1;
            color: var(--accent);
            font-size: 13px;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .footer-nav-list a:hover {
            color: var(--accent);
            padding-left: 22px;
        }

        .footer-nav-list a:hover::before {
            transform: translate(0, -50%);
        }

        .footer-contact-list {
            display: grid;
            gap: 12px;
        }

        .footer-contact-item {
            display: grid;
            grid-template-columns: 38px minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            min-width: 0;
        }

        .footer-contact-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            color: var(--accent);
            font-size: 16px;
        }

        .footer-contact-text {
            color: rgba(255, 255, 255, 0.72);
            font-size: 14px;
            line-height: 1.55;
            min-width: 0;
        }

        .footer-contact-text--inline {
            min-height: 38px;
            display: flex;
            align-items: center;
        }

        .footer-contact-text strong {
            display: block;
            margin-bottom: 2px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .footer-contact-text a {
            display: inline-block;
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
            color: #ffb128;
            font-weight: 700;
            line-height: 1.45;
            transition: color 0.2s ease;
        }

        .footer-contact-text a:hover {
            color: #ffffff;
        }

        .footer-work {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-work-inner {
            padding: 16px 0 20px;
            display: grid;
            gap: 10px;
        }

        .footer-work-lead {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-work-region {
            margin: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.88);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .footer-work-region i {
            color: var(--accent);
            font-size: 14px;
        }

        .footer-work-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 177, 40, 0.14);
            color: var(--accent-soft);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .footer-work-title {
            margin: 0;
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.2;
            max-width: 620px;
            text-align: center;
            text-wrap: balance;
        }

        .footer-work-title strong {
            color: var(--accent);
        }

        .footer-work-note {
            margin: 0;
            max-width: 620px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 12px;
            line-height: 1.5;
            text-align: center;
        }

        .footer-work-card {
            position: relative;
            padding: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }

        .footer-work-card::before {
            display: none;
        }

        .footer-work-card::after {
            display: none;
        }

        .footer-cities {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .footer-city {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 12px;
            border-radius: 10px;
            background: transparent;
            color: rgba(255, 255, 255, 0.84);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
            white-space: nowrap;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .footer-city::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 7px;
            height: 2px;
            border-radius: 999px;
            background: var(--accent);
            opacity: 0;
            transform: scaleX(0.45);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .footer-city:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }

        .footer-city.is-current {
            background: rgba(255, 177, 40, 0.18);
            color: #ffffff;
        }

        .footer-city:hover::after,
        .footer-city.is-current::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .footer-legal {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-legal-inner {
            min-height: 58px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-align: left;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            font-weight: 500;
        }

        .footer-legal-item {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 2px;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.86);
            transition: color 0.2s ease;
        }

        .footer-legal-item:hover {
            color: var(--accent);
        }

        .footer-legal-start {
            flex: 1 1 auto;
        }

        .footer-legal-end {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex: 0 0 auto;
        }

        .footer-meta {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-meta-inner {
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: rgba(255, 255, 255, 0.78);
            font-size: 13px;
            font-weight: 500;
        }

        .footer-bottom {
            background: linear-gradient(90deg, #111827 0%, #152030 58%, #1b283a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom-inner {
            min-height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .footer-credit {
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            transition: color 0.2s ease;
        }

        .lang-popup {
            position: fixed;
            right: 20px;
            bottom: 96px;
            z-index: 121;
            width: min(320px, calc(100vw - 32px));
            padding: 20px 20px 18px;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(255, 177, 40, 0.35);
            box-shadow: 0 20px 48px rgba(17, 24, 39, 0.18);
            display: none;
        }

        .lang-popup.show {
            display: block;
            animation: slideUp 0.28s ease;
        }

        .lang-popup-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 30px;
            height: 30px;
            border: 0;
            border-radius: 10px;
            background: rgba(17, 24, 39, 0.05);
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .lang-flag {
            width: 48px;
            height: 32px;
            margin: 0 auto 14px;
            border-radius: 7px;
            overflow: hidden;
            box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1);
        }

        .lang-flag-top {
            height: 50%;
            background: #005bbb;
        }

        .lang-flag-bottom {
            height: 50%;
            background: #ffd500;
        }

        .lang-popup-title {
            margin: 0 0 6px;
            text-align: center;
            color: #182131;
            font-size: 16px;
            font-weight: 800;
        }

        .lang-popup-text {
            margin: 0 0 14px;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55;
        }

        .lang-popup-action {
            display: inline-flex;
            width: 100%;
            min-height: 46px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #182131;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 10px 24px rgba(255, 177, 40, 0.26);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .lang-popup-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(255, 177, 40, 0.34);
        }

        .cookie-notice {
            position: fixed;
            left: 18px;
            bottom: 18px;
            z-index: 100100;
            max-width: 390px;
            padding: 14px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 177, 40, 0.34);
            border-left: 4px solid var(--accent);
            background: linear-gradient(135deg, rgba(24, 33, 49, 0.98) 0%, rgba(35, 43, 58, 0.96) 100%);
            color: #ffffff;
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.25), 0 8px 22px rgba(255, 177, 40, 0.16);
            display: none;
            gap: 12px;
            align-items: center;
            line-height: 1.45;
            font-size: 0.88rem;
            pointer-events: auto;
        }

        .cookie-notice.is-visible {
            display: flex;
        }

        .cookie-notice a {
            color: var(--accent-soft);
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
            transition: color 0.18s ease, text-decoration-color 0.18s ease, background-color 0.18s ease;
        }

        .cookie-notice a:hover {
            color: #fff4c4;
            text-decoration-color: var(--accent);
        }

        .cookie-notice a:focus-visible {
            outline: 2px solid rgba(255, 215, 110, 0.92);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .cookie-notice a:active {
            color: var(--accent);
        }

        .cookie-notice span {
            min-width: 0;
        }

        .cookie-notice button {
            flex: 0 0 auto;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            color: #111827;
            font-weight: 800;
            padding: 8px 13px;
            line-height: 1;
            cursor: pointer;
            white-space: nowrap;
            transition: box-shadow 0.18s ease, transform 0.18s ease, filter 0.18s ease;
        }

        .cookie-notice button:hover {
            box-shadow: 0 8px 18px rgba(255, 177, 40, 0.3);
            filter: brightness(1.04);
            transform: translateY(-1px);
        }

        .cookie-notice button:focus-visible {
            outline: 2px solid var(--accent-soft);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(255, 177, 40, 0.24);
        }

        .cookie-notice button:active {
            filter: brightness(0.94);
            transform: translateY(0);
        }

        .fab-wrap {
            position: fixed;
            right: 22px;
            bottom: 20px;
            z-index: 118;
            width: 52px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .chat-widget {
            --chat-bottom: max(22px, env(safe-area-inset-bottom));
            position: fixed;
            right: 22px;
            bottom: var(--chat-bottom);
            z-index: 125;
            font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            pointer-events: none;
        }

        .chat-toggle {
            width: 58px;
            height: 58px;
            border: 0;
            border-radius: 18px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            cursor: pointer;
            color: #111827;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18), 0 8px 22px rgba(255, 177, 40, 0.3);
            pointer-events: auto;
            transition: transform 0.24s ease, box-shadow 0.24s ease, border-radius 0.24s ease;
        }

        .chat-toggle::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 22px;
            border: 1px solid rgba(255, 177, 40, 0.4);
            opacity: 0.75;
            pointer-events: none;
        }

        .chat-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(17, 24, 39, 0.22), 0 10px 26px rgba(255, 177, 40, 0.34);
        }

        .chat-toggle.shifted {
            transform: translateY(-68px);
        }

        .chat-toggle.shifted:hover {
            transform: translateY(-70px);
        }

        .chat-widget.open .chat-toggle.shifted {
            transform: none;
        }

        .chat-toggle i {
            position: absolute;
            font-size: 25px;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .chat-toggle-close {
            opacity: 0;
            transform: rotate(-90deg) scale(0.85);
        }

        .chat-widget.open .chat-toggle-icon {
            opacity: 0;
            transform: rotate(90deg) scale(0.85);
        }

        .chat-widget.open .chat-toggle-close {
            opacity: 1;
            transform: rotate(0) scale(1);
        }

        .chat-toggle-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ef4444;
            border: 2px solid #ffffff;
            display: none;
        }

        .chat-widget.has-unread .chat-toggle-badge {
            display: block;
        }

        .chat-window {
            position: absolute;
            right: 0;
            bottom: 78px;
            width: 382px;
            max-width: calc(100vw - 32px);
            height: 520px;
            max-height: calc(100vh - 126px);
            max-height: calc(100dvh - 126px);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 24px 62px rgba(17, 24, 39, 0.22);
            opacity: 0;
            transform: translateY(18px) scale(0.96);
            pointer-events: none;
            transition: opacity 0.24s ease, transform 0.24s ease;
        }

        .chat-widget.open .chat-window {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .chat-header {
            min-height: 66px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex: 0 0 auto;
            color: #ffffff;
            background: linear-gradient(135deg, #182536 0%, #22324a 100%);
        }

        .chat-header-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 15px;
        }

        .chat-header-info i {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 177, 40, 0.18);
            color: var(--accent);
            font-size: 19px;
        }

        .chat-header-status {
            display: block;
            margin-top: 1px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 11px;
            font-weight: 700;
        }

        .chat-close {
            width: 34px;
            height: 34px;
            border: 0;
            border-radius: 11px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            transition: background-color 0.2s ease;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .chat-messages {
            flex: 1 1 auto;
            min-height: 0;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
            background: linear-gradient(180deg, #f8fafc 0%, #fff9ef 100%);
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
        }

        .chat-msg {
            max-width: 90%;
            display: flex;
            gap: 8px;
            animation: chatFadeIn 0.22s ease;
        }

        .chat-msg.user {
            align-self: flex-end;
        }

        .chat-msg-bubble {
            padding: 11px 14px;
            border-radius: 16px;
            color: #243047;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            font-size: 14px;
            line-height: 1.55;
            word-break: break-word;
        }

        .chat-msg.bot .chat-msg-bubble {
            border-bottom-left-radius: 5px;
        }

        .chat-msg.user .chat-msg-bubble {
            color: #111827;
            background: linear-gradient(145deg, var(--accent) 0%, #ffd977 100%);
            border-color: rgba(255, 177, 40, 0.36);
            border-bottom-right-radius: 5px;
        }

        .chat-msg-avatar {
            width: 30px;
            height: 30px;
            margin-top: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 12px;
            background: rgba(255, 177, 40, 0.18);
            color: #1f2937;
            font-size: 14px;
        }

        .chat-msg.user .chat-msg-avatar {
            display: none;
        }

        .chat-typing {
            display: inline-flex;
            gap: 4px;
            padding: 12px 14px;
            border-radius: 16px;
            border-bottom-left-radius: 5px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
        }

        .chat-typing span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #9ca3af;
            animation: chatTyping 1.25s infinite;
        }

        .chat-typing span:nth-child(2) {
            animation-delay: 0.16s;
        }

        .chat-typing span:nth-child(3) {
            animation-delay: 0.32s;
        }

        .chat-quick {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-left: 38px;
        }

        .chat-quick-btn {
            min-height: 34px;
            padding: 7px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 177, 40, 0.55);
            background: #ffffff;
            color: #243047;
            cursor: pointer;
            font-size: 13px;
            font-weight: 800;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .chat-quick-btn:hover {
            background: rgba(255, 177, 40, 0.18);
            transform: translateY(-1px);
        }

        .chat-input-area {
            flex: 0 0 auto;
            display: flex;
            gap: 8px;
            padding: 12px;
            background: #ffffff;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
        }

        .chat-input-area input {
            min-width: 0;
            flex: 1 1 auto;
            height: 42px;
            border-radius: 14px;
            border: 1px solid rgba(17, 24, 39, 0.12);
            padding: 0 13px;
            background: #f8fafc;
            color: #111827;
            outline: none;
            font-size: 14px;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .chat-input-area input:focus {
            border-color: rgba(255, 177, 40, 0.85);
            background: #ffffff;
        }

        .chat-send {
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            cursor: pointer;
            color: #111827;
            background: var(--accent);
            font-size: 16px;
            transition: transform 0.15s ease, opacity 0.2s ease;
        }

        .chat-send:active {
            transform: scale(0.94);
        }

        .chat-send:disabled {
            opacity: 0.55;
            cursor: default;
        }

        .floating-btn {
            position: relative;
            border: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .floating-btn-top {
            width: 52px;
            height: 52px;
            margin-bottom: 0;
            border: 0;
            background: linear-gradient(135deg, #182536 0%, #22324a 100%);
            color: #ffffff;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
            cursor: pointer;
            opacity: 0;
            transform: translateY(8px) scale(0.92);
            pointer-events: none;
            overflow: visible;
            transition: transform 0.24s ease, opacity 0.22s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }

        .floating-btn-top i {
            position: relative;
            z-index: 2;
            font-size: 1.2rem;
        }

        .floating-btn-top:hover {
            background: linear-gradient(135deg, #22324a 0%, #2b3d58 100%);
            box-shadow: 0 20px 40px rgba(17, 24, 39, 0.22);
            transform: translateY(-2px);
        }

        .floating-btn-top.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            margin-bottom: 0;
        }

        .chat-widget.open ~ .fab-wrap,
        body.menu-open .chat-widget {
            display: none;
        }

        @keyframes chatFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes chatTyping {
            0%, 60%, 100% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-5px);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-credit:hover {
            color: var(--accent);
        }

        html.menu-open,
        body.menu-open {
            overflow: hidden;
        }

        .page-hero--blog::before,
        .page-hero--blog::after {
            border-color: rgba(255, 177, 40, 0.08);
        }

        .blog-cats {
            padding: 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .blog-cats .container {
            padding-top: 24px;
            padding-bottom: 22px;
            border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        }

        .blog-cats__list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 16px;
            align-items: center;
        }

        .blog-cats__item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 20px;
            border-radius: 999px;
            border: 1px solid transparent;
            background: #edf2f8;
            color: #495d77;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            box-shadow: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .blog-cats__item:hover,
        .blog-cats__item--active {
            transform: translateY(-1px);
            border-color: rgba(255, 177, 40, 0.24);
            background: linear-gradient(135deg, #162131 0%, #23334b 100%);
            color: #ffffff;
            box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
        }

        .blog-shell {
            padding: 28px 0 82px;
            background: linear-gradient(180deg, #f8fafc 0%, #f4f6fa 45%, #eef2f7 100%);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px 24px;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            border-radius: 28px;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.06);
            box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 52px rgba(15, 23, 42, 0.12);
        }

        .blog-card-media {
            position: relative;
            display: block;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: linear-gradient(180deg, #eaf0f7 0%, #dce5f0 100%);
        }

        .blog-card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.2) 100%);
            pointer-events: none;
        }

        .blog-card-media.is-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f5f9;
        }

        .blog-card-media.is-placeholder::before {
            content: '\F4A7';
            font-family: 'bootstrap-icons';
            font-size: 3rem;
            color: #94a3b8;
            opacity: 0.7;
            line-height: 1;
        }

        .blog-card-media.is-placeholder::after {
            display: none;
        }

        .blog-card-media img,
        .blog-article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-card-body {
            display: grid;
            grid-template-rows: auto 1fr auto;
            gap: 14px;
            padding: 24px 24px 20px;
            background: #ffffff;
        }

        .blog-card-meta,
        .blog-article-hero-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .blog-chip {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #ffd992 0%, #ffb128 100%);
            color: #1a2638;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: none;
            box-shadow: 0 14px 30px rgba(255, 177, 40, 0.2);
        }

        .blog-card-chip {
            position: absolute;
            left: 22px;
            bottom: 18px;
            z-index: 1;
        }

        .blog-card-title {
            margin: 0;
            color: var(--ink);
            font-size: 20px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -0.03em;
        }

        .blog-card-title a:hover {
            color: #c97d00;
        }

        .blog-card-text {
            margin: 0;
            color: #7d8ca3;
            font-size: 16px;
            line-height: 1.72;
        }

        .blog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 2px;
            padding-top: 16px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
        }

        .blog-card-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #94a3b8;
            font-size: 14px;
            font-weight: 500;
        }

        .blog-card-date i {
            color: #c97d00;
            font-size: 13px;
        }

        .blog-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #c97d00;
            font-size: 16px;
            font-weight: 800;
        }

        .blog-card-link::after {
            content: '\2192';
            font-size: 16px;
            line-height: 1;
        }

        .blog-card-link:hover {
            color: var(--accent);
        }

        .blog-pagination {
            margin-top: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .blog-page-list {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .blog-page,
        .blog-page-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 48px;
            min-height: 48px;
            padding: 0 16px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            color: var(--ink);
            font-size: 14px;
            font-weight: 800;
            box-shadow: 0 12px 24px rgba(17, 24, 39, 0.06);
        }

        .blog-page-nav {
            gap: 8px;
        }

        .blog-page:hover,
        .blog-page-nav:hover,
        .blog-page.is-current {
            border-color: rgba(255, 177, 40, 0.24);
            background: #fff7e6;
            color: #c97d00;
        }

        .blog-page.is-current {
            box-shadow: 0 14px 28px rgba(255, 177, 40, 0.16);
        }

        .blog-article-hero .page-hero-title {
            max-width: 960px;
            font-size: clamp(34px, 4.4vw, 52px);
        }

        .blog-article-hero .page-hero-breadcrumb {
            margin-bottom: 12px;
        }

        .blog-article-hero .page-hero-breadcrumb ol.breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .blog-article-hero .page-hero-breadcrumb .breadcrumb-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 500;
        }

        .blog-article-hero .page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: '/';
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
        }

        .blog-article-hero .page-hero-breadcrumb .breadcrumb-item.active {
            color: var(--accent);
        }

        .blog-article-date {
            margin: 16px 0 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 16px;
            line-height: 1.4;
        }

        .blog-article-date i {
            color: var(--accent);
        }

        .blog-article-shell {
            padding-top: 46px;
        }

        .blog-article-main {
            max-width: 980px;
            margin: 0 auto;
        }

        .blog-article-card {
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
            overflow: hidden;
        }

        .blog-article-cover {
            aspect-ratio: 16 / 8;
            background: #152030;
        }

        .blog-article-content {
            padding: 34px;
        }

        .static-content p {
            margin: 0 0 20px;
            color: #4b5563;
            font-size: 17px;
            line-height: 1.82;
        }

        .static-content p:last-child {
            margin-bottom: 0;
        }

        .static-content h2,
        .static-content h3 {
            margin: 34px 0 14px;
            color: #182536;
            font-family: 'Exo 2', sans-serif;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .static-content h2 {
            font-size: 34px;
            font-weight: 800;
        }

        .static-content h3 {
            font-size: 28px;
            font-weight: 800;
        }

        .static-content ul,
        .static-content ol {
            margin: 0 0 22px;
            padding-left: 22px;
            color: #4b5563;
            font-size: 17px;
            line-height: 1.82;
        }

        .static-content li + li {
            margin-top: 8px;
        }

        .static-content a {
            color: #c97d00;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .blog-article-back {
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid rgba(17, 24, 39, 0.12);
        }

        .btn-outline-accent {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid var(--accent);
            color: #c97d00;
            font-weight: 700;
            padding: 11px 28px;
            border-radius: 999px;
            background: transparent;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .btn-outline-accent:hover {
            background: var(--accent);
            color: #1f2937;
        }

        .blog-related-shell {
            padding-top: 10px;
            background: transparent;
        }

        .blog-related-head {
            text-align: center;
            margin: 0 auto 34px;
        }

        .blog-related-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .blog-related-link {
            display: block;
        }

        .blog-related-card {
            height: 100%;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .blog-related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
        }

        .blog-related-body {
            padding: 24px;
        }

        .blog-related-title {
            margin: 0;
            color: #182536;
            font-size: 21px;
            font-weight: 800;
            line-height: 1.34;
        }

        .blog-related-text {
            margin: 10px 0 0;
            color: #64748b;
            font-size: 15px;
            line-height: 1.65;
        }

        .blog-related-more {
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #c97d00;
            font-size: 14px;
            font-weight: 700;
        }

        .page-hero--portfolio::before,
        .page-hero--portfolio::after {
            background: transparent;
        }

        .page-hero--portfolio .page-hero-breadcrumb ol.breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .page-hero--portfolio .page-hero-breadcrumb .breadcrumb-item {
            color: rgba(255, 255, 255, 0.78);
            font-size: 13px;
            letter-spacing: 0.02em;
        }

        .page-hero--portfolio .page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: '/';
            margin-right: 8px;
            color: rgba(255, 255, 255, 0.5);
        }

        .page-hero--portfolio .page-hero-breadcrumb .breadcrumb-item.active {
            color: #fff;
        }

        .page-hero--catalog::before,
        .page-hero--catalog::after {
            background: transparent;
        }

        .catalog-section {
            padding-top: 46px;
        }

        .catalog-index-section {
            padding: 56px 0 72px;
        }

        .catalog-grid,
        .catalog-index-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .catalog-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 200px;
            padding: 28px;
            background: #fff;
            border: 1px solid #e8ecf0;
            border-radius: 16px;
            overflow: hidden;
            transition: all .3s ease;
            text-decoration: none;
            color: #111827;
        }

        .catalog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 177, 40, 0.35);
            color: #111827;
        }

        .catalog-card__bg-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            color: #f9b11a;
            opacity: 0.08;
            font-size: 72px;
            line-height: 1;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .catalog-card:hover .catalog-card__bg-icon {
            opacity: 0.15;
            transform: scale(1.1);
        }

        .catalog-card__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(255, 177, 40, 0.12);
            color: #b97700;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .catalog-card__badge i {
            font-size: 14px;
        }

        .catalog-card__title {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
            margin-bottom: 8px;
            padding-right: 48px;
            letter-spacing: 0;
        }

        .catalog-card__count {
            margin: 0;
            color: #8b95a5;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.25;
        }

        .catalog-card__arrow {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 177, 40, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b97700;
            font-size: 16px;
            transition: all 0.3s;
        }

        .catalog-card:hover .catalog-card__arrow {
            background: #f9b11a;
            color: #111827;
        }

        .seo-section {
            padding: 0 0 64px;
        }

        .seo-card {
            background: #eef1f5;
            border: 1px solid #d8dde4;
            border-radius: 16px;
            padding: 40px;
        }

        .seo-card h2 {
            margin: 0 0 16px;
            font-size: 22px;
            color: #0f172a;
            font-weight: 800;
            line-height: 1.3;
        }

        .seo-card h2 span {
            color: #e89e10;
        }

        .seo-card p {
            margin: 0 0 12px;
            font-size: 15px;
            line-height: 1.8;
            color: #334155;
        }

        .seo-card p:last-child {
            margin-bottom: 0;
        }

        .catalog-layout {
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 32px;
            align-items: start;
        }

        .catalog-sidebar {
            border: 1px solid rgba(17, 24, 39, 0.1);
            border-radius: 16px;
            background: #f3f5f7;
            box-shadow: none;
            padding: 20px;
            position: sticky;
            top: 88px;
        }

        .catalog-sidebar__title {
            margin: 0 0 16px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #111827;
        }

        .catalog-sidebar__list {
            display: grid;
            gap: 0;
        }

        .catalog-brand-filter {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
        }

        .catalog-sidebar__title--brands {
            margin-bottom: 12px;
        }

        .catalog-brand-filter__list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .catalog-brand-filter__link {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(17, 24, 39, 0.12);
            background: #ffffff;
            color: #475569;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .catalog-brand-filter__link:hover {
            border-color: rgba(255, 177, 40, 0.5);
            background: rgba(255, 177, 40, 0.12);
            color: #8a5900;
        }

        .catalog-brand-filter__link.is-active {
            border-color: #f9b11a;
            background: #f9b11a;
            color: #111827;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            color: #475569;
            text-decoration: none;
            border: none;
            background: transparent;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.35;
            transition: all 0.2s ease;
            margin-bottom: 2px;
        }

        .sidebar-link i {
            font-size: 16px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
            color: #475569;
        }

        .sidebar-link .count {
            margin-left: auto;
            color: inherit;
            font-size: 11px;
            font-weight: 700;
            opacity: 0.5;
        }

        .sidebar-link--sub {
            padding-left: 36px;
            font-size: 13px;
        }

        .sidebar-link--back {
            font-size: 13px;
            font-weight: 700;
            color: #334155;
            margin-bottom: 6px;
        }

        .sidebar-link--back i {
            color: #475569;
        }

        .sidebar-link:hover {
            background: rgba(255, 177, 40, 0.14);
            color: #8a5900;
        }

        .sidebar-link.active {
            background: #f9b11a;
            color: #111827;
            font-weight: 700;
        }

        .sidebar-link.active i,
        .sidebar-link.active .count {
            color: inherit;
        }

        .catalog-products__head {
            margin-bottom: 16px;
        }

        .catalog-products__head h2 {
            margin: 0;
            color: #0f172a;
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 800;
        }

        .catalog-products__head p {
            margin: 8px 0 0;
            color: #64748b;
            font-size: 0.95rem;
        }

        .catalog-products__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .product-card {
            display: block;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: #333;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid rgba(17, 24, 39, 0.08);
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
            color: #333;
        }

        .product-card__image {
            height: 206px;
            overflow: hidden;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card__image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            transition: transform 0.25s ease;
        }

        .product-card:hover .product-card__image img {
            transform: scale(1.04);
        }

        .product-card__no-image {
            font-size: 2.5rem;
            color: #cbd5e1;
        }

        .product-card__body {
            padding: 1rem;
        }

        .product-card__vendor {
            font-size: 0.75rem;
            color: #c97d00;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.35rem;
        }

        .product-card__title {
            margin: 0;
            font-size: 0.92rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.4;
            min-height: 2.55em;
        }

        .product-card__price {
            margin-top: 0.6rem;
            font-size: 1.1rem;
            font-weight: 800;
            color: #c97d00;
        }

        .catalog-products-empty {
            margin-top: 18px;
            border: 1px dashed #cbd5e1;
            border-radius: 12px;
            padding: 14px 16px;
            color: #64748b;
            background: #f8fafc;
        }

        .catalog-pagination {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .catalog-page-link {
            min-width: 38px;
            height: 38px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #1f2937;
            border: 1px solid #dbe2ea;
            background: #fff;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .catalog-page-link:hover {
            border-color: var(--accent);
            color: #111827;
            transform: translateY(-1px);
        }

        .catalog-page-link.is-current {
            background: var(--accent);
            border-color: var(--accent);
            color: #111827;
        }

        .catalog-product-content {
            display: grid;
            gap: 18px;
        }

        .catalog-product-main {
            background: #fff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            padding: 18px;
            display: grid;
            grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
            gap: 22px;
            align-items: start;
        }

        .catalog-product-price-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .catalog-product-stock {
            font-size: 0.82rem;
            font-weight: 700;
            padding: 0.34rem 0.78rem;
            border-radius: 999px;
        }

        .catalog-product-stock.in-stock {
            background: rgba(22, 163, 74, 0.14);
            color: #166534;
        }

        .catalog-product-stock.out-stock {
            background: rgba(220, 38, 38, 0.12);
            color: #991b1b;
        }

        .catalog-product-description h3 {
            margin: 0 0 8px;
            color: #0f172a;
            font-size: 1rem;
            font-weight: 800;
        }

        .catalog-product-description p {
            margin: 0;
            color: #334155;
            line-height: 1.72;
            font-size: 0.95rem;
            white-space: normal;
        }

        .catalog-product-buy-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            background: var(--accent);
            color: #111827;
            border-radius: 999px;
            padding: 0.64rem 1.2rem;
            font-weight: 800;
            margin-top: 14px;
            transition: all 0.2s ease;
        }

        .catalog-product-buy-link:hover {
            color: #111827;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(255, 177, 40, 0.35);
        }

        .catalog-product-specs {
            background: #fff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            padding: 18px;
        }

        .catalog-product-specs h3 {
            margin: 0 0 12px;
            color: #0f172a;
            font-size: 1.05rem;
            font-weight: 800;
        }

        .catalog-product-specs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .catalog-product-specs-table tr {
            border-bottom: 1px solid #e2e8f0;
        }

        .catalog-product-specs-table tr:last-child {
            border-bottom: none;
        }

        .catalog-product-specs-table td {
            padding: 0.62rem 0;
            font-size: 0.92rem;
            vertical-align: top;
        }

        .catalog-product-specs-table td:first-child {
            width: 48%;
            color: #64748b;
            padding-right: 16px;
        }

        .catalog-product-specs-table td:last-child {
            color: #0f172a;
            font-weight: 600;
        }

        .catalog-seo-text {
            max-width: 920px;
            margin: 0 auto;
        }

        /* ═══ Product detail page ═══ */
        .product-section { padding: 32px 0 48px; }
        .product-breadcrumb {
            margin-bottom: 18px;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) transparent;
            touch-action: pan-x;
            padding-bottom: 6px;
        }
        .product-breadcrumb::-webkit-scrollbar {
            height: 8px;
        }
        .product-breadcrumb::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 999px;
        }
        .product-breadcrumb::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--accent-soft) 0%, var(--accent) 100%);
            border-radius: 999px;
        }
        .product-breadcrumb::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--accent) 0%, #f59e0b 100%);
        }
        .product-breadcrumb::-webkit-scrollbar-button {
            display: none;
            width: 0;
            height: 0;
        }
        .product-breadcrumb .breadcrumb {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0;
            margin: 0;
            padding: 0;
            list-style: none;
            font-size: 14px;
            color: #64748b;
            width: max-content;
            min-width: 100%;
        }
        .product-breadcrumb .breadcrumb-item {
            display: inline-flex;
            align-items: center;
            list-style: none;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: '\203A';
            color: #94a3b8;
            margin: 0 6px;
            font-size: 16px;
            line-height: 1;
            flex-shrink: 0;
        }
        .product-breadcrumb .breadcrumb-item a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.15s;
        }
        .product-breadcrumb .breadcrumb-item a:hover {
            color: var(--accent);
        }
        .product-breadcrumb .breadcrumb-item.active {
            color: #334155;
            font-weight: 500;
        }
        .product-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
            gap: 40px;
            align-items: start;
        }

        /* Gallery */
        .gallery {}
        .gallery-main {
            aspect-ratio: 1;
            background: #fff;
            border: 1px solid #dfe6ee;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 12px;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        }
        .gallery-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .gallery-thumbs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .gallery-thumb {
            width: 72px;
            height: 72px;
            flex-shrink: 0;
            border: 1px solid #dfe6ee;
            border-radius: 10px;
            padding: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .gallery-thumb.active,
        .gallery-thumb:hover {
            border-color: #ffb128;
            box-shadow: 0 6px 14px rgba(255, 177, 40, 0.24);
        }
        .gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

        /* Product info */
        .product-info {
            position: sticky;
            top: 92px;
        }

        .product-vendor {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: #c97d00;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .product-info .product-title {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            color: #0f172a;
            line-height: 1.3;
            margin: 0 0 20px;
        }
        .product-info .product-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 0;
            letter-spacing: -0.02em;
        }
        .product-top-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .product-stock {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 0;
            padding: 6px 12px;
            border-radius: 999px;
        }
        .product-stock--in {
            color: #15803d;
            background: #dcfce7;
            border: 1px solid #bbf7d0;
        }
        .product-stock--out {
            color: #dc2626;
            background: #fee2e2;
            border: 1px solid #fecaca;
        }
        .product-stock i { font-size: 14px; }

        /* Order card */
        .order-card {
            background: #fff;
            border: 1px solid #dfe6ee;
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 28px;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
        }
        .order-card-title {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .order-card-title i { color: #ffb128; }
        .order-card-sub {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
        }
        .order-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 10px;
        }
        .order-field {
            width: 100%;
            padding: 11px 14px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 500;
            color: #0f172a;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            margin-bottom: 10px;
            box-sizing: border-box;
        }
        .order-row .order-field {
            margin-bottom: 0;
        }
        .order-field::placeholder { color: #94a3b8; }
        .order-field:focus {
            border-color: #ffb128;
            box-shadow: 0 0 0 3px rgba(255,177,40,.12);
        }
        .order-submit {
            width: 100%;
            padding: 13px;
            background: #ffb128;
            color: #1a1400;
            font-family: inherit;
            font-size: 15px;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .order-submit:hover {
            background: #e89e10;
            box-shadow: 0 4px 16px rgba(255,177,40,.35);
            transform: translateY(-1px);
        }
        .order-privacy {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: #94a3b8;
            margin-top: 12px;
        }
        .order-privacy i {
            font-size: 13px;
            color: #64748b;
            flex-shrink: 0;
        }

        .product-docs {
            border-top: 1px solid #e2e8f0;
            padding-top: 18px;
        }
        .product-docs h2 {
            margin: 0 0 12px;
            font-size: 34px;
            font-weight: 800;
            color: #0f172a;
        }
        .product-docs-list {
            display: grid;
            gap: 10px;
        }
        .product-doc-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #0f2f54;
            font-weight: 500;
            width: fit-content;
        }
        .product-doc-link i {
            color: #64748b;
        }

        .product-tabs-section {
            padding: 0 0 40px;
        }
        .product-tabs-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .product-tab-btn {
            border: 1px solid #d9e1ea;
            background: #fff;
            color: #334155;
            border-radius: 999px;
            padding: 9px 14px;
            font-size: 14px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .product-tab-btn.is-active {
            border-color: #ffb128;
            background: #fff6e1;
            color: #7c4f00;
        }
        .product-tab-panel {
            display: none;
        }
        .product-tab-panel.is-active {
            display: block;
        }
        .product-tab-action {
            margin-top: 20px;
        }

        .desc-html ul,
        .desc-html ol {
            padding-left: 22px;
            margin: 10px 0;
        }
        .desc-html p {
            margin: 10px 0;
        }

        .related-products-section {
            padding: 0 0 56px;
        }
        .related-products-title {
            font-size: 30px;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 16px;
        }
        .related-products-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        /* Product features */
        .product-features { display: flex; flex-direction: column; gap: 10px; }
        .product-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
        }
        .product-feature i {
            width: 24px;
            height: 24px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #fff8eb;
            color: #c97d00;
            font-size: 12px;
            flex-shrink: 0;
        }

        /* Description & Specs sections */
        .product-desc-section,
        .specs-section { padding: 0 0 56px; }
        .desc-card,
        .specs-card {
            background: #fff;
            border: 1px solid #dfe6ee;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
        }
        .desc-card h2,
        .specs-card h2 {
            font-size: 20px;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 16px;
        }
        .desc-html {
            font-size: 15px;
            line-height: 1.8;
            color: #475569;
        }

        /* Specs table */
        .specs-table { width: 100%; border-collapse: collapse; }
        .specs-table tr { border-bottom: 1px solid #e2e8f0; }
        .specs-table tr:last-child { border-bottom: none; }
        .specs-table td { padding: 12px 16px; font-size: 14px; vertical-align: top; }
        .specs-table td:first-child {
            font-weight: 600;
            color: #0f172a;
            width: 40%;
            white-space: nowrap;
        }
        .specs-table td:last-child { color: #475569; }
        .specs-table tr:nth-child(even) { background: rgba(0,0,0,.02); }

        @media (max-width: 768px) {
            .product-layout { grid-template-columns: 1fr; gap: 32px; }
            .product-info { position: static; }
            .gallery-main { aspect-ratio: auto; min-height: 280px; }
            .gallery-thumb { width: 56px; height: 56px; }
            .desc-card, .specs-card { padding: 24px; }
            .specs-table td:first-child { white-space: normal; }
            .order-row { grid-template-columns: 1fr; }
            .related-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 520px) {
            .related-products-grid { grid-template-columns: 1fr; }
            .product-docs h2 { font-size: 20px; }
        }

        @media (max-width: 991px) {
            .catalog-grid,
            .catalog-index-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .catalog-card {
                min-height: 160px;
                padding: 20px;
            }

            .catalog-card__bg-icon {
                font-size: 56px;
            }
        }

        @media (max-width: 600px) {
            .catalog-grid,
            .catalog-index-grid {
                grid-template-columns: 1fr;
            }

            .catalog-card {
                min-height: 160px;
                padding: 20px;
            }

            .seo-card {
                padding: 24px;
            }

            .seo-card h2 {
                font-size: 20px;
            }
        }

        .catalog-seo-text h2 {
            margin: 0;
            font-size: 1.52rem;
            color: #111827;
            font-weight: 800;
        }

        .catalog-seo-text p {
            margin: 14px 0 0;
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.8;
        }

        .portfolio-types-shell {
            padding-top: 52px;
        }

        .portfolio-types-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 26px;
        }

        .portfolio-type-link {
            display: block;
            width: calc((100% - 52px) / 3);
            color: inherit;
            text-decoration: none;
        }

        .portfolio-type-card {
            height: 100%;
            text-align: center;
            padding: 40px 24px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .portfolio-type-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
            border-color: rgba(255, 198, 81, 0.52);
        }

        .portfolio-type-icon {
            width: 68px;
            height: 68px;
            margin: 0 auto 18px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: background-color 0.25s ease, color 0.25s ease;
        }

        .portfolio-type-icon--accent {
            background: rgba(255, 198, 81, 0.18);
            color: #e7a200;
        }

        .portfolio-type-icon--soft {
            background: rgba(17, 24, 39, 0.08);
            color: #0f2f55;
        }

        .portfolio-type-card:hover .portfolio-type-icon--accent {
            background: var(--accent);
            color: #1a1a1a;
        }

        .portfolio-type-card:hover .portfolio-type-icon--soft {
            background: #0f2f55;
            color: #fff;
        }

        .portfolio-type-title {
            margin: 0 0 10px;
            font-size: clamp(1.2rem, 1.8vw, 1.5rem);
            font-weight: 800;
            line-height: 1.25;
            color: #0f2f55;
        }

        .portfolio-type-text {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.65;
            color: #6b7280;
        }

        .portfolio-gallery-shell {
            padding-top: 26px;
        }

        .portfolio-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .portfolio-gallery-item {
            display: block;
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
        }

        .portfolio-gallery-thumb-wrap {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #d9dee6;
            aspect-ratio: 4 / 3;
        }

        .portfolio-gallery-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .portfolio-gallery-overlay {
            position: absolute;
            inset: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(160deg, rgba(15, 47, 85, 0.15), rgba(15, 47, 85, 0.58));
            color: #fff;
            font-size: 28px;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .portfolio-gallery-item:hover .portfolio-gallery-thumb-wrap img {
            transform: scale(1.05);
        }

        .portfolio-gallery-item:hover .portfolio-gallery-overlay {
            opacity: 1;
        }

        .portfolio-gallery-empty {
            padding: 28px;
            border: 1px dashed rgba(17, 24, 39, 0.2);
            border-radius: 14px;
            text-align: center;
            color: #64748b;
        }

        .barriers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .barriers-grid__item .card {
            background: #fff;
            border: 1px solid rgba(0,0,0,.125);
            border-radius: 16px !important;
            overflow: hidden;
            box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
        }

        .barriers-grid__item .card-body {
            padding: 1rem;
            text-align: center;
        }

        .barriers-grid__item .text-muted {
            color: #6c757d;
        }

        .barriers-info {
            text-align: center;
            margin-top: 3rem;
            color: #6c757d;
        }

        .barriers-info i {
            margin-right: 0.5rem;
        }

        @media (max-width: 980px) {
            .barriers-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .barriers-grid { grid-template-columns: 1fr; }
        }

        .portfolio-lightbox {
            position: fixed;
            inset: 0;
            z-index: 1400;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(8, 13, 22, 0.88);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .portfolio-lightbox.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .portfolio-lightbox-content {
            width: min(88vw, 1120px);
            max-height: 82vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-lightbox-content img {
            max-width: 100%;
            max-height: 82vh;
            border-radius: 14px;
            object-fit: contain;
            box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
        }

        .portfolio-lightbox-close,
        .portfolio-lightbox-nav {
            position: absolute;
            border: 0;
            background: rgba(255, 255, 255, 0.13);
            color: #fff;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .portfolio-lightbox-close:hover,
        .portfolio-lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .portfolio-lightbox-close {
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 34px;
            line-height: 1;
        }

        .portfolio-lightbox-nav {
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            font-size: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-lightbox-prev {
            left: 22px;
        }

        .portfolio-lightbox-next {
            right: 22px;
        }

        .portfolio-lightbox-counter {
            position: absolute;
            left: 50%;
            bottom: 20px;
            transform: translateX(-50%);
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 13px;
            letter-spacing: 0.02em;
        }

        @media (max-width: 1160px) {
            .portfolio-type-link {
                width: calc((100% - 26px) / 2);
            }

            .portfolio-gallery-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .catalog-products__grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 1360px) {
            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 22px;
            }

            .blog-related-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 980px) {
            .portfolio-gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .catalog-index-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .catalog-layout {
                grid-template-columns: 1fr;
            }

            .catalog-sidebar {
                position: static;
            }

            .catalog-product-main {
                grid-template-columns: 1fr;
            }

            .catalog-products__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-card {
                border-radius: 24px;
            }

            .blog-article-content {
                padding: 24px 20px 26px;
            }

            .blog-related-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .static-content h2 {
                font-size: 28px;
            }

            .static-content h3 {
                font-size: 24px;
            }
        }

        @media (max-width: 640px) {
            .portfolio-types-shell {
                padding-top: 30px;
            }

            .catalog-index-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .catalog-products__grid {
                grid-template-columns: 1fr;
            }

            .portfolio-types-grid {
                gap: 16px;
            }

            .portfolio-type-link {
                width: 100%;
            }

            .portfolio-gallery-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .portfolio-lightbox-close {
                top: 12px;
                right: 12px;
            }

            .portfolio-lightbox-nav {
                width: 38px;
                height: 38px;
                font-size: 19px;
            }

            .portfolio-lightbox-prev {
                left: 10px;
            }

            .portfolio-lightbox-next {
                right: 10px;
            }

            .portfolio-type-card {
                padding: 30px 18px;
                border-radius: 16px;
            }

            .portfolio-type-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .blog-cats .container {
                padding-top: 18px;
                padding-bottom: 18px;
            }

            .blog-cats__list {
                gap: 12px;
            }

            .blog-cats__item {
                min-height: 38px;
                padding: 0 16px;
                font-size: 15px;
            }

            .blog-shell {
                padding-top: 22px;
            }

            .blog-card-media {
                aspect-ratio: 16 / 8.7;
            }

            .blog-card-chip {
                left: 18px;
                bottom: 14px;
            }

            .blog-card-body {
                padding: 20px 18px 18px;
            }

            .blog-card-title {
                font-size: 18px;
            }

            .blog-card-text {
                font-size: 15px;
                line-height: 1.68;
            }

            .blog-card-footer {
                padding-top: 14px;
            }

            .blog-card-date,
            .blog-card-link {
                font-size: 14px;
            }

            .blog-pagination {
                gap: 10px;
            }

            .blog-page-list {
                gap: 8px;
            }
        }

        @media (max-width: 1360px) {
            .section-block {
                padding: 46px 0;
            }

            .section-heading {
                margin-bottom: 28px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }

            .ct-layout {
                grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
                gap: 32px;
            }

            .ct-col-title {
                font-size: 29px;
            }

            .ct-form-card {
                padding: 32px;
            }

            .ct-info-label {
                font-size: 18px;
            }

            .ct-info-text,
            .ct-info-link,
            .ct-form-note {
                font-size: 15px;
            }

            .service-card {
                padding: 22px 18px 20px;
                border-radius: 20px;
            }

            .service-title {
                font-size: 22px;
            }

            .reasons-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }

            .process-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }

            .cta-form-grid {
                grid-template-columns: 1fr;
            }

            .cta-copy {
                margin-bottom: 22px;
            }

            .nav-link,
            .nav-trigger {
                padding: 0 10px;
                font-size: 12px;
                letter-spacing: 0.03em;
            }

            .nav-list {
                gap: 0;
            }

            .topbar-info {
                gap: 14px;
            }
        }

        @media (max-width: 1180px) {
            .ct-layout {
                grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
                gap: 24px;
            }

            .ct-form-card {
                padding: 28px;
            }

            .ct-col-title {
                font-size: 27px;
            }

            .ct-info-col {
                padding-top: 16px;
            }
        }

        @media (max-width: 980px) {
            .ct-info-col {
                padding-top: 0;
            }

            .ct-layout {
                grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
                gap: 20px;
            }

            .ct-form-grid {
                grid-template-columns: 1fr;
            }

            .ct-form-card {
                padding: 24px;
            }

            .ct-col-title {
                font-size: 25px;
                margin-bottom: 16px;
            }
        }

        @media (max-width: 820px) {
            .ct-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 1250px) {
            .topbar-inner {
                min-height: auto;
                padding: 10px 0;
                align-items: flex-start;
                flex-wrap: wrap;
                row-gap: 10px;
            }

            .topbar-info {
                width: 100%;
                gap: 10px 14px;
            }

            .topbar-side {
                width: 100%;
                justify-content: flex-start;
                margin-left: 0;
            }

            .topbar-item {
                font-size: 12px;
            }

            .topbar-item--email {
                max-width: 100%;
            }

            .lang-switch {
                padding: 3px;
            }

            .lang-pill {
                min-width: 34px;
                padding: 7px 10px;
            }

            .middle-inner {
                gap: 14px;
            }

            .brand-title {
                font-size: 28px;
            }

            .brand-subtitle {
                font-size: 11px;
                letter-spacing: 0.05em;
            }

            .brand-subtitle i {
                font-size: 24px;
            }

            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .footer-nav-inner {
                padding: 24px 0 22px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 26px;
                row-gap: 16px;
                grid-auto-rows: 1fr;
                align-items: start;
            }

            .footer-nav-brand {
                grid-column: auto;
            }

            .footer-nav-brand,
            .footer-nav-group {
                min-width: 0;
                height: 100%;
                gap: 12px;
                padding: 14px 16px;
                border-radius: 16px;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.06);
                justify-items: stretch;
                text-align: left;
            }

            .footer-brand-link {
                margin-inline: 0;
                justify-content: flex-start;
            }

            .footer-brand-name {
                justify-items: start;
            }

            .footer-nav-list a,
            .footer-contact-text,
            .footer-contact-text a {
                font-size: 13px;
            }

            .footer-nav-list {
                gap: 8px;
            }

            .footer-contact-list {
                gap: 10px;
            }

            .footer-contact-item {
                gap: 10px;
            }

            .footer-brand-desc {
                max-width: none;
                margin-bottom: 2px;
            }

            .footer-work-inner {
                padding: 14px 0 16px;
                gap: 10px;
            }
        }

        @media (max-width: 980px) {
            .footer-nav-inner {
                padding: 24px 0 22px;
                gap: 16px;
            }

            .footer-nav-brand,
            .footer-nav-group {
                padding: 16px;
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.035);
                border: 1px solid rgba(255, 255, 255, 0.06);
            }

            .footer-nav-list {
                gap: 8px;
            }

            .footer-nav-list a {
                font-size: 13px;
            }

            .footer-contact-text,
            .footer-contact-text a {
                font-size: 13px;
            }
        }

        @media (max-width: 760px) {
            .footer-nav-inner {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }

            .footer-nav-brand {
                grid-column: auto;
            }

            .footer-nav-brand,
            .footer-nav-group {
                padding: 0;
                border-radius: 0;
                background: transparent;
                border: 0;
                box-shadow: none;
            }

            .footer-contact-text--inline {
                align-items: flex-start;
                min-height: auto;
            }

            .footer-contact-text a {
                white-space: normal;
            }

            .footer-work-inner {
                padding: 14px 0 18px;
            }

            .footer-cities {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px) {
            .site-footer {
                margin-top: 0;
            }

            .landing-hero-inner {
                padding: 34px 0 42px;
                gap: 18px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 0 14px;
            }

            .hero-title {
                font-size: 40px;
                line-height: 1.08;
            }

            .hero-subtitle {
                font-size: 15px;
                line-height: 1.65;
            }

            .hero-actions {
                gap: 10px;
            }

            .hero-primary,
            .hero-secondary {
                width: 100%;
                min-height: 48px;
                padding: 0 18px;
                font-size: 13px;
            }

            .hero-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                max-width: 100%;
                border-radius: 16px;
            }

            .hero-stat {
                min-width: 0;
                padding: 14px 8px 12px;
                border-right: 1px solid rgba(255, 255, 255, 0.12);
            }

            .hero-stat:last-child {
                border-right: 0;
            }

            .hero-stat-value {
                font-size: 20px;
            }

            .hero-stat-label {
                margin-top: 5px;
                font-size: 10px;
                line-height: 1.25;
            }

            .reasons-grid,
            .reviews-grid,
            .city-insights-grid,
            .process-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .ct-form-grid {
                grid-template-columns: 1fr;
            }

            .ct-info-col,
            .ct-form-card {
                padding: 24px 18px 22px;
                border-radius: 22px;
            }

            .ct-info-col {
                padding: 0;
            }

            .ct-main {
                padding: 22px 0 40px;
            }

            .ct-layout {
                gap: 20px;
            }

            .page-hero {
                padding: 48px 0 54px;
            }

            .page-hero::before,
            .page-hero::after {
                border-width: 34px;
            }

            .page-hero::before {
                width: 220px;
                height: 220px;
                left: -126px;
                bottom: -118px;
            }

            .page-hero::after {
                width: 240px;
                height: 240px;
                top: -126px;
                right: -122px;
            }

            .page-hero-title {
                font-size: 30px;
            }

            .page-hero--blog .page-hero-title {
                font-size: 28px;
            }

            .page-hero-text {
                font-size: 15px;
                line-height: 1.65;
            }

            .ct-main {
                padding: 18px 0 48px;
            }

            .ct-col-title {
                margin-bottom: 18px;
                font-size: 26px;
            }

            .ct-info-row {
                gap: 12px;
                margin-bottom: 16px;
            }

            .ct-info-icon {
                min-width: 48px;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                font-size: 18px;
            }

            .ct-input {
                padding: 15px 16px;
                border-radius: 14px;
                font-size: 16px;
            }

            .ct-textarea {
                min-height: 148px;
            }

            .ct-submit {
                min-height: 54px;
                border-radius: 14px;
            }

            .ct-form-note {
                font-size: 15px;
                line-height: 1.55;
            }

            .reason-card,
            .review-card,
            .service-card,
            .city-insight-card {
                padding: 22px 18px 20px;
                border-radius: 20px;
            }

            .section-block--city-intro {
                padding-bottom: 12px;
            }

            .section-block--city-services,
            .section-block--city-copy,
            .section-block--city-repair {
                padding-top: 28px;
            }

            .city-insight-text {
                font-size: 15px;
                line-height: 1.75;
            }

            .faq-trigger {
                padding: 18px 46px 18px 18px;
                font-size: 16px;
            }

            .faq-content {
                transition: grid-template-rows 0.3s ease, opacity 0.22s ease;
            }

            .faq-answer {
                padding: 0 18px;
                font-size: 15px;
                line-height: 1.75;
            }

            .faq-answer::before {
                margin-bottom: 12px;
            }

            .faq-answer-text {
                padding-bottom: 18px;
            }

            .cta-shell {
                padding-bottom: 56px;
            }

            .cta-panel {
                padding: 22px 18px;
                border-radius: 22px;
            }

            .cta-input-group,
            .cta-submit {
                min-height: 56px;
                border-radius: 16px;
            }

            .cta-feature {
                width: 100%;
                justify-content: center;
            }

            .footer-nav-inner {
                padding: 18px 0 20px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
                text-align: left;
            }

            .footer-nav-brand,
            .footer-nav-group {
                justify-items: stretch;
                gap: 14px;
                padding: 0;
                border-radius: 0;
                background: transparent;
                border: 0;
                box-shadow: none;
            }

            .footer-brand-link {
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                text-align: left;
                margin-inline: 0;
            }

            .footer-brand-name {
                justify-items: start;
                font-size: 20px;
            }

            .footer-brand-name small {
                justify-content: flex-start;
                flex-wrap: wrap;
                gap: 4px;
                letter-spacing: 0.14em;
            }

            .footer-brand-desc,
            .footer-contact-text,
            .footer-nav-list a,
            .footer-contact-text a {
                font-size: 13px;
            }

            .footer-brand-desc {
                max-width: none;
                text-align: left;
            }

            .footer-brand-phone {
                margin-inline: 0;
            }

            .footer-nav-list {
                width: 100%;
                justify-items: stretch;
                gap: 4px;
            }

            .footer-nav-list a {
                width: 100%;
                min-height: 36px;
                padding: 6px 0 6px 20px;
                justify-content: flex-start;
                border-radius: 0;
                background: transparent;
                border-bottom: 0;
                text-align: left;
            }

            .footer-nav-list a::before {
                left: 0;
            }

            .footer-contact-list {
                width: 100%;
                justify-items: stretch;
            }

            .footer-contact-item {
                grid-template-columns: 34px minmax(0, 1fr);
                gap: 10px;
                width: 100%;
                padding: 6px 0;
                border-radius: 0;
                background: transparent;
                border-bottom: 0;
                align-items: start;
                text-align: left;
            }

            .footer-contact-text--inline {
                min-height: auto;
                align-items: flex-start;
            }

            .footer-work-inner {
                gap: 16px;
                padding: 14px 0 18px;
            }

            .footer-work-lead {
                justify-content: flex-start;
            }

            .footer-work-region {
                font-size: 14px;
            }

            .footer-work-card {
                padding: 0;
            }

            .footer-cities {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
                justify-content: stretch;
            }

            .footer-city {
                width: 100%;
                min-height: 44px;
                padding: 10px 12px;
                border-radius: 14px;
                white-space: normal;
                justify-content: flex-start;
                text-align: left;
                line-height: 1.35;
                font-size: 11px;
                letter-spacing: 0.03em;
                background: rgba(255, 255, 255, 0.04);
            }

            .footer-city::after {
                left: 10px;
                right: 10px;
                bottom: 7px;
            }

            .footer-legal-inner {
                gap: 8px;
                padding: 12px 0;
                flex-direction: column;
                align-items: stretch;
                text-align: left;
            }

            .footer-legal-start,
            .footer-legal-end {
                width: 100%;
            }

            .footer-legal-start {
                white-space: normal;
            }

            .footer-legal-end {
                display: grid;
                grid-template-columns: 1fr;
                justify-content: stretch;
                gap: 8px;
            }

            .footer-legal-item {
                width: auto;
                min-height: 42px;
                padding: 8px 12px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.04);
                justify-content: flex-start;
                white-space: normal;
                text-align: left;
            }

            .footer-meta-inner,
            .footer-bottom-inner {
                min-height: 48px;
                padding: 10px 88px 10px 0;
                font-size: 12px;
                justify-content: flex-start;
                text-align: left;
                line-height: 1.45;
            }

            .footer-meta-inner,
            .footer-bottom-inner {
                align-items: flex-start;
            }

            .footer-bottom-inner {
                min-height: 56px;
            }

            .lang-popup {
                right: 12px;
                bottom: 86px;
                width: min(320px, calc(100vw - 24px));
                padding: 18px 18px 16px;
            }

            .fab-wrap {
                right: 12px;
                bottom: 12px;
                width: 50px;
            }

            .floating-btn-top {
                width: 50px;
                height: 50px;
                border-radius: 14px;
                font-size: 1.15rem;
            }

            .floating-btn-top i {
                font-size: 1.15rem;
            }

            .foundation-layout {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .foundation-nav {
                position: static;
                grid-template-columns: 1fr;
                padding: 10px;
                border-radius: 16px;
            }

            .foundation-nav .foundation-link {
                min-height: 42px;
                font-size: 13px;
            }

            .foundation-shell {
                padding: 22px 0 54px;
            }

            .foundation-section,
            .foundation-note {
                padding: 20px 18px;
                border-radius: 16px;
            }

            .foundation-section h2 {
                font-size: 23px;
            }

            .foundation-section p {
                font-size: 15px;
                line-height: 1.72;
            }

            .foundation-note {
                grid-template-columns: 1fr;
            }

            .chat-widget {
                right: 12px;
                bottom: max(12px, env(safe-area-inset-bottom));
            }

            body.chat-open {
                overflow: hidden;
            }

            .chat-toggle {
                width: 54px;
                height: 54px;
                border-radius: 16px;
            }

            .chat-toggle.shifted {
                transform: translateY(-62px);
            }

            .chat-toggle.shifted:hover {
                transform: translateY(-64px);
            }

            .chat-window {
                position: fixed;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                width: 100%;
                max-width: none;
                height: var(--vvh, 100dvh);
                max-height: none;
                border-radius: 0;
                border: 0;
                transform: translateY(12px);
            }

            .chat-widget.open {
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: 170;
            }

            .chat-widget.open .chat-window {
                transform: none;
            }

            .chat-widget.open .chat-toggle {
                display: none;
            }

            .cookie-notice {
                left: 12px;
                right: 12px;
                bottom: calc(12px + env(safe-area-inset-bottom));
                max-width: none;
                align-items: flex-start;
            }

            .chat-messages {
                padding-bottom: 18px;
            }
        }

        @media (max-width: 420px) {
            .footer-nav-inner {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .footer-meta-inner,
            .footer-bottom-inner {
                padding-right: 74px;
            }

            .footer-brand-desc,
            .footer-contact-text,
            .footer-contact-text a,
            .footer-nav-list a {
                font-size: 12px;
            }

            .footer-nav-brand,
            .footer-nav-group {
                padding: 14px;
            }

            .footer-contact-item {
                gap: 8px;
                grid-template-columns: 32px minmax(0, 1fr);
            }

            .footer-contact-icon {
                width: 32px;
                height: 32px;
                border-radius: 10px;
                font-size: 14px;
            }

            .footer-city {
                width: 100%;
            }

            .footer-brand-link {
                align-items: flex-start;
                gap: 12px;
            }

            .footer-brand-mark {
                width: 46px;
                height: 46px;
                font-size: 22px;
            }

            .footer-cities {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1160px) {
            .middle-bar {
                position: sticky;
                top: 0;
                z-index: 62;
                box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
            }

            .menu-bar {
                position: static;
                box-shadow: none;
            }

            .topbar,
            .menu-bar,
            .middle-tools,
            .topbar-side,
            .topbar-info {
                display: none;
            }

            .mobile-head {
                display: flex;
            }

            .lang-switch--mobile {
                display: inline-flex;
            }

            .middle-inner {
                min-height: 80px;
            }

            .topbar-info {
                width: 100%;
            }
        }

        @media (max-width: 980px) {
            .topbar-inner {
                min-height: auto;
                padding: 10px 0;
                align-items: center;
                flex-wrap: wrap;
                row-gap: 8px;
            }

            .topbar-info {
                width: 100%;
                justify-content: center;
                gap: 10px 16px;
            }

            .topbar-item--email {
                max-width: 100%;
            }

            .brand-copy {
                min-width: 0;
                max-width: 320px;
            }

            .brand-title {
                font-size: 26px;
            }

            .brand-subtitle {
                font-size: 10px;
                letter-spacing: 0.03em;
            }

            .brand-subtitle i {
                font-size: 22px;
            }
        }

        @media (max-width: 760px) {
            .mobile-panel-top .lang-switch {
                width: auto;
                justify-content: flex-start;
            }

            .middle-inner {
                min-height: 76px;
                gap: 14px;
            }

            .brand {
                gap: 12px;
            }

            .brand-mark {
                width: 44px;
                height: 44px;
                font-size: 21px;
            }

            .brand-copy {
                max-width: 250px;
            }

            .brand-title {
                font-size: 24px;
            }

            .brand-subtitle {
                font-size: 9px;
                letter-spacing: 0.02em;
            }

            .brand-subtitle i {
                font-size: 20px;
            }

            .mobile-panel {
                width: 100vw;
            }
        }

        @media (max-width: 560px) {
            .topbar {
                display: none;
            }

            .brand-copy {
                max-width: 185px;
            }

            .brand-title {
                font-size: 21px;
            }

            .brand-subtitle {
                font-size: 8px;
                letter-spacing: 0.01em;
            }

            .brand-subtitle i {
                font-size: 18px;
            }

            .mobile-panel-top .lang-switch,
            .mobile-panel-bottom .lang-switch {
                width: auto;
                justify-content: flex-start;
            }

            .mobile-panel-inner {
                padding: 18px 16px 24px;
            }

            .mobile-head {
                gap: 8px;
            }

            .mobile-call,
            .mobile-toggle {
                width: 42px;
                height: 42px;
                font-size: 17px;
            }
        }

/* =====================================================================
   SCROLL ANIMATIONS (animate-on-scroll / IntersectionObserver)
   ===================================================================== */
.animate-on-scroll{opacity:0;transform:translateY(40px);transition:opacity .7s cubic-bezier(0.22,1,0.36,1),transform .7s cubic-bezier(0.22,1,0.36,1)}
.animate-on-scroll.animate-visible{opacity:1;transform:translateY(0)}
.animate-fade-left{opacity:0;transform:translateX(-40px);transition:opacity .7s cubic-bezier(0.22,1,0.36,1),transform .7s cubic-bezier(0.22,1,0.36,1)}
.animate-fade-left.animate-visible{opacity:1;transform:translateX(0)}
.animate-fade-right{opacity:0;transform:translateX(40px);transition:opacity .7s cubic-bezier(0.22,1,0.36,1),transform .7s cubic-bezier(0.22,1,0.36,1)}
.animate-fade-right.animate-visible{opacity:1;transform:translateX(0)}
.animate-scale{opacity:0;transform:scale(0.9);transition:opacity .7s cubic-bezier(0.22,1,0.36,1),transform .7s cubic-bezier(0.22,1,0.36,1)}
.animate-scale.animate-visible{opacity:1;transform:scale(1)}
@media(max-width:980px){.animate-fade-left,.animate-fade-right{transform:translateY(20px)}.animate-fade-left.animate-visible,.animate-fade-right.animate-visible{transform:translateY(0)}}
@media(prefers-reduced-motion:reduce){.animate-on-scroll,.animate-fade-left,.animate-fade-right,.animate-scale{opacity:1!important;transform:none!important;transition:none!important}}
