﻿/* Extracted from services.html inline <style> blocks */

        html,
        body.services_page {
            overflow-x: hidden;
        }

        .services_page {
            min-height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            text-align: left;
            color: #e5e7eb;
            background:
                radial-gradient(circle at 16% -8%, rgba(59, 130, 246, 0.12), transparent 42%),
                radial-gradient(circle at 84% 2%, rgba(148, 163, 184, 0.09), transparent 36%),
                linear-gradient(180deg, #090d13 0%, #0b1018 32%, #090d14 66%, #080b12 100%);
        }

        .services_page,
        .services_page_wrap,
        .services_page_intro,
        .services_gallery,
        .services_viewport,
        .services_track,
        .services_slide,
        .services_page .div_services,
        .services_page .service_item {
            box-sizing: border-box;
        }

        .services_page_wrap {
            width: min(1100px, calc(100% - 2rem));
            margin: 0 auto;
            padding: clamp(4.8rem, 7vw, 5.9rem) 0 clamp(2rem, 5vw, 3rem);
            flex: 1;
        }

        .services_page_topbar {
            position: fixed;
            top: 18px;
            left: clamp(4px, 2.2vw, 28px);
            z-index: 30;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 0;
        }

        .services_page_link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.36rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: #e5e7eb;
            text-decoration: none;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            line-height: 1;
            box-shadow:
                0 10px 24px rgba(0, 0, 0, 0.26),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(9px) saturate(120%);
            -webkit-backdrop-filter: blur(9px) saturate(120%);
            transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
        }

        .services_page_link:hover {
            transform: translateY(-1px);
            border-color: rgba(191, 219, 254, 0.56);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            box-shadow:
                0 12px 26px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .services_page_intro {
            width: min(74rem, 100%);
            margin: 0 auto 1rem;
            position: relative;
            padding: 0.68rem 0 0.76rem;
        }

        .services_page_intro::before,
        .services_page_intro::after {
            content: "";
            position: absolute;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(191, 219, 254, 0.09) 14%,
                rgba(191, 219, 254, 0.12) 50%,
                rgba(191, 219, 254, 0.09) 86%,
                transparent 100%
            );
            pointer-events: none;
        }

        .services_page_intro::before {
            top: 0;
        }

        .services_page_intro::after {
            bottom: 0;
        }

        .services_page_badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            margin: 0 0 0.45rem;
            padding: 0.26rem 0.62rem;
            border-radius: 999px;
            border: 1px solid rgba(96, 165, 250, 0.5);
            background: rgba(17, 24, 39, 0.52);
            color: #bfdbfe;
            font-family: "Sora", "Outfit", Arial, Helvetica, sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .services_page_badge .material-symbols-outlined {
            font-size: 1rem;
            line-height: 1;
        }

        .services_page_title {
            margin: 0;
            color: #f7f4ef;
            font-family: var(--font-heading);
            font-weight: 420;
            font-size: clamp(1.14rem, 0.98rem + 0.82vw, 1.62rem);
            line-height: 1.14;
            letter-spacing: 0.01em;
        }

        .services_page_text {
            margin: 0.55rem 0 0;
            color: #9ca3af;
            font-size: clamp(0.92rem, 0.84rem + 0.32vw, 1.02rem);
            line-height: 1.62;
            max-width: 62ch;
        }

        .services_gallery {
            position: relative;
            width: min(66rem, 100%);
            max-width: 100%;
            margin: 0.72rem auto 0;
            padding: clamp(0.7rem, 1.4vw, 1rem) clamp(2.5rem, 5.4vw, 4rem);
            border-radius: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            overflow: visible;
        }

        .services_viewport {
            overflow: hidden;
            border-radius: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
        }

        .services_track {
            display: flex;
            transition: transform 420ms cubic-bezier(0.22, 0.78, 0.22, 1);
            will-change: transform;
        }

        .services_slide {
            flex: 0 0 100%;
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: stretch;
            padding: 0.2rem 0;
        }

        /* Prevent global service-card theme rules from painting a dark panel behind the active card */
        .services_page .services_gallery .services_slide {
            background: transparent !important;
            background-image: none !important;
            border: 0 !important;
            box-shadow: none !important;
        }

        .services_page .services_gallery .services_slide::before,
        .services_page .services_gallery .services_slide::after {
            content: none !important;
            display: none !important;
        }

        .services_page .services_gallery .service_item {
            width: min(52rem, 100%);
            min-height: clamp(16.2rem, 40vh, 20.2rem) !important;
            border-radius: 22px;
            padding: clamp(1.15rem, 2.1vw, 1.6rem) clamp(1.25rem, 2.4vw, 1.9rem) clamp(1.15rem, 2vw, 1.5rem);
            gap: 0.76rem;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            background:
                linear-gradient(162deg, rgba(18, 20, 24, 0.45), rgba(12, 16, 24, 0.6)),
                radial-gradient(circle at 82% 2%, rgba(59, 130, 246, 0.1), transparent 45%) !important;
            box-shadow:
                0 20px 44px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px) saturate(125%) contrast(104%);
            -webkit-backdrop-filter: blur(12px) saturate(125%) contrast(104%);
            transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
            display: flex;
            flex-direction: column;
        }

        .services_page .services_gallery .service_item:hover {
            transform: translateY(-1px);
            border-color: rgba(191, 219, 254, 0.48) !important;
            background:
                linear-gradient(162deg, rgba(18, 20, 24, 0.55), rgba(12, 16, 24, 0.68)),
                radial-gradient(circle at 82% 2%, rgba(59, 130, 246, 0.16), transparent 45%) !important;
            box-shadow:
                0 22px 46px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            filter: none;
        }

        .services_page .services_gallery .service_item::before {
            content: none;
        }

        .services_page .services_gallery .service_item::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(0, 0, 0, 0.35);
            pointer-events: none;
        }

        .services_page .services_gallery .service_head {
            gap: 0.56rem;
        }

        .services_page .services_gallery .service_hl {
            font-size: clamp(1.14rem, 1.8vw, 1.48rem);
            letter-spacing: 0.08em;
        }

        .services_page .services_gallery .service_hl_icon {
            font-size: 1.2rem;
            color: #60a5fa;
        }

        .services_page .services_gallery .service_hl_line {
            height: 2px;
            margin-top: 0.16rem;
            background: linear-gradient(90deg, rgba(148, 163, 184, 0.65), rgba(148, 163, 184, 0.08));
        }

        .services_page .services_gallery .service_text {
            max-width: min(76ch, 100%);
            font-size: clamp(0.99rem, 0.94rem + 0.24vw, 1.08rem);
            line-height: 1.62;
            color: #d1d5db;
            margin-top: 0.22rem;
            flex: 1;
        }

        .services_page .services_gallery .my_list {
            margin-top: auto;
            gap: 0.55rem;
            row-gap: 0.62rem;
            width: 100%;
        }

        .services_page .services_gallery .my_list li {
            font-size: 0.88rem;
            font-weight: 650;
            letter-spacing: 0.015em;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.04);
            color: #e5e7eb;
        }

        .services_gallery_nav {
            position: absolute;
            top: calc(clamp(0.7rem, 1.4vw, 1rem) + (clamp(16.2rem, 40vh, 20.2rem) / 2));
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.05);
            color: #f3f7ff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow:
                0 12px 28px rgba(0, 0, 0, 0.26),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(9px) saturate(118%);
            -webkit-backdrop-filter: blur(9px) saturate(118%);
            transition: transform 170ms ease, border-color 170ms ease, color 170ms ease, background 170ms ease, box-shadow 170ms ease;
            z-index: 5;
        }

        .services_gallery_nav:hover {
            transform: translateY(-50%) scale(1.05);
            border-color: rgba(191, 219, 254, 0.56);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.09);
            box-shadow:
                0 14px 30px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .services_gallery_nav:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.88);
            outline-offset: 2px;
        }

        .services_gallery_prev {
            left: -1.75rem;
        }

        .services_gallery_next {
            right: -1.75rem;
        }

        .services_gallery_nav .material-symbols-outlined {
            font-size: 30px;
            font-variation-settings: "FILL" 1, "wght" 520, "GRAD" 0, "opsz" 24;
            line-height: 1;
        }

        .services_gallery_counter {
            margin: 1.2rem auto 0.55rem;
            width: fit-content;
            min-width: 4.8rem;
            text-align: center;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: #cbd5e1;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            box-shadow:
                0 9px 20px rgba(0, 0, 0, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px) saturate(115%);
            -webkit-backdrop-filter: blur(8px) saturate(115%);
        }

        .services_gallery_dots {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.58rem;
            margin: 0 0 0.2rem;
        }

        .services_gallery_dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
            cursor: pointer;
            transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
        }

        .services_gallery_dot:hover {
            transform: scale(1.14);
            border-color: rgba(191, 219, 254, 0.56);
            background: rgba(59, 130, 246, 0.3);
        }

        .services_gallery_dot.is-active {
            transform: scale(1.2);
            border-color: rgba(191, 219, 254, 0.9);
            background: linear-gradient(180deg, rgba(96, 165, 250, 0.95), rgba(59, 130, 246, 0.8));
            box-shadow: 0 0 14px rgba(59, 130, 246, 0.34);
        }

        .services_page.has-site-footer #site-footer {
            width: calc(100vw - clamp(0.65rem, 1.2vw, 1.1rem) - clamp(0.65rem, 1.2vw, 1.1rem)) !important;
            max-width: calc(100vw - clamp(0.65rem, 1.2vw, 1.1rem) - clamp(0.65rem, 1.2vw, 1.1rem)) !important;
            margin-top: auto !important;
            margin-right: auto !important;
            margin-bottom: clamp(0.7rem, 1.5vw, 1rem) !important;
            margin-left: auto !important;
        }

        .mobile_quick_nav {
            display: none;
        }

        @media (max-width: 768px) {
            .services_page {
                overflow-x: hidden;
            }
            .services_page.has-site-footer #site-footer {
                width: calc(100% - 1rem) !important;
                max-width: calc(100% - 1rem) !important;
                margin-right: auto !important;
                margin-bottom: 0.75rem !important;
                margin-left: auto !important;
            }

            .services_page_wrap,
            .services_page_intro,
            .services_gallery,
            .services_viewport,
            .services_track,
            .services_slide {
                visibility: visible !important;
                opacity: 1 !important;
            }

            .mobile_quick_nav,
            .mobile_quick_nav * {
                box-sizing: border-box;
            }

            .services_gallery {
                width: min(21.2rem, 100%);
                padding: 0.62rem 0.42rem 0.95rem;
                border-radius: 0;
                display: grid;
                grid-template-columns: 1fr auto auto auto 1fr;
                grid-template-areas:
                    "viewport viewport viewport viewport viewport"
                    ". prev counter next ."
                    "dots dots dots dots dots";
                align-items: center;
                row-gap: 0.44rem;
                overflow: visible;
                min-height: 0;
                border: 0;
                background: transparent;
                margin-left: auto;
                margin-right: auto;
            }

            .services_slide {
                padding: 0;
                align-items: flex-start;
            }

            .services_viewport {
                grid-area: viewport;
                overflow: hidden;
                border-radius: 0;
                min-height: clamp(17.8rem, 42vh, 21.2rem);
                border: 0;
                background: transparent;
                box-shadow: none;
            }

            .services_page .services_gallery .service_item {
                width: min(18.8rem, calc(100% - 0.3rem));
                min-height: clamp(16rem, 38vh, 19rem) !important;
                border-radius: 16px;
                padding: 0.86rem 0.74rem 0.8rem;
                gap: 0.68rem;
                margin: 0 auto;
            }

            .services_page .services_gallery .service_hl {
                font-size: clamp(0.92rem, 0.87rem + 0.72vw, 1.08rem);
                letter-spacing: 0.05em;
                line-height: 1.28;
                text-wrap: balance;
            }

            .services_page .services_gallery .service_text {
                font-size: 0.93rem;
                line-height: 1.56;
            }

            .services_page .services_gallery .my_list {
                gap: 0.34rem;
                row-gap: 0.44rem;
            }

            .services_page .services_gallery .my_list li {
                font-size: 0.82rem;
                padding: 0.28rem 0.56rem;
                max-width: 100%;
                white-space: normal;
            }

            .services_gallery_nav {
                width: 48px;
                height: 48px;
                border-radius: 13px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                background: rgba(255, 255, 255, 0.05);
                box-shadow:
                    0 11px 22px rgba(0, 0, 0, 0.26),
                    inset 0 1px 0 rgba(255, 255, 255, 0.08);
                backdrop-filter: blur(9px) saturate(118%);
                -webkit-backdrop-filter: blur(9px) saturate(118%);
                position: static;
                top: auto;
                bottom: auto;
                transform: none;
                margin: 0;
                touch-action: manipulation;
            }

            .services_gallery_nav:hover {
                transform: none;
            }

            .services_gallery_prev {
                grid-area: prev;
                justify-self: end;
                left: auto;
            }

            .services_gallery_next {
                grid-area: next;
                justify-self: start;
                right: auto;
            }

            .services_gallery_nav .material-symbols-outlined {
                font-size: 27px;
            }

            .services_gallery_counter {
                grid-area: counter;
                margin: 0.22rem 0 0;
                min-width: 5.5rem;
                padding: 0.4rem 0.94rem;
                font-size: 0.82rem;
                letter-spacing: 0.08em;
            }

            .services_gallery_dots {
                grid-area: dots;
                gap: 0.52rem;
                margin-top: 0.28rem;
                margin-bottom: 0.24rem;
            }

            .services_gallery_dot {
                width: 12px;
                height: 12px;
            }

            .services_page_topbar {
                display: none;
            }

            .services_page_wrap {
                width: min(23.5rem, calc(100% - 1.1rem));
                padding-top: calc(env(safe-area-inset-top, 0px) + clamp(4.8rem, 10vw, 5.4rem) - 6px) !important;
                padding-bottom: clamp(2.8rem, 9vw, 3.8rem);
            }

            .services_page_intro {
                margin-top: 0 !important;
            }

            .mobile_quick_nav {
                position: fixed;
                top: 10px;
                left: 10px;
                z-index: 60;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .mobile_quick_home {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border: 1px solid rgba(242, 176, 98, 0.58);
                background: linear-gradient(145deg, rgba(24, 17, 15, 0.86), rgba(13, 23, 41, 0.8));
                color: #f0c987;
                text-decoration: none;
                box-shadow: 0 7px 16px rgba(3, 8, 17, 0.3), 0 1px 0 rgba(255, 224, 189, 0.09) inset;
            }

            .mobile_quick_home .material-symbols-outlined {
                font-size: 18px;
                line-height: 1;
                color: #ffffff;
            }

            .mobile_quick_menu_wrap {
                position: relative;
            }

            .mobile_quick_toggle {
                display: inline-flex;
                align-items: center;
                gap: 0.3rem;
                padding: 0.4rem 0.62rem;
                border-radius: 999px;
                border: 1px solid rgba(242, 176, 98, 0.58);
                background: linear-gradient(145deg, rgba(24, 17, 15, 0.86), rgba(13, 23, 41, 0.8));
                color: #f0c987;
                font-family: var(--font-heading);
                font-size: 0.74rem;
                letter-spacing: 0.05em;
                text-transform: uppercase;
                cursor: pointer;
            }

            .mobile_quick_toggle .material-symbols-outlined {
                font-size: 19px;
                line-height: 1;
                color: #ffffff;
            }

            .mobile_quick_menu {
                position: absolute;
                top: calc(100% + 7px);
                left: 0;
                right: auto;
                display: flex;
                flex-direction: column;
                gap: 6px;
                min-width: 146px;
                padding: 8px;
                border-radius: 12px;
                border: 1px solid rgba(240, 170, 88, 0.5);
                background:
                    linear-gradient(155deg, rgba(18, 12, 10, 0.9), rgba(8, 14, 26, 0.86)),
                    radial-gradient(circle at 14% 10%, rgba(237, 141, 52, 0.18), transparent 58%);
                box-shadow:
                    0 12px 26px rgba(4, 9, 18, 0.38),
                    0 1px 0 rgba(255, 219, 180, 0.09) inset;
                opacity: 0;
                transform: translateY(-6px);
                pointer-events: none;
                transition: opacity 0.16s ease, transform 0.16s ease;
            }

            .mobile_quick_nav.open .mobile_quick_menu {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .mobile_quick_item {
                width: 100%;
                display: inline-flex;
                align-items: center;
                gap: 0.34rem;
                padding: 0.45rem 0.6rem;
                border-radius: 10px;
                border: 1px solid rgba(242, 176, 98, 0.5);
                background: linear-gradient(145deg, rgba(33, 25, 22, 0.7), rgba(19, 31, 53, 0.62));
                box-shadow:
                    0 6px 14px rgba(3, 8, 17, 0.28),
                    0 1px 0 rgba(255, 224, 189, 0.08) inset;
                color: #ffd7ad;
                text-decoration: none;
                font-family: var(--font-heading);
                font-size: 0.74rem;
                letter-spacing: 0.045em;
                text-transform: uppercase;
            }

            .mobile_quick_item .material-symbols-outlined {
                font-size: 18px;
                color: #ffffff;
            }
        }
    

