﻿:root {
    --red: #c52223;
    --red-dark: #981719;
    --red-soft: #f8e8e7;
    --ink: #191b20;
    --ink-soft: #282b31;
    --text: #50545c;
    --muted: #767b84;
    --line: #e2e0dc;
    --paper: #f6f4f0;
    --white: #ffffff;
    --green: #25d366;
    --font: "Inter", Arial, sans-serif;
    --shadow: 0 24px 65px rgba(25, 27, 32, 0.11);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

::selection {
    color: var(--white);
    background: var(--red);
}

.container-xxl {
    max-width: 1460px;
    padding-right: 28px;
    padding-left: 28px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 11px 17px;
    color: var(--white);
    background: var(--ink);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

    .skip-link:focus {
        transform: translateY(0);
    }

:focus-visible {
    outline: 3px solid rgba(197, 34, 35, 0.4);
    outline-offset: 4px;
}

.section-space {
    padding: 112px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.09em;
}

    .section-label::before {
        width: 28px;
        height: 1px;
        content: "";
        background: currentColor;
    }

.section-label-light {
    color: rgba(255, 255, 255, 0.7);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.68, 0.2, 1);
}

    [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.topbar {
    position: relative;
    z-index: 1040;
    color: rgba(255, 255, 255, 0.76);
    background: var(--ink);
}

.topbar-inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 13px;
    font-weight: 500;
}

.topbar-contact,
.topbar-contact a {
    display: flex;
    align-items: center;
}

.topbar-contact {
    gap: 24px;
}

    .topbar-contact a {
        gap: 8px;
        transition: color 0.2s ease;
    }

        .topbar-contact a:hover {
            color: var(--white);
        }

    .topbar-contact i {
        color: #e76364;
        font-size: 14px;
    }

.site-header {
    z-index: 1030;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(25, 27, 32, 0.07);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.3s ease;
}

    .site-header.is-scrolled {
        box-shadow: 0 12px 36px rgba(25, 27, 32, 0.08);
    }

.site-navbar {
    min-height: 88px;
    padding: 0;
}

.site-brand {
    display: flex;
    width: 220px;
    min-height: 60px;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

    .site-brand img {
        width: auto;
        max-width: 214px;
        height: 58px;
        object-fit: contain;
    }

.site-nav {
    align-items: center;
    gap: 3px;
}

    .site-nav .nav-item {
        position: relative;
    }

    .site-nav .nav-link {
        position: relative;
        display: flex;
        min-height: 48px;
        align-items: center;
        gap: 7px;
        padding: 12px 13px !important;
        color: #34373d;
        border: 0;
        background: transparent;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        white-space: nowrap;
        transition: color 0.2s ease;
    }

        .site-nav .nav-link::before {
            position: absolute;
            right: 13px;
            bottom: 5px;
            left: 13px;
            height: 2px;
            content: "";
            background: var(--red);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.28s ease;
        }

        .site-nav .nav-link:hover,
        .site-nav .nav-link.active,
        .site-nav .dropdown.show > .nav-link {
            color: var(--red);
        }

            .site-nav .nav-link:hover::before,
            .site-nav .nav-link.active::before,
            .site-nav .dropdown.show > .nav-link::before {
                transform: scaleX(1);
                transform-origin: left;
            }

    .site-nav .dropdown-toggle::after {
        width: 7px;
        height: 7px;
        margin: -4px 0 0 2px;
        border: 0;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.22s ease;
    }

    .site-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(225deg) translate(-2px, -2px);
    }

    .site-nav .dropdown-menu {
        min-width: 255px;
        margin-top: 11px;
        padding: 10px;
        background: linear-gradient(145deg, #25282e, #15171b);
        border: 0;
        border-radius: 15px;
        box-shadow: 0 22px 55px rgba(10, 11, 13, 0.24);
    }

    .site-nav .dropdown-item {
        display: flex;
        min-height: 49px;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 12px 13px;
        color: rgba(255, 255, 255, 0.82);
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

        .site-nav .dropdown-item i {
            color: #ee6d6e;
            font-size: 15px;
        }

        .site-nav .dropdown-item:hover,
        .site-nav .dropdown-item:focus {
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(3px);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 15px;
    color: var(--white);
    background: linear-gradient(120deg, #cd2a2b, #a8171b);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(171, 24, 28, 0.2);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

    .result-button i {
        font-size: 17px;
    }

    .result-button:hover {
        color: var(--white);
        box-shadow: 0 14px 28px rgba(171, 24, 28, 0.27);
        transform: translateY(-2px);
    }

.menu-toggle,
.menu-close {
    display: grid;
    padding: 0;
    border: 0;
    place-items: center;
}

.menu-toggle {
    position: relative;
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(25, 27, 32, 0.07);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 0;
        background: var(--ink);
        border-radius: 10px;
        transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }

        .menu-toggle span:nth-child(2) {
            width: 15px;
            align-self: calc(50% + 2px);
        }

    .menu-toggle:hover {
        border-color: rgba(197, 34, 35, 0.3);
        box-shadow: 0 10px 25px rgba(25, 27, 32, 0.1);
        transform: translateY(-1px);
    }

        .menu-toggle:hover span {
            background: var(--red);
        }

            .menu-toggle:hover span:nth-child(2) {
                width: 20px;
            }

.offcanvas-header {
    display: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(118deg, #ffffff 0%, #faf8f5 58%, #f0ebe5 100%);
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.46;
    background-image: linear-gradient(rgba(25, 27, 32, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 27, 32, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to right, #000000, transparent 72%);
}

.hero-slide {
    display: flex;
    min-height: 680px;
    align-items: center;
    padding: 54px 0 84px;
}

.hero-row {
    min-height: 542px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

    .hero-content h1,
    .hero-content h2 {
        max-width: 680px;
        margin-bottom: 25px;
        color: var(--ink);
        font-size: clamp(48px, 5vw, 76px);
        font-weight: 700;
        line-height: 1.04;
        letter-spacing: -0.055em;
    }

    .hero-content p {
        max-width: 620px;
        margin-bottom: 33px;
        color: var(--text);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.8;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.primary-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 18px 14px 22px;
    color: var(--white);
    background: linear-gradient(120deg, #d02d2e, #a8171b);
    border-radius: 13px;
    box-shadow: 0 16px 36px rgba(175, 24, 28, 0.23);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .primary-button i {
        display: grid;
        width: 29px;
        height: 29px;
        background: rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        place-items: center;
        font-size: 15px;
        transition: transform 0.25s ease;
    }

    .primary-button:hover {
        color: var(--white);
        box-shadow: 0 20px 42px rgba(175, 24, 28, 0.3);
        transform: translateY(-3px);
    }

        .primary-button:hover i {
            transform: translateX(3px);
        }

.text-link,
.line-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

    .text-link i,
    .line-button i {
        color: var(--red);
        font-size: 16px;
        transition: transform 0.22s ease;
    }

    .text-link:hover,
    .line-button:hover {
        color: var(--red);
    }

        .text-link:hover i,
        .line-button:hover i {
            transform: translate(3px, -1px);
        }

.hero-media {
    --media-x: 0px;
    --media-y: 0px;
    position: relative;
    width: min(100%, 650px);
    height: 550px;
    margin-left: auto;
    transform: translate3d(var(--media-x), var(--media-y), 0);
    transition: transform 0.18s ease-out;
}

.hero-media-accent {
    position: absolute;
    top: 28px;
    right: 0;
    width: 86%;
    height: calc(100% - 20px);
    background: linear-gradient(145deg, rgba(197, 34, 35, 0.2), rgba(197, 34, 35, 0.04));
    border-radius: 34px;
    transform: rotate(3deg);
}

.hero-media-frame {
    position: absolute;
    top: 0;
    right: 28px;
    width: calc(100% - 46px);
    height: calc(100% - 30px);
    padding: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 34px;
    box-shadow: 0 32px 78px rgba(32, 29, 26, 0.17);
}

    .hero-media-frame img,
    .hero-media-fallback {
        width: 100%;
        height: 100%;
        border-radius: 25px;
    }

    .hero-media-frame img {
        object-fit: cover;
    }

.hero-media-fallback {
    display: grid;
    color: var(--white);
    background: radial-gradient(circle at 35% 30%, #de4d4e, #ae191d 47%, #731015 100%);
    place-items: center;
}

    .hero-media-fallback i {
        font-size: 86px;
    }

.hero-media-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 145px;
    height: 145px;
    border-bottom: 2px solid rgba(197, 34, 35, 0.45);
    border-left: 2px solid rgba(197, 34, 35, 0.45);
    border-radius: 0 0 0 28px;
}

    .hero-media-line::before,
    .hero-media-line::after {
        position: absolute;
        content: "";
        background: var(--red);
        border-radius: 50%;
    }

    .hero-media-line::before {
        bottom: -5px;
        left: 62px;
        width: 9px;
        height: 9px;
    }

    .hero-media-line::after {
        top: 65px;
        left: -5px;
        width: 9px;
        height: 9px;
    }

.slider-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.slider-controls-inner {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
}

.slider-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

    .slider-progress strong {
        font-size: 16px;
        font-weight: 600;
    }

    .slider-progress b {
        color: var(--muted);
        font-size: 13px;
        font-weight: 500;
    }

    .slider-progress > span {
        position: relative;
        width: 110px;
        height: 2px;
        overflow: hidden;
        background: rgba(25, 27, 32, 0.14);
    }

        .slider-progress > span i {
            position: absolute;
            inset: 0;
            display: block;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
        }

            .slider-progress > span i.is-running {
                animation: sliderProgress 7s linear forwards;
            }

.slider-navigation {
    display: flex;
    gap: 7px;
}

    .slider-navigation button {
        display: grid;
        width: 40px;
        height: 40px;
        padding: 0;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(25, 27, 32, 0.1);
        border-radius: 10px;
        place-items: center;
        font-size: 14px;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

        .slider-navigation button:hover {
            color: var(--white);
            background: var(--red);
            transform: translateY(-2px);
        }

.quick-section {
    position: relative;
    z-index: 6;
    margin-top: -1px;
    padding-bottom: 25px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 19px;
    box-shadow: var(--shadow);
}

.quick-item {
    position: relative;
    display: grid;
    min-height: 112px;
    grid-template-columns: 48px 1fr 34px;
    align-items: center;
    gap: 14px;
    padding: 20px 23px;
}

    .quick-item + .quick-item::before {
        position: absolute;
        top: 22px;
        bottom: 22px;
        left: 0;
        width: 1px;
        content: "";
        background: rgba(25, 27, 32, 0.1);
    }

    .quick-item > i {
        display: grid;
        width: 48px;
        height: 48px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 13px;
        place-items: center;
        font-size: 21px;
        transition: transform 0.25s ease;
    }

    .quick-item > span {
        display: flex;
        flex-direction: column;
        line-height: 1.35;
    }

    .quick-item small {
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.08em;
    }

    .quick-item strong {
        color: var(--ink);
        font-size: 16px;
        font-weight: 600;
    }

    .quick-item > b {
        display: grid;
        width: 34px;
        height: 34px;
        color: var(--ink);
        border: 1px solid rgba(25, 27, 32, 0.12);
        border-radius: 50%;
        place-items: center;
        font-size: 14px;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .quick-item:hover > i {
        transform: rotate(-5deg) scale(1.05);
    }

    .quick-item:hover > b {
        color: var(--white);
        background: var(--red);
        transform: translate(2px, -2px);
    }

.quick-item-result {
    color: var(--white);
    background: linear-gradient(125deg, #cf2d2e, #a4171b);
}

    .quick-item-result > i {
        color: var(--white);
        background: rgba(255, 255, 255, 0.14);
    }

    .quick-item-result strong,
    .quick-item-result > b {
        color: var(--white);
    }

    .quick-item-result > b {
        border-color: rgba(255, 255, 255, 0.3);
    }

.about-media {
    position: relative;
    width: min(100%, 640px);
    min-height: 570px;
}

.about-image {
    position: absolute;
    inset: 0 45px 35px 0;
    overflow: hidden;
    background: var(--paper);
    border-radius: 30px;
}

    .about-image img,
    .about-fallback {
        width: 100%;
        height: 100%;
    }

    .about-image img {
        object-fit: cover;
        transition: transform 0.75s ease;
    }

.about-media:hover .about-image img {
    transform: scale(1.035);
}

.about-fallback {
    display: grid;
    color: var(--white);
    background: linear-gradient(145deg, #2b2e34, #14161a);
    place-items: center;
}

    .about-fallback i {
        font-size: 76px;
    }

.experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    min-width: 230px;
    min-height: 124px;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    color: var(--white);
    background: linear-gradient(135deg, #ce2b2c, #9e171b);
    border: 8px solid var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(171, 24, 28, 0.22);
}

    .experience-box strong {
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .experience-box span {
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.about-content {
    max-width: 630px;
}

    .about-content h2,
    .section-heading h2,
    .process-intro h2,
    .contact-panel h2,
    .footer-heading h2 {
        margin-bottom: 26px;
        color: var(--ink);
        font-size: clamp(40px, 3.6vw, 52px);
        font-weight: 700;
        line-height: 1.09;
        letter-spacing: -0.05em;
    }

        .about-content h2 em,
        .section-heading h2 em,
        .process-intro h2 em,
        .contact-panel h2 em,
        .footer-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .about-content > p {
        margin-bottom: 30px;
        color: var(--text);
        font-size: 17px;
        line-height: 1.85;
    }

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 29px;
}

    .about-features > div {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 17px;
        background: var(--paper);
        border-radius: 14px;
    }

    .about-features i {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        color: var(--red);
        background: var(--white);
        border-radius: 11px;
        place-items: center;
        font-size: 20px;
    }

    .about-features span {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }

    .about-features strong {
        display: block;
        margin-bottom: 2px;
        color: var(--ink);
        font-size: 15px;
        font-weight: 600;
    }

.line-button {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(25, 27, 32, 0.3);
}

.services-section {
    background: var(--paper);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 48px;
}

    .section-heading h2 {
        margin-bottom: 0;
    }

    .section-heading > p {
        max-width: 460px;
        margin: 0 0 7px;
        color: var(--text);
        font-size: 16px;
        line-height: 1.75;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    display: grid;
    min-width: 0;
    min-height: 285px;
    grid-template-columns: 42% 58%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .service-card:hover {
        color: inherit;
        border-color: rgba(197, 34, 35, 0.22);
        box-shadow: 0 22px 50px rgba(25, 27, 32, 0.1);
        transform: translateY(-6px);
    }

.service-image {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    background: #dedbd6;
}

    .service-image img,
    .service-fallback {
        width: 100%;
        height: 100%;
    }

    .service-image img {
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.service-card:hover .service-image img {
    transform: scale(1.055);
}

.service-fallback {
    display: grid;
    color: var(--white);
    background: linear-gradient(145deg, #d44243, #941519);
    place-items: center;
}

    .service-fallback i {
        font-size: 52px;
    }

.service-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 25px 23px;
}

    .service-copy > span {
        margin-bottom: 22px;
        color: var(--red);
        font-size: 13px;
        font-weight: 600;
    }

    .service-copy h3 {
        margin-bottom: 11px;
        color: var(--ink);
        font-size: 21px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.025em;
    }

    .service-copy p {
        margin-bottom: 20px;
        color: var(--text);
        font-size: 14px;
        line-height: 1.7;
    }

    .service-copy b {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        color: var(--red);
        font-size: 14px;
        font-weight: 600;
    }

        .service-copy b i {
            transition: transform 0.22s ease;
        }

.service-card:hover .service-copy b i {
    transform: translate(3px, -2px);
}

.process-section {
    overflow: hidden;
}


.process-intro > p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.dna-scene {
    position: relative;
    width: min(100%, 520px);
    height: 580px;
    margin-top: 28px;
    overflow: hidden;
    background: radial-gradient(circle at 68% 34%, rgba(215, 50, 55, 0.27), transparent 34%), radial-gradient(circle at 28% 74%, rgba(145, 15, 22, 0.38), transparent 38%), linear-gradient(145deg, #36070d 0%, #210408 52%, #120205 100%);
    border: 1px solid rgba(197, 34, 35, 0.24);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(59, 5, 10, 0.22);
    isolation: isolate;
}

    .dna-scene::before,
    .dna-scene::after {
        position: absolute;
        z-index: 0;
        content: "";
        border: 1px solid rgba(255, 115, 119, 0.09);
        border-radius: 50%;
        pointer-events: none;
    }

    .dna-scene::before {
        top: 92px;
        left: -90px;
        width: 620px;
        height: 300px;
        transform: rotate(-28deg);
    }

    .dna-scene::after {
        right: -150px;
        bottom: 55px;
        width: 520px;
        height: 240px;
        border-color: rgba(255, 255, 255, 0.055);
        transform: rotate(31deg);
    }

.dna-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.2));
}

.process-list {
    border-top: 1px solid var(--line);
}

    .process-list article {
        display: grid;
        grid-template-columns: 42px 1fr 58px;
        align-items: center;
        gap: 20px;
        padding: 28px 5px;
        border-bottom: 1px solid var(--line);
        transition: padding 0.28s ease, background 0.28s ease;
    }

        .process-list article:hover {
            padding-right: 17px;
            padding-left: 17px;
            background: #fff6f4;
        }

        .process-list article > span {
            color: var(--red);
            font-size: 13px;
            font-weight: 600;
        }

    .process-list h3 {
        margin-bottom: 6px;
        color: var(--ink);
        font-size: 20px;
        font-weight: 600;
    }

    .process-list p {
        margin: 0;
        color: var(--text);
        font-size: 15px;
        line-height: 1.7;
    }

    .process-list article > i {
        display: grid;
        width: 54px;
        height: 54px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 14px;
        place-items: center;
        font-size: 23px;
        transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .process-list article:hover > i {
        color: var(--white);
        background: var(--red);
        transform: rotate(-5deg);
    }

.tests-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(130deg, #24272d 0%, #15171b 62%, #101216 100%);
}

    .tests-section::before {
        position: absolute;
        top: -380px;
        right: -280px;
        width: 850px;
        height: 850px;
        content: "";
        background: radial-gradient(circle, rgba(197, 34, 35, 0.34), transparent 66%);
        border-radius: 50%;
    }

    .tests-section .section-heading {
        position: relative;
    }

        .tests-section .section-heading h2 {
            color: var(--white);
        }

            .tests-section .section-heading h2 em {
                color: rgba(255, 255, 255, 0.58);
            }

.line-button-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

    .line-button-light i {
        color: #ed6c6d;
    }

    .line-button-light:hover {
        color: #ed6c6d;
    }

.test-browser {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.test-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.test-search {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

    .test-search i {
        font-size: 18px;
    }

    .test-search input {
        width: 100%;
        height: 52px;
        padding: 0;
        color: var(--white);
        background: transparent;
        border: 0;
        outline: 0;
        font-size: 15px;
    }

        .test-search input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

.test-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

    .test-filters button {
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

        .test-filters button:hover,
        .test-filters button.active {
            color: var(--white);
            background: var(--red);
            border-color: var(--red);
        }

.test-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

    .test-demo-grid > a {
        display: grid;
        min-height: 112px;
        grid-template-columns: 44px 1fr 35px;
        align-items: center;
        gap: 15px;
        padding: 20px 24px;
        color: var(--white);
        background: #1b1e23;
        transition: background 0.25s ease;
    }

        .test-demo-grid > a[hidden] {
            display: none;
        }

        .test-demo-grid > a:hover {
            color: var(--white);
            background: #24272d;
        }

        .test-demo-grid > a > span {
            display: grid;
            width: 44px;
            height: 44px;
            color: #ef7071;
            background: rgba(197, 34, 35, 0.13);
            border-radius: 12px;
            place-items: center;
            font-size: 17px;
            font-weight: 600;
        }

    .test-demo-grid h3 {
        margin-bottom: 4px;
        color: var(--white);
        font-size: 17px;
        font-weight: 600;
    }

    .test-demo-grid p {
        margin: 0;
        color: rgba(255, 255, 255, 0.53);
        font-size: 13px;
    }

    .test-demo-grid > a > i {
        color: rgba(255, 255, 255, 0.58);
        font-size: 16px;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .test-demo-grid > a:hover > i {
        color: #ef7071;
        transform: translate(2px, -2px);
    }

.test-empty {
    margin: 0;
    padding: 30px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    text-align: center;
}

.advantages-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(118deg, #cf3034 0%, #b51720 48%, #820b12 100%);
    isolation: isolate;
}

    .advantages-section::before,
    .advantages-section::after {
        position: absolute;
        z-index: 0;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        pointer-events: none;
    }

    .advantages-section::before {
        top: -590px;
        right: -320px;
        width: 1060px;
        height: 1060px;
        box-shadow: 0 0 0 95px rgba(255, 255, 255, 0.025), 0 0 0 190px rgba(255, 255, 255, 0.018);
    }

    .advantages-section::after {
        right: 11%;
        bottom: -520px;
        width: 760px;
        height: 760px;
        border-color: rgba(255, 255, 255, 0.055);
    }

    .advantages-section .container-xxl {
        position: relative;
        z-index: 1;
    }

    .advantages-section .section-heading {
        align-items: flex-end;
        margin-bottom: 66px;
    }

    .advantages-section .section-label {
        color: rgba(255, 255, 255, 0.78);
    }

    .advantages-section .section-heading h2 {
        color: var(--white);
    }

        .advantages-section .section-heading h2 em {
            color: #f4b4b5;
        }

    .advantages-section .section-heading > p {
        max-width: 470px;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.76);
        font-size: 17px;
        line-height: 1.8;
    }

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .advantages-grid article {
        min-height: 340px;
        padding: 38px 30px 34px;
        transition: background 0.28s ease, transform 0.28s ease;
    }

        .advantages-grid article + article {
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        .advantages-grid article:hover {
            background: rgba(255, 255, 255, 0.065);
            transform: translateY(-7px);
        }

        .advantages-grid article > span {
            display: block;
            margin-bottom: 52px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 13px;
            font-weight: 600;
        }

        .advantages-grid article > i {
            display: block;
            margin-bottom: 28px;
            color: var(--white);
            font-size: 40px;
        }

    .advantages-grid h3 {
        margin-bottom: 13px;
        color: var(--white);
        font-size: 21px;
        font-weight: 600;
    }

    .advantages-grid p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.8;
    }

.contact-section {
    padding-top: 30px;
    background: var(--paper);
}

.contact-panel {
    position: relative;
    display: flex;
    min-height: 380px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 58px 70px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(125deg, #c92a2b 0%, #a4171b 62%, #771114 100%);
    border-radius: 28px;
}

    .contact-panel::before {
        position: absolute;
        top: -240px;
        right: -100px;
        width: 620px;
        height: 620px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.035), 0 0 0 130px rgba(255, 255, 255, 0.02);
    }

    .contact-panel > div,
    .contact-panel > a {
        position: relative;
        z-index: 2;
    }

    .contact-panel h2 {
        margin-bottom: 0;
        color: var(--white);
        font-size: clamp(38px, 4vw, 58px);
    }

        .contact-panel h2 em {
            color: rgba(255, 255, 255, 0.68);
        }

    .contact-panel > a {
        display: flex;
        width: 142px;
        height: 142px;
        flex: 0 0 142px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: var(--ink);
        background: var(--white);
        border-radius: 50%;
        box-shadow: 0 18px 45px rgba(92, 9, 13, 0.25);
        font-size: 15px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

        .contact-panel > a i {
            color: var(--red);
            font-size: 19px;
        }

        .contact-panel > a:hover {
            color: var(--ink);
            transform: rotate(-5deg) scale(1.04);
        }

.footer-glow {
    position: absolute;
    top: -350px;
    right: -270px;
    z-index: -1;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(197, 34, 35, 0.23), transparent 68%);
    border-radius: 50%;
}

.footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .footer-heading h2 {
        margin-bottom: 0;
        color: var(--white);
        font-size: clamp(37px, 3.8vw, 56px);
    }

        .footer-heading h2 em {
            color: rgba(255, 255, 255, 0.57);
        }

.footer-contact-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    color: var(--white);
    background: linear-gradient(120deg, #d02d2e, #a8171b);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.22s ease;
}

    .footer-contact-button:hover {
        color: var(--white);
        transform: translateY(-3px);
    }

.footer-content {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.8fr 1.15fr;
    gap: 55px;
    padding: 65px 0;
}

.footer-logo {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    margin-bottom: 22px;
}

    .footer-logo img {
        width: auto;
        max-width: 225px;
        height: 62px;
        object-fit: contain;
    }

    .footer-logo strong {
        color: var(--white);
        font-size: 20px;
    }

.footer-company > p {
    max-width: 410px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

    .footer-social a {
        display: grid;
        width: 42px;
        height: 42px;
        color: rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 11px;
        place-items: center;
        font-size: 16px;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

        .footer-social a:hover {
            color: var(--white);
            background: var(--red);
            transform: translateY(-3px);
        }

.footer-links,
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-links h3,
    .footer-info h3 {
        margin-bottom: 23px;
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
    }

    .footer-links > a {
        color: rgba(255, 255, 255, 0.58);
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .footer-links > a + a {
            margin-top: 11px;
        }

        .footer-links > a:hover {
            color: var(--white);
            transform: translateX(3px);
        }

    .footer-info address,
    .footer-info > a,
    .footer-info > p {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        margin: 0 0 13px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.65;
    }

    .footer-info i {
        margin-top: 2px;
        color: #e86768;
        font-size: 16px;
    }

    .footer-info > a:hover {
        color: var(--white);
    }

.footer-bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-bottom p,
    .footer-bottom a {
        margin: 0;
        color: rgba(255, 255, 255, 0.48);
        font-size: 13px;
        font-weight: 400;
    }

    .footer-bottom a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.2s ease;
    }

        .footer-bottom a:hover {
            color: var(--white);
        }

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1020;
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: linear-gradient(145deg, #2bd46d, #1ead58);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 15px 34px rgba(25, 169, 83, 0.3);
    place-items: center;
    font-size: 26px;
    transition: color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .whatsapp-button::before {
        position: absolute;
        inset: -1px;
        z-index: -1;
        content: "";
        border: 1px solid rgba(37, 211, 102, 0.5);
        border-radius: 50%;
        animation: whatsappPulse 2.3s ease-out infinite;
    }

    .whatsapp-button:hover {
        color: var(--white);
        box-shadow: 0 19px 40px rgba(25, 169, 83, 0.38);
        transform: translateY(-4px) scale(1.04);
    }

@keyframes sliderProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    80%, 100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

@media (min-width: 1200px) {
    .site-nav .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

        .site-nav .dropdown-menu.show {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
}

@media (max-width: 1399.98px) {
    .site-brand {
        width: 198px;
    }

        .site-brand img {
            max-width: 192px;
        }

    .site-nav .nav-link {
        padding-right: 10px !important;
        padding-left: 10px !important;
        font-size: 14px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(45px, 4.8vw, 67px);
    }

    .service-card {
        grid-template-columns: 40% 60%;
    }
}

@media (max-width: 1199.98px) {
    .site-navbar {
        min-height: 80px;
    }

    .site-brand img {
        height: 54px;
    }

    .site-menu {
        width: min(420px, 92vw) !important;
        color: var(--white);
        background: linear-gradient(145deg, #25282e, #121418);
        border: 0;
    }

    .offcanvas-header {
        display: flex;
        min-height: 100px;
        align-items: center;
        padding: 22px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .offcanvas-header span {
            color: #e96b6c;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.08em;
        }

        .offcanvas-header h2 {
            margin: 3px 0 0;
            color: var(--white);
            font-size: 25px;
            font-weight: 600;
        }

    .menu-close {
        width: 44px;
        height: 44px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        font-size: 18px;
    }

    .site-menu .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 18px 24px 28px;
    }

    .site-nav {
        width: 100%;
        align-items: stretch;
        gap: 0;
    }

        .site-nav .nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .site-nav .nav-link {
            width: 100%;
            min-height: 60px;
            justify-content: space-between;
            padding: 14px 2px !important;
            color: rgba(255, 255, 255, 0.82);
            font-size: 16px;
        }

            .site-nav .nav-link::before {
                display: none;
            }

            .site-nav .nav-link:hover,
            .site-nav .nav-link.active,
            .site-nav .dropdown.show > .nav-link {
                color: #ee6d6e;
            }

        .site-nav .dropdown-menu {
            position: static !important;
            min-width: 0;
            margin: 0 0 12px !important;
            padding: 7px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            box-shadow: none;
            transform: none !important;
        }

    .mobile-contact {
        margin-top: auto;
        padding-top: 30px;
    }

        .mobile-contact a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 9px;
            color: var(--white);
            font-size: 19px;
            font-weight: 600;
        }

            .mobile-contact a i {
                color: #ee6d6e;
            }

        .mobile-contact p {
            margin: 0;
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            line-height: 1.7;
        }

    .hero-slide {
        min-height: 640px;
    }

    .hero-media {
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 38% 62%;
    }

    .footer-content {
        grid-template-columns: 1.2fr 0.65fr 0.8fr;
    }

    .footer-info {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px 30px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

        .footer-info h3 {
            grid-column: 1 / -1;
        }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 86px 0;
    }

    .hero-slide {
        min-height: auto;
        padding: 70px 0 100px;
    }

    .hero-row {
        min-height: 0;
    }

    .hero-content {
        max-width: 760px;
    }

        .hero-content h1,
        .hero-content h2 {
            max-width: 760px;
            font-size: clamp(47px, 8vw, 70px);
        }

    .hero-media {
        width: min(100%, 700px);
        height: 540px;
        margin: 15px auto 0;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-item-result {
        grid-column: 1 / -1;
    }

    .quick-item + .quick-item::before {
        display: none;
    }

    .quick-item:last-child {
        border-left: 1px solid rgba(25, 27, 32, 0.1);
    }

    .about-media {
        margin: 0 auto;
    }

    .about-content {
        max-width: none;
    }

    .process-intro {
        max-width: 760px;
    }

    .dna-scene {
        margin-bottom: 25px;
    }

    .test-toolbar {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .advantages-grid article:nth-child(3) {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-left: 0;
        }

        .advantages-grid article:nth-child(4) {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

    .contact-panel {
        padding: 52px;
    }
}

@media (max-width: 767.98px) {
    .container-xxl {
        padding-right: 20px;
        padding-left: 20px;
    }

    .section-space {
        padding: 70px 0;
    }

    .topbar-inner {
        min-height: 37px;
        font-size: 12px;
    }

    .topbar-contact a {
        justify-content: center;
    }

    .site-navbar {
        min-height: 74px;
    }

    .site-brand {
        width: 170px;
        min-height: 50px;
    }

        .site-brand img {
            max-width: 165px;
            height: 49px;
        }

    .result-button {
        min-height: 46px;
        padding: 10px 12px;
    }

        .result-button i {
            font-size: 20px;
        }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }

    .hero-slide {
        padding: 58px 0 88px;
    }

    .hero-content h1,
    .hero-content h2 {
        margin-bottom: 21px;
        font-size: clamp(39px, 11vw, 56px);
        line-height: 1.07;
    }

    .hero-content p {
        margin-bottom: 27px;
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-media {
        height: 450px;
    }

    .hero-media-frame {
        right: 18px;
        width: calc(100% - 28px);
        height: calc(100% - 25px);
        border-radius: 25px;
    }

        .hero-media-frame img,
        .hero-media-fallback {
            border-radius: 18px;
        }

    .hero-media-accent {
        border-radius: 25px;
    }

    .slider-controls-inner {
        min-height: 62px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-item-result {
        grid-column: auto;
    }

    .quick-item {
        min-height: 102px;
    }

        .quick-item + .quick-item {
            border-top: 1px solid rgba(25, 27, 32, 0.1);
        }

        .quick-item:last-child {
            border-left: 0;
        }

    .about-content h2,
    .section-heading h2,
    .process-intro h2,
    .contact-panel h2,
    .footer-heading h2 {
        font-size: clamp(36px, 9.5vw, 49px);
    }

    .about-media {
        min-height: 470px;
    }

    .about-image {
        inset: 0 25px 30px 0;
        border-radius: 23px;
        width: 100%;
    }

    .experience-box {
        min-width: 195px;
        min-height: 105px;
        padding: 16px 20px;
        border-width: 6px;
    }

        .experience-box strong {
            font-size: 42px;
        }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 36px;
    }

    .advantages-section .section-heading {
        align-items: flex-start;
        margin-bottom: 36px;
    }

    .service-card {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 260px;
        height: 260px;
    }

    .service-copy {
        min-height: 250px;
    }

    .dna-scene {
        width: min(100%, 430px);
        height: 440px;
        margin-right: auto;
        margin-left: auto;
    }

    .process-list article {
        grid-template-columns: 34px 1fr 50px;
        gap: 13px;
        padding: 24px 0;
    }

        .process-list article > i {
            width: 48px;
            height: 48px;
            font-size: 21px;
        }

    .test-browser {
        border-radius: 19px;
    }

    .test-toolbar {
        padding: 18px;
    }

    .test-demo-grid {
        grid-template-columns: 1fr;
    }

        .test-demo-grid > a {
            min-height: 105px;
            padding: 18px;
        }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

        .advantages-grid article {
            min-height: 270px;
            padding: 30px 22px;
        }

            .advantages-grid article + article,
            .advantages-grid article:nth-child(3),
            .advantages-grid article:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                border-left: 0;
            }

    .contact-section {
        padding-top: 20px;
    }

    .contact-panel {
        min-height: 455px;
        align-items: flex-start;
        flex-direction: column;
        padding: 40px 28px;
        border-radius: 22px;
    }

        .contact-panel > a {
            width: 125px;
            height: 125px;
            flex-basis: 125px;
            align-self: flex-end;
        }

    .site-footer {
        padding-top: 72px;
    }

    .footer-heading {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 45px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 42px 28px;
        padding: 52px 0;
    }

    .footer-company,
    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

        .footer-info h3 {
            grid-column: auto;
        }

    .footer-bottom {
        min-height: 90px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

@media (max-width: 479.98px) {
    .container-xxl {
        padding-right: 16px;
        padding-left: 16px;
    }

    .topbar-inner > span {
        max-width: 235px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: none !important;
    }

    .site-brand {
        width: 143px;
    }

        .site-brand img {
            max-width: 140px;
        }

    .header-actions {
        gap: 6px;
    }

    .result-button,
    .menu-toggle {
        height: 30px;
        padding: 10px 15px;
        min-height: 44px;
        padding: 0;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .hero-media {
        height: 390px;
    }

    .hero-media-line {
        width: 100px;
        height: 100px;
    }

    .slider-progress > span {
        width: 65px;
    }

    .slider-navigation button {
        width: 37px;
        height: 37px;
    }

    .quick-item {
        grid-template-columns: 46px 1fr 32px;
        gap: 11px;
        padding: 17px;
    }

    .about-media {
        min-height: 410px;
    }

    .experience-box {
        min-width: 175px;
    }

    .service-image {
        height: 235px;
        min-height: 235px;
    }

    .dna-scene {
        height: 390px;
        border-radius: 22px;
    }

    .process-list article {
        grid-template-columns: 30px 1fr;
    }

        .process-list article > i {
            display: none;
        }

    .test-filters button {
        min-width: 39px;
        height: 39px;
        padding: 0 10px;
    }

    .test-demo-grid > a {
        grid-template-columns: 40px 1fr 25px;
        gap: 11px;
    }

        .test-demo-grid > a > span {
            width: 40px;
            height: 40px;
        }

    .contact-panel {
        padding: 35px 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

:root {
    --ksl-red: #c61f2b;
    --ksl-red-dark: #98151f;
    --ksl-red-deep: #731019;
    --ksl-red-light: #fff1f2;
    --ksl-dark: #20242b;
    --ksl-text: #363940;
    --ksl-muted: #737780;
    --ksl-border: #e8e3e1;
    --ksl-background: #f7f5f3;
    --ksl-white: #ffffff;
    --ksl-shadow: 0 18px 50px rgba(42, 31, 32, 0.08);
}

.ksl-tests-page {
    overflow: hidden;
    color: var(--ksl-dark);
    background: var(--ksl-background);
}

.ksl-tests-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 72px;
    color: var(--ksl-white);
    background: radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.09), transparent 23%), linear-gradient(118deg, #89121b 0%, #b71723 47%, #d22633 100%);
    isolation: isolate;
}

    .ksl-tests-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 52px 52px;
        mask-image: linear-gradient(to right, transparent, #000000 55%, #000000);
        pointer-events: none;
    }

    .ksl-tests-hero::after {
        display: none;
    }

    .ksl-tests-hero .container,
    .ksl-tests-directory .container,
    .ksl-tests-section .container,
    .ksl-tests-content .container,
    .ksl-test-detail-hero .container,
    .ksl-test-detail-content .container,
    .ksl-test-detail-not-found .container {
        position: relative;
        width: 100%;
        max-width: 1460px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 28px;
        padding-left: 28px;
    }

    .ksl-tests-hero .container {
        z-index: 2;
    }

.ksl-tests-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.4;
}

    .ksl-tests-breadcrumb a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .ksl-tests-breadcrumb a:hover {
            color: var(--ksl-white);
        }

    .ksl-tests-breadcrumb i {
        font-size: 12px;
        opacity: 0.55;
    }

.ksl-tests-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.ksl-tests-hero-content {
    max-width: 760px;
}

.ksl-tests-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

    .ksl-tests-eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        background: rgba(255, 255, 255, 0.72);
    }

.ksl-tests-hero-content h1 {
    max-width: 720px;
    margin: 0;
    color: var(--ksl-white);
    font-size: clamp(38px, 3.7vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ksl-tests-hero-content p {
    max-width: 650px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

.ksl-tests-hero-counter,
.ksl-tests-hero-stat {
    position: relative;
    display: flex;
    min-width: 178px;
    min-height: 92px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 20px;
    background: rgba(107, 10, 18, 0.2);
    box-shadow: 0 18px 40px rgba(76, 7, 13, 0.13);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .ksl-tests-hero-counter::before,
    .ksl-tests-hero-stat::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        top: 13px;
        right: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.58);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07);
    }

.ksl-tests-counter-number {
    display: block;
    margin-bottom: 5px;
    color: var(--ksl-white);
    font-size: 32px;
    font-weight: 650;
    line-height: 1;
}

.ksl-tests-hero-stat strong {
    display: block;
    color: var(--ksl-white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ksl-tests-hero-stat-value {
    display: block;
    color: var(--ksl-white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.ksl-tests-counter-label,
.ksl-tests-hero-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ksl-tests-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.ksl-tests-hero-orbit-one {
    width: 560px;
    height: 560px;
    top: -390px;
    right: 4%;
}

.ksl-tests-hero-orbit-two {
    width: 290px;
    height: 290px;
    right: -180px;
    bottom: -205px;
}

.ksl-tests-directory {
    position: relative;
    min-height: 460px;
    padding: 46px 0 105px;
    background: linear-gradient(rgba(198, 31, 43, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 31, 43, 0.018) 1px, transparent 1px), var(--ksl-background);
    background-size: 56px 56px;
}

.ksl-tests-filter-panel {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 34px;
    padding: 18px;
    border: 1px solid rgba(75, 60, 61, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 42px rgba(51, 34, 35, 0.08);
}

.ksl-tests-search {
    position: relative;
    display: flex;
    align-items: center;
}

    .ksl-tests-search > i {
        position: absolute;
        z-index: 2;
        left: 20px;
        color: var(--ksl-red);
        font-size: 17px;
        pointer-events: none;
    }

    .ksl-tests-search-input,
    .ksl-tests-filter-panel .ksl-tests-search input,
    .ksl-tests-search input {
        width: 100%;
        height: 58px;
        margin: 0;
        padding: 0 60px 0 52px;
        border: 1px solid #e1dcda;
        border-radius: 11px;
        outline: none;
        color: var(--ksl-dark);
        background: #fbfaf9;
        font: inherit;
        font-size: 15px;
        line-height: 58px;
        transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

        .ksl-tests-search input::placeholder {
            color: #969398;
            opacity: 1;
        }

        .ksl-tests-search input:focus {
            border-color: rgba(198, 31, 43, 0.48);
            background: var(--ksl-white);
            box-shadow: 0 0 0 4px rgba(198, 31, 43, 0.07);
        }

.ksl-tests-clear,
.ksl-tests-search-clear {
    position: absolute;
    z-index: 3;
    right: 10px;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 11px;
    color: #6c6f76;
    background: #ece9e7;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

    .ksl-tests-search-clear[hidden] {
        display: none !important;
    }

    .ksl-tests-clear.is-visible,
    .ksl-tests-search-clear.is-visible {
        display: inline-flex;
    }

    .ksl-tests-clear:hover,
    .ksl-tests-search-clear:hover {
        color: var(--ksl-white);
        background: var(--ksl-red);
        transform: rotate(5deg);
    }

.ksl-tests-alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

    .ksl-tests-letter,
    .ksl-tests-alphabet button {
        display: inline-flex;
        min-width: 41px;
        height: 41px;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border: 1px solid #e4dfdd;
        border-radius: 9px;
        color: #555860;
        background: var(--ksl-white);
        font: inherit;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

        .ksl-tests-letter:hover,
        .ksl-tests-alphabet button:hover {
            border-color: rgba(198, 31, 43, 0.32);
            color: var(--ksl-red);
            background: var(--ksl-red-light);
            transform: translateY(-2px);
        }

        .ksl-tests-letter.is-active,
        .ksl-tests-letter.active,
        .ksl-tests-alphabet button.is-active,
        .ksl-tests-alphabet button.active {
            border-color: var(--ksl-red);
            color: var(--ksl-white);
            background: linear-gradient(135deg, var(--ksl-red), var(--ksl-red-dark));
            box-shadow: 0 8px 19px rgba(198, 31, 43, 0.2);
        }

.ksl-tests-result-toolbar {
    display: flex;
    width: 100%;
    max-width: 1120px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto 22px;
}

.ksl-tests-result-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--ksl-muted);
    font-size: 14px;
}

    .ksl-tests-result-text strong {
        color: var(--ksl-dark);
        font-size: 16px;
        font-weight: 650;
    }

.ksl-tests-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #dfdad8;
    border-radius: 11px;
    color: #64676e;
    background: var(--ksl-white);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

    .ksl-tests-reset[hidden] {
        display: none !important;
    }

    .ksl-tests-reset:hover {
        border-color: rgba(198, 31, 43, 0.3);
        color: var(--ksl-red);
        background: var(--ksl-red-light);
    }

.ksl-tests-grid {
    display: grid;
    width: 100%;
    max-width: 1120px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 auto;
}

.ksl-tests-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ksl-border);
    border-radius: 21px;
    background: var(--ksl-white);
    box-shadow: 0 9px 28px rgba(43, 34, 34, 0.045);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .ksl-tests-card[hidden] {
        display: none !important;
    }

    .ksl-tests-card:hover {
        border-color: rgba(198, 31, 43, 0.23);
        box-shadow: 0 22px 48px rgba(67, 31, 33, 0.1);
        transform: translateY(-6px);
    }

.ksl-tests-card-image-link {
    position: relative;
    display: block;
    height: 205px;
    overflow: hidden;
    background: #ebe7e4;
}

    .ksl-tests-card-image-link::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(27, 23, 24, 0.3), transparent 58%);
        pointer-events: none;
    }

.ksl-tests-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.ksl-tests-card:hover .ksl-tests-card-image {
    transform: scale(1.05);
}

.ksl-tests-card-index {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 14px;
    display: inline-flex;
    min-width: 42px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 10px;
    color: var(--ksl-white);
    background: rgba(25, 27, 32, 0.66);
    font-size: 12px;
    font-weight: 650;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.ksl-tests-card-letter {
    display: inline-flex;
    min-width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(198, 31, 43, 0.14);
    border-radius: 10px;
    color: var(--ksl-red);
    background: var(--ksl-red-light);
    font-size: 13px;
    font-weight: 650;
}

.ksl-tests-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.ksl-tests-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ksl-tests-card-code {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ksl-red);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.ksl-tests-card-title {
    margin: 0;
    color: var(--ksl-dark);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.36;
    letter-spacing: -0.018em;
}

    .ksl-tests-card-title a {
        color: inherit;
        text-decoration: none;
    }

        .ksl-tests-card-title a::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
        }

.ksl-tests-card-summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 12px 0 19px;
    color: var(--ksl-muted);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ksl-tests-card-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #eeeae8;
}

    .ksl-tests-card-meta > span {
        min-width: 0;
        padding: 11px 12px;
        border-radius: 11px;
        background: #f8f6f4;
    }

    .ksl-tests-card-meta small {
        display: block;
        margin-bottom: 3px;
        color: var(--ksl-muted);
        font-size: 12px;
        line-height: 1.35;
    }

    .ksl-tests-card-meta strong {
        display: block;
        overflow: hidden;
        color: var(--ksl-dark);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.ksl-tests-card-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 18px;
    color: var(--ksl-dark);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .ksl-tests-card-link i {
        color: var(--ksl-red);
        transition: transform 0.25s ease;
    }

    .ksl-tests-card-link:hover {
        color: var(--ksl-red);
    }

        .ksl-tests-card-link:hover i {
            transform: translateX(4px);
        }

.ksl-tests-empty,
.ksl-tests-filter-empty {
    width: 100%;
    max-width: 920px;
    min-height: 260px;
    margin-right: auto;
    margin-left: auto;
    padding: 46px 28px;
    border: 1px dashed #d7d1ce;
    border-radius: 15px;
    color: var(--ksl-muted);
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
}

    .ksl-tests-empty[hidden] {
        display: none !important;
    }

.ksl-tests-filter-empty {
    display: none;
}

    .ksl-tests-filter-empty.is-visible {
        display: block;
    }

.ksl-tests-empty-icon,
.ksl-tests-filter-empty-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--ksl-red);
    background: var(--ksl-red-light);
    font-size: 21px;
}

.ksl-tests-empty h2,
.ksl-tests-filter-empty h2 {
    margin: 0 0 9px;
    color: var(--ksl-dark);
    font-size: 23px;
    font-weight: 650;
}

.ksl-tests-empty p,
.ksl-tests-filter-empty p {
    max-width: 510px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
}

.ksl-tests-empty-reset {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 0 17px;
    border: 0;
    border-radius: 11px;
    color: var(--ksl-white);
    background: linear-gradient(135deg, var(--ksl-red), var(--ksl-red-dark));
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

    .ksl-tests-empty-reset:hover {
        box-shadow: 0 10px 23px rgba(198, 31, 43, 0.22);
        transform: translateY(-2px);
    }

.ksl-tests-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

    .ksl-tests-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.ksl-test-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 70px;
    color: var(--ksl-white);
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.09), transparent 24%), linear-gradient(118deg, #861019 0%, #b81723 50%, #d12632 100%);
    isolation: isolate;
}

    .ksl-test-detail-hero::before {
        content: "";
        position: absolute;
        width: 470px;
        height: 470px;
        top: -350px;
        right: 4%;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
    }

.ksl-test-detail-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ksl-test-detail-hero-shape-one {
    display: none;
}

.ksl-test-detail-hero-shape-two {
    width: 180px;
    height: 180px;
    left: -115px;
    bottom: -120px;
    background: rgba(255, 255, 255, 0.04);
}

.ksl-test-detail-hero .container {
    position: relative;
    z-index: 2;
}

.ksl-test-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

    .ksl-test-detail-breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .ksl-test-detail-breadcrumb a:hover {
            color: var(--ksl-white);
        }

    .ksl-test-detail-breadcrumb i {
        font-size: 12px;
        opacity: 0.55;
    }

.ksl-test-detail-hero-content {
    position: relative;
    padding-left: 76px;
}

.ksl-test-detail-hero-icon {
    position: absolute;
    top: 2px;
    left: 0;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 16px;
    color: var(--ksl-white);
    background: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ksl-test-detail-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
}

    .ksl-test-detail-code span {
        color: rgba(255, 255, 255, 0.64);
    }

    .ksl-test-detail-code strong {
        padding: 5px 9px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 7px;
        color: var(--ksl-white);
        background: rgba(255, 255, 255, 0.09);
        font-weight: 600;
    }

.ksl-test-detail-hero-content h1 {
    margin: 0;
    color: var(--ksl-white);
    font-size: clamp(37px, 4.4vw, 58px);
    font-weight: 650;
    line-height: 1.07;
    letter-spacing: -0.038em;
}

.ksl-test-detail-hero-content > p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.72;
}

.ksl-test-detail-content {
    padding: 72px 0 105px;
    background: var(--ksl-background);
}

.ksl-test-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 28px;
}

.ksl-test-detail-main {
    min-width: 0;
}

.ksl-test-detail-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 23px;
    background: #e8e4e2;
    box-shadow: var(--ksl-shadow);
}

    .ksl-test-detail-image img {
        display: block;
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

.ksl-test-detail-image-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 52px 23px 20px;
    background: linear-gradient(to top, rgba(23, 21, 22, 0.67), transparent);
}

    .ksl-test-detail-image-overlay span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ksl-white);
        font-size: 13px;
        font-weight: 600;
    }

.ksl-test-detail-section {
    margin-bottom: 25px;
    padding: 31px;
    border: 1px solid var(--ksl-border);
    border-radius: 22px;
    background: var(--ksl-white);
    box-shadow: 0 11px 32px rgba(45, 35, 35, 0.045);
}

.ksl-test-detail-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeae8;
}

.ksl-test-detail-section-number {
    display: inline-flex;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--ksl-red);
    background: var(--ksl-red-light);
    font-size: 12px;
    font-weight: 650;
}

.ksl-test-detail-section-label {
    display: block;
    margin-bottom: 4px;
    color: var(--ksl-red);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1;
}

.ksl-test-detail-section-heading h2 {
    margin: 0;
    color: var(--ksl-dark);
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.ksl-test-detail-editor {
    color: var(--ksl-text);
    font-size: 15px;
    line-height: 1.82;
}

    .ksl-test-detail-editor > *:first-child {
        margin-top: 0;
    }

    .ksl-test-detail-editor > *:last-child {
        margin-bottom: 0;
    }

    .ksl-test-detail-editor h2,
    .ksl-test-detail-editor h3,
    .ksl-test-detail-editor h4 {
        margin: 26px 0 12px;
        color: var(--ksl-dark);
        font-weight: 650;
        line-height: 1.3;
    }

    .ksl-test-detail-editor h2 {
        font-size: 23px;
    }

    .ksl-test-detail-editor h3 {
        font-size: 20px;
    }

    .ksl-test-detail-editor h4 {
        font-size: 17px;
    }

    .ksl-test-detail-editor p {
        margin: 0 0 16px;
    }

    .ksl-test-detail-editor ul,
    .ksl-test-detail-editor ol {
        margin: 0 0 18px;
        padding-left: 22px;
    }

    .ksl-test-detail-editor li {
        margin-bottom: 7px;
    }

    .ksl-test-detail-editor a {
        color: var(--ksl-red);
    }

    .ksl-test-detail-editor img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

.ksl-test-detail-preparation {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(198, 31, 43, 0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff5f6, #fffafa);
}

.ksl-test-detail-preparation-icon {
    display: flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--ksl-white);
    background: linear-gradient(135deg, var(--ksl-red), var(--ksl-red-dark));
    font-size: 16px;
}

.ksl-test-detail-preparation-text {
    padding-top: 6px;
    color: var(--ksl-text);
    font-size: 15px;
    line-height: 1.78;
}

.ksl-test-detail-sidebar {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 18px;
}

.ksl-test-detail-info-card {
    overflow: hidden;
    border: 1px solid var(--ksl-border);
    border-radius: 22px;
    background: var(--ksl-white);
    box-shadow: 0 13px 36px rgba(45, 35, 35, 0.055);
}

.ksl-test-detail-info-heading {
    padding: 22px 23px 19px;
    border-bottom: 1px solid #eeeae8;
    background: linear-gradient(135deg, #fff7f7, #ffffff);
}

    .ksl-test-detail-info-heading span {
        display: block;
        margin-bottom: 4px;
        color: var(--ksl-red);
        font-size: 12px;
        font-weight: 650;
        letter-spacing: 0.075em;
        text-transform: uppercase;
    }

    .ksl-test-detail-info-heading h2 {
        margin: 0;
        color: var(--ksl-dark);
        font-size: 21px;
        font-weight: 650;
        letter-spacing: -0.02em;
    }

.ksl-test-detail-info-list {
    padding: 7px 23px;
}

.ksl-test-detail-info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid #efebe9;
}

    .ksl-test-detail-info-item:last-child {
        border-bottom: 0;
    }

.ksl-test-detail-info-icon {
    display: flex;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--ksl-red);
    background: var(--ksl-red-light);
    font-size: 14px;
}

.ksl-test-detail-info-item > div:last-child {
    min-width: 0;
}

.ksl-test-detail-info-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--ksl-muted);
    font-size: 12px;
}

.ksl-test-detail-info-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--ksl-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.ksl-test-detail-back {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--ksl-border);
    border-radius: 17px;
    color: var(--ksl-dark);
    background: var(--ksl-white);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .ksl-test-detail-back:hover {
        border-color: rgba(198, 31, 43, 0.24);
        color: var(--ksl-dark);
        box-shadow: 0 12px 31px rgba(55, 37, 38, 0.075);
        transform: translateY(-3px);
    }

.ksl-test-detail-back-icon {
    display: flex;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--ksl-white);
    background: var(--ksl-dark);
    transition: background-color 0.25s ease;
}

.ksl-test-detail-back:hover .ksl-test-detail-back-icon {
    background: var(--ksl-red);
}

.ksl-test-detail-back small {
    display: block;
    margin-bottom: 2px;
    color: var(--ksl-muted);
    font-size: 12px;
}

.ksl-test-detail-back strong {
    display: block;
    font-size: 14px;
    font-weight: 650;
}

.ksl-test-detail-contact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    padding: 27px;
    border-radius: 22px;
    color: var(--ksl-white);
    background: radial-gradient(circle at 92% 18%, rgba(198, 31, 43, 0.37), transparent 29%), var(--ksl-dark);
}

.ksl-test-detail-contact-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: var(--ksl-white);
    background: rgba(255, 255, 255, 0.075);
    font-size: 19px;
}

.ksl-test-detail-contact-content span {
    display: block;
    margin-bottom: 4px;
    color: #f14753;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: -0.015em;
}

.ksl-test-detail-contact-content h2 {
    margin: 0;
    color: var(--ksl-white);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.ksl-test-detail-contact-content p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.6;
}

.ksl-test-detail-contact-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 11px;
    color: var(--ksl-white);
    background: linear-gradient(135deg, #d62a37, #a91420);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .ksl-test-detail-contact-button:hover {
        color: var(--ksl-white);
        box-shadow: 0 11px 23px rgba(198, 31, 43, 0.24);
        transform: translateY(-2px);
    }

    .ksl-test-detail-contact-button i {
        transition: transform 0.25s ease;
    }

    .ksl-test-detail-contact-button:hover i {
        transform: translateX(3px);
    }

.ksl-test-detail-not-found {
    min-height: 70vh;
    padding: 125px 0 85px;
    background: radial-gradient(circle at 50% 30%, rgba(198, 31, 43, 0.07), transparent 30%), var(--ksl-background);
}

.ksl-test-detail-not-found-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 56px 36px;
    border: 1px solid var(--ksl-border);
    border-radius: 25px;
    background: var(--ksl-white);
    box-shadow: var(--ksl-shadow);
    text-align: center;
}

.ksl-test-detail-not-found-icon {
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 19px;
    color: var(--ksl-red);
    background: var(--ksl-red-light);
    font-size: 25px;
}

.ksl-test-detail-not-found-box > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ksl-red);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.ksl-test-detail-not-found-box h1 {
    margin: 0;
    color: var(--ksl-dark);
    font-size: 33px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.ksl-test-detail-not-found-box p {
    max-width: 500px;
    margin: 15px auto 23px;
    color: var(--ksl-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ksl-test-detail-not-found-box a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 19px;
    border-radius: 11px;
    color: var(--ksl-white);
    background: var(--ksl-red);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .ksl-test-detail-not-found-box a:hover {
        color: var(--ksl-white);
        background: var(--ksl-red-dark);
        transform: translateY(-2px);
    }

@media (max-width: 1199.98px) {
    .ksl-tests-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ksl-test-detail-layout {
        grid-template-columns: minmax(0, 1fr) 315px;
    }

    .ksl-test-detail-contact {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ksl-test-detail-contact-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 991.98px) {
    .ksl-tests-hero {
        padding: 50px 0 68px;
    }

    .ksl-tests-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ksl-tests-hero-counter,
    .ksl-tests-hero-stat {
        min-width: 0;
        min-height: 78px;
        justify-self: start;
        padding: 17px 22px;
    }

    .ksl-test-detail-layout {
        grid-template-columns: 1fr;
    }

    .ksl-test-detail-sidebar {
        position: static;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .ksl-tests-hero .container,
    .ksl-tests-directory .container,
    .ksl-tests-section .container,
    .ksl-tests-content .container,
    .ksl-test-detail-hero .container,
    .ksl-test-detail-content .container,
    .ksl-test-detail-not-found .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ksl-tests-hero {
        padding: 44px 0 62px;
    }

    .ksl-tests-breadcrumb {
        margin-bottom: 20px;
    }

    .ksl-tests-hero-content h1 {
        font-size: 38px;
    }

    .ksl-tests-hero-content p {
        margin-top: 16px;
        font-size: 15px;
    }

    .ksl-tests-filter-panel {
        margin-top: 0;
        margin-bottom: 24px;
        padding: 15px;
        border-radius: 14px;
    }

    .ksl-tests-directory {
        padding-top: 30px;
    }

    .ksl-tests-grid {
        grid-template-columns: 1fr;
    }

    .ksl-tests-card-image-link {
        height: 235px;
    }

    .ksl-test-detail-hero {
        padding: 46px 0 62px;
    }

    .ksl-test-detail-breadcrumb {
        margin-bottom: 23px;
    }

    .ksl-test-detail-hero-content {
        padding-left: 0;
    }

    .ksl-test-detail-hero-icon {
        position: static;
        margin-bottom: 17px;
    }

    .ksl-test-detail-hero-content h1 {
        font-size: 39px;
    }

    .ksl-test-detail-hero-content > p {
        font-size: 15px;
    }

    .ksl-test-detail-content {
        padding: 60px 0 85px;
    }

    .ksl-test-detail-image img {
        height: 345px;
    }

    .ksl-test-detail-section {
        padding: 26px;
    }

    .ksl-test-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .ksl-tests-hero {
        padding: 38px 0 56px;
    }

    .ksl-tests-hero-content h1 {
        font-size: 33px;
    }

    .ksl-tests-hero-counter,
    .ksl-tests-hero-stat {
        width: 100%;
    }

    .ksl-tests-filter-panel {
        padding: 14px;
    }

    .ksl-tests-search > i {
        left: 16px;
    }

    .ksl-tests-filter-panel .ksl-tests-search input,
    .ksl-tests-search input {
        height: 54px;
        padding-left: 46px;
        font-size: 14px;
        line-height: 54px;
    }

    .ksl-tests-alphabet {
        gap: 6px;
    }

        .ksl-tests-letter,
        .ksl-tests-alphabet button {
            min-width: 38px;
            height: 38px;
            padding: 0 9px;
        }

    .ksl-tests-result-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ksl-tests-card-image-link {
        height: 205px;
    }

    .ksl-tests-card-content {
        padding: 20px;
    }

    .ksl-tests-card-meta {
        grid-template-columns: 1fr;
    }

    .ksl-tests-card-title {
        font-size: 19px;
    }

    .ksl-test-detail-hero {
        padding: 38px 0 54px;
    }

    .ksl-test-detail-hero-content h1 {
        font-size: 33px;
    }

    .ksl-test-detail-image img {
        height: 270px;
    }

    .ksl-test-detail-section {
        padding: 21px;
        border-radius: 19px;
    }

    .ksl-test-detail-section-heading {
        align-items: flex-start;
    }

        .ksl-test-detail-section-heading h2 {
            font-size: 21px;
        }

    .ksl-test-detail-preparation {
        flex-direction: column;
    }

    .ksl-test-detail-contact {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .ksl-test-detail-contact-button {
        grid-column: auto;
        justify-self: stretch;
    }

    .ksl-test-detail-not-found {
        padding: 110px 0 65px;
    }

    .ksl-test-detail-not-found-box {
        padding: 42px 21px;
    }

        .ksl-test-detail-not-found-box h1 {
            font-size: 28px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .ksl-tests-card,
    .ksl-tests-card-image,
    .ksl-tests-letter,
    .ksl-tests-alphabet button,
    .ksl-tests-reveal,
    .ksl-test-detail-contact-button,
    .ksl-test-detail-back {
        transition: none !important;
    }

    .ksl-tests-reveal {
        opacity: 1;
        transform: none;
    }
}


.ksl-tests-page .ksl-tests-hero-grid,
.ksl-tests-page .ksl-tests-filter-panel,
.ksl-tests-page .ksl-tests-result-toolbar,
.ksl-tests-page .ksl-tests-grid,
.ksl-tests-page .ksl-tests-empty {
    width: 100%;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.ksl-tests-page .ksl-tests-filter-panel {
    margin-bottom: 34px;
}

.ksl-tests-page .ksl-tests-result-toolbar {
    margin-bottom: 22px;
}

.ksl-tests-page .ksl-tests-empty {
    min-height: 260px;
}

.topbar {
    position: relative;
    z-index: 1040;
    color: rgba(255, 255, 255, 0.72);
    background: #17191e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    min-height: 38px;
    font-size: 12px;
    font-weight: 500;
}

    .topbar-inner > span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.68);
    }

        .topbar-inner > span::before {
            width: 6px;
            height: 6px;
            content: "";
            background: #d72a2c;
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(215, 42, 44, 0.12);
        }

.topbar-contact {
    gap: 26px;
}

    .topbar-contact a {
        gap: 9px;
        color: rgba(255, 255, 255, 0.78);
    }

        .topbar-contact a:hover {
            color: #ffffff;
        }

    .topbar-contact i {
        color: #e45052;
        font-size: 13px;
    }

.site-header {
    z-index: 1030;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid rgba(25, 27, 32, 0.07);
    box-shadow: 0 1px 0 rgba(25, 27, 32, 0.02);
    backdrop-filter: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

    .site-header.is-scrolled {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 12px 35px rgba(25, 27, 32, 0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

.site-navbar {
    min-height: 86px;
}

.site-brand {
    width: 220px;
    min-height: 58px;
}

    .site-brand img {
        width: auto;
        max-width: 216px;
        height: 58px;
        object-fit: contain;
    }

.site-nav {
    gap: 7px;
}

    .site-nav .nav-link {
        min-height: 46px;
        padding: 11px 11px !important;
        color: #33363b;
        font-size: 14px;
        font-weight: 600;
    }

        .site-nav .nav-link::before {
            right: 11px;
            bottom: 4px;
            left: 11px;
            height: 2px;
            background: var(--red);
        }

    .site-nav .dropdown-menu {
        min-width: 250px;
        margin-top: 12px;
        padding: 9px;
        background: #ffffff;
        border: 1px solid rgba(25, 27, 32, 0.08);
        border-radius: 15px;
        box-shadow: 0 20px 48px rgba(25, 27, 32, 0.14);
    }

    .site-nav .dropdown-item {
        min-height: 47px;
        padding: 11px 12px;
        color: #45484f;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 550;
    }

        .site-nav .dropdown-item i {
            color: var(--red);
        }

        .site-nav .dropdown-item:hover,
        .site-nav .dropdown-item:focus {
            color: var(--red);
            background: #fff5f5;
            transform: translateX(3px);
        }

.result-button {
    min-height: 48px;
    gap: 10px;
    padding: 10px 17px;
    background: linear-gradient(120deg, #d62d2f, #ad171b);
    border: 1px solid rgba(158, 18, 23, 0.15);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(171, 24, 28, 0.18);
    font-size: 13px;
}

    .result-button:hover {
        box-shadow: 0 16px 34px rgba(171, 24, 28, 0.25);
        transform: translateY(-2px);
    }

.home-intro {
    position: relative;
    background: #ffffff;
}

.home-slider {
    position: relative;
    overflow: hidden;
    background: #17191e;
}

    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        position: relative;
    }

.home-slide {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #17191e;
    isolation: isolate;
}

.home-slide-image {
    position: absolute;
    inset: -1.5%;
    z-index: -6;
    width: 103%;
    max-width: none;
    height: 103%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.045);
    transition: transform 7.5s cubic-bezier(0.16, 0.7, 0.2, 1);
}

.home-slider .carousel-item.active .home-slide-image {
    transform: scale(1);
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: -5;
    background: linear-gradient( 90deg, rgba(17, 18, 22, 0.92) 0%, rgba(17, 18, 22, 0.82) 26%, rgba(17, 18, 22, 0.58) 47%, rgba(17, 18, 22, 0.18) 72%, rgba(17, 18, 22, 0.06) 100% ), linear-gradient( 180deg, rgba(17, 18, 22, 0.06) 0%, rgba(17, 18, 22, 0.05) 55%, rgba(17, 18, 22, 0.32) 100% );
}

    .home-slide-overlay::after {
        position: absolute;
        inset: 0 auto 0 0;
        width: 54%;
        content: "";
        background: radial-gradient( circle at 8% 62%, rgba(197, 34, 35, 0.2), transparent 35% );
        pointer-events: none;
    }

.home-slide-accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(28px, calc((100vw - 1460px) / 2 + 28px));
    z-index: -3;
    width: 1px;
    background: linear-gradient( to bottom, transparent 8%, rgba(255, 255, 255, 0.12) 28%, rgba(255, 255, 255, 0.12) 72%, transparent 92% );
    pointer-events: none;
}

    .home-slide-accent::before,
    .home-slide-accent::after {
        position: absolute;
        left: -4px;
        width: 9px;
        height: 9px;
        content: "";
        background: #d62d2f;
        border: 2px solid rgba(255, 255, 255, 0.85);
        border-radius: 50%;
    }

    .home-slide-accent::before {
        top: 26%;
    }

    .home-slide-accent::after {
        bottom: 21%;
    }

.home-slide-container {
    display: flex;
    min-height: 720px;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 128px;
}

.home-slide-content {
    width: min(100%, 1024px);
    padding-left: 34px;
}

.home-slide-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.48s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

    .home-slide-label > span {
        width: 34px;
        height: 2px;
        background: #e14648;
    }

    .home-slide-label strong {
        color: rgba(255, 255, 255, 0.75);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

.home-slide-content h1,
.home-slide-content h2 {
    max-width: 900px;
    margin: 0 0 27px;
    color: rgba(255, 255, 255, 0.97);
    font-size: clamp(48px, 4.45vw, 78px);
    font-weight: 600;
    line-height: 0.97;
    letter-spacing: -0.06em;
    text-wrap: balance;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.62s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slide-content > p {
    margin: 0 0 33px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.82;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.58s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.56s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-slide-content.is-active .home-slide-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.home-slide-content.is-active h1,
.home-slide-content.is-active h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.16s;
}

.home-slide-content.is-active > p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.27s;
}

.home-slide-content.is-active .home-slide-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.37s;
}

.home-slide-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 19px;
    padding: 11px 12px 11px 22px;
    color: #ffffff;
    background: linear-gradient(120deg, #da3032, #ae181c);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(130, 12, 17, 0.28);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.26s ease, box-shadow 0.26s ease;
}

    .home-slide-button > i {
        display: grid;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 9px;
        place-items: center;
        transition: transform 0.25s ease;
    }

    .home-slide-button:hover {
        color: #ffffff;
        box-shadow: 0 22px 45px rgba(130, 12, 17, 0.36);
        transform: translateY(-2px);
    }

        .home-slide-button:hover > i {
            transform: translateX(3px);
        }

.home-slide-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.22s ease;
}

    .home-slide-link > i {
        color: #f05a5c;
        transition: transform 0.22s ease;
    }

    .home-slide-link:hover {
        color: #ffffff;
    }

        .home-slide-link:hover > i {
            transform: translate(3px, -2px);
        }

.home-slide-caption {
    position: absolute;
    right: max(28px, calc((100vw - 1460px) / 2 + 28px));
    bottom: 105px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

    .home-slide-caption i {
        width: 22px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

.home-slider-bottom {
    position: absolute;
    right: 0;
    bottom: 76px;
    left: 0;
    z-index: 7;
}

.home-slider-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-slider-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 34px;
}

    .home-slider-counter strong {
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
    }

    .home-slider-counter b {
        color: rgba(255, 255, 255, 0.42);
        font-size: 12px;
        font-weight: 500;
    }

    .home-slider-counter > span {
        position: relative;
        display: block;
        width: 112px;
        height: 1px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.22);
    }

        .home-slider-counter > span > i {
            position: absolute;
            inset: 0;
            display: block;
            background: #ffffff;
            transform: scaleX(0);
            transform-origin: left;
        }

            .home-slider-counter > span > i.is-running {
                animation: sliderProgress 7s linear forwards;
            }

.home-slider-buttons {
    display: flex;
    gap: 7px;
}

    .home-slider-buttons button {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        color: #25272c;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
        place-items: center;
        font-size: 14px;
        transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }

        .home-slider-buttons button:hover {
            color: #ffffff;
            background: var(--red);
            transform: translateY(-2px);
        }

.home-slide-fallback {
    background: radial-gradient(circle at 18% 35%, rgba(197, 34, 35, 0.3), transparent 30%), linear-gradient(120deg, #2a2c31 0%, #17191e 100%);
}

.home-access {
    position: relative;
    z-index: 12;
    margin-top: -48px;
    padding-bottom: 0;
    background: #ffffff;
}

.home-access-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 58px rgba(25, 27, 32, 0.13), 0 2px 5px rgba(25, 27, 32, 0.03);
}

.home-access-item {
    position: relative;
    display: grid;
    min-height: 116px;
    grid-template-columns: 26px 48px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 14px;
    padding: 20px 23px;
    color: var(--ink);
    background: transparent;
    transition: color 0.25s ease, background 0.25s ease;
}

    .home-access-item + .home-access-item {
        border-left: 1px solid rgba(25, 27, 32, 0.08);
    }

    .home-access-item::after {
        position: absolute;
        right: 23px;
        bottom: 0;
        left: 23px;
        height: 2px;
        content: "";
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .home-access-item:hover {
        color: var(--ink);
        background: #fffafa;
    }

        .home-access-item:hover::after {
            transform: scaleX(1);
        }

.home-access-index {
    color: #b3b5ba;
    font-size: 10px;
    font-weight: 650;
}

.home-access-icon {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--red);
    background: #faecec;
    border-radius: 13px;
    place-items: center;
    font-size: 18px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-access-copy {
    display: block;
    min-width: 0;
}

    .home-access-copy small {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0.11em;
    }

    .home-access-copy strong {
        display: block;
        color: var(--ink);
        font-size: 15px;
        font-weight: 650;
        line-height: 1.4;
    }

.home-access-arrow {
    display: grid;
    width: 35px;
    height: 35px;
    color: #4c4f55;
    border: 1px solid rgba(25, 27, 32, 0.13);
    border-radius: 50%;
    place-items: center;
    font-size: 12px;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.home-access-item:hover .home-access-icon {
    color: #ffffff;
    background: var(--red);
    transform: rotate(-4deg);
}

.home-access-item:hover .home-access-arrow {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
    transform: translate(2px, -2px);
}

.about-media {
    min-height: 560px;
}

.about-image {
    inset: 0 40px 30px 0;
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(25, 27, 32, 0.1);
}

.experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    width: 280px;
    min-height: 112px;
    grid-template-columns: auto minmax(0, 1fr) 40px;
    align-items: center;
    gap: 14px;
    padding: 17px 17px 17px 19px;
    overflow: hidden;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-left: 4px solid var(--red);
    border-radius: 19px;
    box-shadow: 0 20px 48px rgba(25, 27, 32, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .experience-box::before,
    .experience-box::after {
        display: none;
    }

.experience-number {
    display: flex;
    min-width: 72px;
    align-items: flex-start;
    color: var(--red);
}

    .experience-number strong {
        color: var(--red);
        font-size: 50px;
        font-weight: 750;
        line-height: 0.9;
        letter-spacing: -0.065em;
    }

    .experience-number sup {
        margin: 2px 0 0 3px;
        color: var(--red);
        font-size: 17px;
        font-weight: 750;
        line-height: 1;
    }

.experience-content {
    min-width: 0;
}

    .experience-content > span {
        display: block;
        margin-bottom: 5px;
        color: var(--red);
        font-size: 9px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    .experience-content > strong {
        display: block;
        max-width: 105px;
        color: var(--ink);
        font-size: 14px;
        font-weight: 650;
        line-height: 1.3;
        letter-spacing: -0.02em;
    }

.experience-icon {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--white);
    background: linear-gradient(135deg, #d72e30, #a8171b);
    border-radius: 12px;
    place-items: center;
    font-size: 16px;
}

.services-showcase {
    overflow: hidden;
    background: linear-gradient(rgba(197, 34, 35, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 34, 35, 0.018) 1px, transparent 1px), var(--paper);
    background-size: 58px 58px;
}

.services-showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

    .services-showcase-head h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(40px, 3.6vw, 52px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

        .services-showcase-head h2 em {
            color: var(--red);
            font-style: normal;
        }

.services-showcase-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.services-showcase-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}

    .services-showcase-counter strong {
        color: var(--ink);
        font-size: 16px;
        font-weight: 650;
    }

    .services-showcase-counter b {
        font-weight: 500;
    }

.services-showcase-nav {
    display: flex;
    gap: 7px;
}

    .services-showcase-nav button {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        color: var(--ink);
        background: #ffffff;
        border: 1px solid rgba(25, 27, 32, 0.1);
        border-radius: 11px;
        box-shadow: 0 8px 20px rgba(25, 27, 32, 0.05);
        place-items: center;
        transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

        .services-showcase-nav button:hover {
            color: #ffffff;
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px);
        }

.services-carousel {
    width: 100%;
    overflow: hidden;
}

.services-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    will-change: transform;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
}

.service-slide-link {
    display: flex;
    height: 100%;
    min-height: 505px;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.075);
    border-radius: 23px;
    box-shadow: 0 12px 34px rgba(25, 27, 32, 0.06);
    transition: color 0.25s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .service-slide-link:hover {
        color: var(--ink);
        box-shadow: 0 24px 50px rgba(25, 27, 32, 0.11);
        transform: translateY(-6px);
    }

.service-slide-media {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #dedbd6;
}

    .service-slide-media img,
    .service-slide-fallback {
        width: 100%;
        height: 100%;
    }

    .service-slide-media img {
        object-fit: cover;
        transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
    }

.service-slide-link:hover .service-slide-media img {
    transform: scale(1.055);
}

.service-slide-fallback {
    display: grid;
    color: #ffffff;
    background: linear-gradient(145deg, #d44243, #941519);
    place-items: center;
    font-size: 52px;
}

.service-slide-shade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(21, 22, 26, 0.48), transparent);
}

.service-slide-number {
    position: absolute;
    right: 17px;
    bottom: 16px;
    display: inline-flex;
    min-width: 42px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #ffffff;
    background: rgba(20, 21, 25, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 650;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-slide-copy {
    display: flex;
    min-height: 225px;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 23px 24px 24px;
}

.service-slide-kicker {
    margin-bottom: 11px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-slide-copy h3 {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.32;
    letter-spacing: -0.025em;
}

.service-slide-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.service-slide-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ink);
    font-size: 13px;
    font-weight: 650;
}

    .service-slide-more i {
        color: var(--red);
        transition: transform 0.22s ease;
    }

.service-slide-link:hover .service-slide-more i {
    transform: translate(3px, -2px);
}

.process-section {
    overflow: hidden;
}


.process-list {
    height: 100%;
    border-top: 1px solid var(--line);
}

    .process-list article {
        min-height: 101px;
        grid-template-columns: 42px 1fr 54px;
        gap: 18px;
        padding: 20px 5px;
    }

        .process-list article > i {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

.site-footer {
    position: relative;
    padding: 0;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 88% 12%, rgba(197, 34, 35, 0.18), transparent 24%), radial-gradient(circle at 74% 100%, rgba(197, 34, 35, 0.12), transparent 26%), linear-gradient(180deg, #0a0d13 0%, #090c12 48%, #080b11 100%);
    isolation: isolate;
}

    .site-footer::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.14;
        background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
        background-size: 72px 72px;
        pointer-events: none;
    }

    .site-footer::after {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02)), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02));
        pointer-events: none;
    }

.footer-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

    .footer-backdrop::before {
        position: absolute;
        inset: 0;
        content: "";
        opacity: 0.32;
        background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
        background-size: 140px 140px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.95));
    }

    .footer-backdrop::after {
        position: absolute;
        inset: 0;
        content: "";
        background: radial-gradient(circle at 86% 10%, rgba(197, 34, 35, 0.24), transparent 19%), radial-gradient(circle at 70% 100%, rgba(197, 34, 35, 0.16), transparent 24%), radial-gradient(circle at 14% 84%, rgba(255, 255, 255, 0.035), transparent 16%);
    }

    .footer-backdrop > span {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

        .footer-backdrop > span:nth-child(1) {
            top: -350px;
            right: -120px;
            width: 760px;
            height: 760px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 110px rgba(255, 255, 255, 0.015), 0 0 0 220px rgba(255, 255, 255, 0.008);
        }

        .footer-backdrop > span:nth-child(2) {
            top: -210px;
            right: 80px;
            width: 420px;
            height: 420px;
            border: 1px solid rgba(255, 255, 255, 0.045);
        }

        .footer-backdrop > span:nth-child(3) {
            left: 52%;
            bottom: -420px;
            width: 760px;
            height: 760px;
            border: 1px solid rgba(197, 34, 35, 0.08);
            box-shadow: 0 0 0 110px rgba(197, 34, 35, 0.025), 0 0 0 220px rgba(197, 34, 35, 0.012);
        }

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding: 84px 0 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.14em;
}

    .footer-eyebrow::before {
        width: 34px;
        height: 1px;
        content: "";
        background: #e34a4c;
    }

.footer-cta h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(46px, 4.6vw, 68px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.075em;
}

    .footer-cta h2 em {
        color: rgba(255, 255, 255, 0.47);
        font-style: normal;
        font-weight: 350;
    }

.footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.8;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-result-button,
.footer-contact-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.footer-result-button {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

    .footer-result-button:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

.footer-contact-button {
    color: #ffffff;
    background: linear-gradient(120deg, #d62d2f, #a8171b);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .footer-contact-button:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.8fr 1.25fr;
    gap: 52px;
    padding: 60px 0 56px;
}

.footer-company > p {
    max-width: 380px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
}

.footer-logo {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    margin-bottom: 21px;
}

    .footer-logo img {
        width: auto;
        max-width: 220px;
        height: 60px;
        object-fit: contain;
    }

.footer-logo-fallback {
    filter: brightness(0) invert(1);
}

.footer-social {
    gap: 8px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        color: rgba(255, 255, 255, 0.66);
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 11px;
    }

        .footer-social a:hover {
            color: #ffffff;
            background: var(--red);
            transform: translateY(-3px);
        }

.footer-link-group,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-link-group > span,
    .footer-contact > span {
        display: block;
        margin-bottom: 23px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.13em;
    }

    .footer-link-group > a {
        color: rgba(255, 255, 255, 0.62);
        font-size: 14px;
        font-weight: 450;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .footer-link-group > a + a {
            margin-top: 11px;
        }

        .footer-link-group > a:hover {
            color: #ffffff;
            transform: translateX(3px);
        }

    .footer-contact address,
    .footer-contact > a {
        display: grid;
        width: 100%;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        margin: 0;
        padding: 13px 0;
        color: rgba(255, 255, 255, 0.72);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-style: normal;
    }

        .footer-contact address > i,
        .footer-contact > a > i {
            display: grid;
            width: 36px;
            height: 36px;
            color: #eb5d5f;
            background: rgba(197, 34, 35, 0.09);
            border-radius: 10px;
            place-items: center;
            font-size: 14px;
        }

    .footer-contact small {
        display: block;
        margin-bottom: 2px;
        color: rgba(255, 255, 255, 0.36);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .footer-contact strong {
        display: block;
        color: rgba(255, 255, 255, 0.76);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.55;
    }

    .footer-contact > a:hover strong {
        color: #ffffff;
    }

.footer-bottom {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.38);
        font-size: 12px;
    }

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .footer-bottom-right > span,
    .footer-bottom-right > a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.42);
        font-size: 12px;
    }

        .footer-bottom-right > a:hover {
            color: #ffffff;
        }

@media (max-width: 1199.98px) {
    .site-brand {
        width: 190px;
    }

        .site-brand img {
            max-width: 186px;
            height: 53px;
        }

    .home-slide,
    .home-slide-container {
        min-height: 690px;
    }

    .home-slide-content h1,
    .home-slide-content h2 {
        font-size: clamp(52px, 6.8vw, 76px);
    }

    .service-slide {
        flex-basis: calc((100% - 22px) / 2);
    }

    .footer-main {
        grid-template-columns: 1.2fr 0.7fr 0.8fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0 22px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .footer-contact > span {
            grid-column: 1 / -1;
        }
}

@media (max-width: 991.98px) {
    .home-slide,
    .home-slide-container {
        min-height: 650px;
    }

    .home-slide-container {
        padding-top: 58px;
        padding-bottom: 120px;
    }

    .home-slide-overlay {
        background: linear-gradient( 90deg, rgba(17, 18, 22, 0.92) 0%, rgba(17, 18, 22, 0.76) 58%, rgba(17, 18, 22, 0.34) 100% ), linear-gradient( 180deg, rgba(17, 18, 22, 0.05), rgba(17, 18, 22, 0.34) );
    }

    .home-slide-content {
        width: min(100%, 1024px);
        padding-left: 25px;
    }

    .home-slide-caption {
        display: none;
    }

    .home-access-grid {
        grid-template-columns: 1fr;
    }

    .home-access-item + .home-access-item {
        border-top: 1px solid rgba(25, 27, 32, 0.08);
        border-left: 0;
    }

    .services-showcase-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .services-showcase-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .service-slide {
        flex-basis: calc((100% - 22px) / 2);
    }

    .dna-scene {
        height: 500px;
    }

    .process-list article {
        min-height: 96px;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }
}

@media (max-width: 767.98px) {
    .container-xxl {
        padding-right: 20px;
        padding-left: 20px;
    }

    .topbar-inner > span::before {
        display: none;
    }

    .site-navbar {
        min-height: 74px;
    }

    .site-brand {
        width: 168px;
    }

        .site-brand img {
            max-width: 162px;
            height: 48px;
        }

    .home-slide,
    .home-slide-container {
        min-height: 620px;
    }

    .home-slide-image {
        object-position: 58% center;
    }

    .home-slide-overlay {
        background: linear-gradient( 90deg, rgba(17, 18, 22, 0.93), rgba(17, 18, 22, 0.72) );
    }

    .home-slide-accent {
        left: 20px;
    }

    .home-slide-content {
        padding-left: 22px;
    }

        .home-slide-content h1,
        .home-slide-content h2 {
            margin-bottom: 22px;
            font-size: clamp(40px, 10.5vw, 56px);
        }

        .home-slide-content > p {
            margin-bottom: 27px;
            font-size: 16px;
            line-height: 1.72;
        }

    .home-slider-bottom {
        bottom: 67px;
    }

    .home-slider-counter {
        padding-left: 22px;
    }

    .home-access {
        margin-top: -38px;
    }

    .home-access-item {
        min-height: 100px;
    }

    .about-media {
        min-height: 470px;
    }

    .experience-box {
        width: 260px;
        min-height: 102px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .experience-icon {
        display: none;
    }

    .service-slide {
        flex-basis: 100%;
    }

    .service-slide-media {
        height: 260px;
    }

    .footer-cta {
        padding: 66px 0 50px;
    }

        .footer-cta h2 {
            font-size: clamp(40px, 9.5vw, 54px);
        }

    .footer-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-result-button,
    .footer-contact-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding: 48px 0;
    }

    .footer-company,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-template-columns: 1fr;
    }

        .footer-contact > span {
            grid-column: auto;
        }

    .footer-bottom {
        min-height: 105px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 9px;
    }

    .footer-bottom-right {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

@media (max-width: 575.98px) {
    .home-slide,
    .home-slide-container {
        min-height: 590px;
    }

    .home-slide-container {
        padding-top: 48px;
        padding-bottom: 112px;
    }

    .home-slide-label {
        margin-bottom: 20px;
    }

        .home-slide-label > span {
            width: 25px;
        }

        .home-slide-label strong {
            font-size: 9px;
            letter-spacing: 0.12em;
        }

    .home-slide-content h1,
    .home-slide-content h2 {
        font-size: clamp(36px, 11.5vw, 49px);
    }

    .home-slide-content > p {
        font-size: 15px;
    }

    .home-slide-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-slider-counter > span {
        width: 68px;
    }

    .home-slider-buttons button {
        width: 39px;
        height: 39px;
    }

    .home-access-item {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 16px;
    }

    .home-access-index {
        display: none;
    }

    .home-access-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .home-access-arrow {
        width: 34px;
        height: 34px;
    }

    .services-showcase-actions .line-button {
        width: 100%;
        justify-content: flex-start;
    }

    .service-slide-media {
        height: 230px;
    }

    .service-slide-copy {
        min-height: 215px;
        padding: 20px;
    }

    .dna-scene {
        height: 430px;
    }

    .process-list article {
        min-height: 0;
        grid-template-columns: 30px 1fr;
        padding: 22px 0;
    }

        .process-list article > i {
            display: none;
        }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-company,
    .footer-contact {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-slide-image,
    .home-slide-label,
    .home-slide-content h1,
    .home-slide-content h2,
    .home-slide-content > p,
    .home-slide-actions,
    .services-track {
        transition: none !important;
    }
}

@media (max-width: 1199.98px) {
    .site-menu {
        width: min(420px, 92vw) !important;
        color: #ffffff;
        background: linear-gradient(145deg, #202329, #121418);
        border: 0;
    }

        .site-menu .site-nav .nav-link {
            color: rgba(255, 255, 255, 0.84);
        }

            .site-menu .site-nav .nav-link:hover,
            .site-menu .site-nav .nav-link.active,
            .site-menu .site-nav .dropdown.show > .nav-link {
                color: #ef6769;
            }

        .site-menu .site-nav .dropdown-menu {
            background: rgba(255, 255, 255, 0.06);
            border: 0;
            box-shadow: none;
        }

        .site-menu .site-nav .dropdown-item {
            color: rgba(255, 255, 255, 0.72);
        }

            .site-menu .site-nav .dropdown-item:hover,
            .site-menu .site-nav .dropdown-item:focus {
                color: #ffffff;
                background: rgba(255, 255, 255, 0.07);
            }
}


.home-blog-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    isolation: isolate;
}

    .home-blog-section::before {
        position: absolute;
        top: -260px;
        right: -230px;
        z-index: -2;
        width: 620px;
        height: 620px;
        content: "";
        background: radial-gradient( circle, rgba(197, 34, 35, 0.07), transparent 67% );
        border-radius: 50%;
        pointer-events: none;
    }

.home-blog-decoration {
    position: absolute;
    top: 70px;
    right: -130px;
    z-index: -1;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(197, 34, 35, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

    .home-blog-decoration::before,
    .home-blog-decoration::after {
        position: absolute;
        content: "";
        border: 1px solid rgba(197, 34, 35, 0.04);
        border-radius: 50%;
    }

    .home-blog-decoration::before {
        inset: 55px;
    }

    .home-blog-decoration::after {
        inset: 110px;
    }

.home-blog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

    .home-blog-heading h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(40px, 3.6vw, 54px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

        .home-blog-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .home-blog-heading > p {
        max-width: 430px;
        margin: 0 0 6px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-blog-card {
    position: relative;
    min-width: 0;
}

.home-blog-card-link {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 510px;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.09);
    border-radius: 23px;
    box-shadow: 0 12px 35px rgba(25, 27, 32, 0.055);
    transition: color 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .home-blog-card-link:hover {
        color: var(--ink);
        border-color: rgba(197, 34, 35, 0.22);
        box-shadow: 0 24px 55px rgba(36, 26, 27, 0.11);
        transform: translateY(-7px);
    }

.home-blog-media {
    position: relative;
    height: 255px;
    flex: 0 0 255px;
    overflow: hidden;
    background: #eae7e4;
}

    .home-blog-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
    }

.home-blog-card-link:hover .home-blog-media img {
    transform: scale(1.055);
}

.home-blog-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(20, 21, 25, 0.38), transparent 55% );
    pointer-events: none;
}

.home-blog-media-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.9);
    background: radial-gradient( circle at 75% 20%, rgba(255, 255, 255, 0.12), transparent 25% ), linear-gradient( 135deg, #26292f, #15171c );
    place-items: center;
}

    .home-blog-media-fallback i {
        font-size: 48px;
    }

.home-blog-index {
    position: absolute;
    right: 17px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    min-width: 42px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #ffffff;
    background: rgba(19, 20, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 650;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-blog-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 25px 24px;
}

.home-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

    .home-blog-meta span {
        overflow: hidden;
        color: var(--red);
        font-size: 11px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.08em;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .home-blog-meta time {
        flex: 0 0 auto;
        color: var(--muted);
        font-size: 11px;
        font-weight: 500;
    }

.home-blog-body h3 {
    margin: 0 0 13px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.home-blog-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-blog-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ink);
    border-top: 1px solid rgba(25, 27, 32, 0.08);
    font-size: 13px;
    font-weight: 650;
}

    .home-blog-more i {
        color: var(--red);
        transition: transform 0.25s ease;
    }

.home-blog-card-link:hover .home-blog-more i {
    transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
    .home-blog-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

        .home-blog-heading > p {
            max-width: 650px;
        }

    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-blog-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .home-blog-heading {
        margin-bottom: 35px;
    }

        .home-blog-heading h2 {
            font-size: clamp(35px, 9vw, 48px);
        }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .home-blog-card-link {
        min-height: 0;
    }

    .home-blog-media {
        height: 245px;
        flex-basis: 245px;
    }
}

@media (max-width: 479.98px) {
    .home-blog-media {
        height: 220px;
        flex-basis: 220px;
    }

    .home-blog-body {
        padding: 21px;
    }

        .home-blog-body h3 {
            font-size: 20px;
        }
}


.corp-hero {
    position: relative;
    overflow: hidden;
    padding: 98px 0 105px;
    color: #ffffff;
    background: radial-gradient(circle at 84% 20%, rgba(197, 34, 35, 0.2), transparent 23%), linear-gradient(125deg, #111318 0%, #15171c 55%, #1d1114 100%);
    isolation: isolate;
}

.corp-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.19;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.corp-hero::before {
    position: absolute;
    top: -420px;
    right: -170px;
    z-index: -1;
    width: 850px;
    height: 850px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.012), 0 0 0 180px rgba(255, 255, 255, 0.007);
}

.corp-hero::after {
    position: absolute;
    bottom: -370px;
    left: 24%;
    z-index: -1;
    width: 620px;
    height: 620px;
    content: "";
    border: 1px solid rgba(197, 34, 35, 0.1);
    border-radius: 50%;
}

.corp-hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.corp-hero-glow-one {
    top: -160px;
    left: -200px;
    width: 570px;
    height: 570px;
    background: radial-gradient( circle, rgba(197, 34, 35, 0.13), transparent 68% );
}

.corp-hero-glow-two {
    right: 13%;
    bottom: -260px;
    width: 540px;
    height: 540px;
    background: radial-gradient( circle, rgba(255, 255, 255, 0.035), transparent 67% );
}

.corp-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 510px;
    align-items: end;
    gap: 80px;
}

.corp-hero-copy {
    max-width: 800px;
}

.corp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 37px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

    .corp-breadcrumb a {
        color: rgba(255, 255, 255, 0.55);
        transition: color 0.2s ease;
    }

        .corp-breadcrumb a:hover {
            color: #ffffff;
        }

    .corp-breadcrumb i {
        font-size: 9px;
    }

.corp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 0.13em;
}

    .corp-eyebrow > i {
        display: block;
        width: 36px;
        height: 1px;
        background: #e34547;
    }

.corp-hero-copy h1 {
    max-width: 780px;
    margin: 0 0 27px;
    color: #ffffff;
    font-size: clamp(58px, 5.7vw, 88px);
    font-weight: 500;
    line-height: 0.99;
    letter-spacing: -0.065em;
}

    .corp-hero-copy h1 em {
        color: rgba(255, 255, 255, 0.42);
        font-style: normal;
        font-weight: 350;
    }

.corp-hero-copy > p {
    max-width: 680px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}

.corp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.corp-primary-button,
.corp-secondary-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 17px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.corp-primary-button {
    color: #ffffff;
    background: linear-gradient(120deg, #d62e30, #aa171b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 32px rgba(124, 9, 15, 0.24);
}

    .corp-primary-button:hover {
        color: #ffffff;
        box-shadow: 0 19px 38px rgba(124, 9, 15, 0.32);
        transform: translateY(-2px);
    }

.corp-secondary-button {
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

    .corp-secondary-button:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.09);
        transform: translateY(-2px);
    }

.corp-hero-facts {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

    .corp-hero-facts article {
        position: relative;
        display: grid;
        min-height: 116px;
        grid-template-columns: 40px 135px 1fr;
        align-items: center;
        gap: 19px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

        .corp-hero-facts article > span {
            color: #eb4b4d;
            font-size: 11px;
            font-weight: 650;
        }

        .corp-hero-facts article > strong {
            color: #ffffff;
            font-size: 26px;
            font-weight: 550;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .corp-hero-facts article > p {
            margin: 0;
            color: rgba(255, 255, 255, 0.47);
            font-size: 13px;
            line-height: 1.6;
        }

.corp-story {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.corp-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 90px;
}

.corp-story-media {
    position: relative;
    min-height: 650px;
}

.corp-story-main-image {
    position: absolute;
    inset: 0 72px 55px 0;
    overflow: hidden;
    background: #e8e5e2;
    border-radius: 28px;
}

    .corp-story-main-image img,
    .corp-story-secondary-image img,
    .corp-image-fallback {
        width: 100%;
        height: 100%;
    }

    .corp-story-main-image img,
    .corp-story-secondary-image img {
        object-fit: cover;
    }

.corp-image-fallback {
    display: grid;
    color: #ffffff;
    background: linear-gradient(145deg, #2b2d33, #17191e);
    place-items: center;
}

    .corp-image-fallback i {
        font-size: 70px;
    }

.corp-story-secondary-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 275px;
    height: 220px;
    padding: 7px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(25, 27, 32, 0.18);
}

    .corp-story-secondary-image img {
        border-radius: 16px;
    }

.corp-story-badge {
    position: absolute;
    top: 36px;
    right: 16px;
    z-index: 3;
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    color: #ffffff;
    background: linear-gradient(130deg, #d12c2e, #9e161a);
    border: 6px solid #ffffff;
    border-radius: 17px;
    box-shadow: 0 15px 38px rgba(146, 16, 21, 0.2);
}

    .corp-story-badge strong {
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .corp-story-badge span {
        color: rgba(255, 255, 255, 0.73);
        font-size: 10px;
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

.corp-story-line {
    position: absolute;
    bottom: 33px;
    left: -22px;
    z-index: 3;
    width: 150px;
    height: 110px;
    border-bottom: 1px solid rgba(197, 34, 35, 0.4);
    border-left: 1px solid rgba(197, 34, 35, 0.4);
    border-radius: 0 0 0 24px;
}

    .corp-story-line i,
    .corp-story-line b {
        position: absolute;
        width: 7px;
        height: 7px;
        background: var(--red);
        border-radius: 50%;
    }

    .corp-story-line i {
        bottom: -4px;
        left: 58px;
    }

    .corp-story-line b {
        top: 44px;
        left: -4px;
    }

.corp-story-copy h2 {
    margin: 0 0 29px;
    color: var(--ink);
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.055em;
}

    .corp-story-copy h2 em {
        color: var(--red);
        font-style: normal;
    }

.corp-rich-text {
    max-height: 520px;
    padding-right: 18px;
    overflow-y: auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 34, 35, 0.35) transparent;
}

    .corp-rich-text p {
        margin: 0 0 18px;
    }

        .corp-rich-text p:last-child {
            margin-bottom: 0;
        }

    .corp-rich-text strong,
    .corp-rich-text b {
        color: var(--ink);
        font-weight: 650;
    }

.corp-principles {
    position: relative;
    padding: 108px 0;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 84% 13%, rgba(197, 34, 35, 0.22), transparent 24%), linear-gradient(125deg, #15171c, #101216 70%, #181014);
    isolation: isolate;
}

    .corp-principles::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        content: "";
        opacity: 0.2;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 82px 82px;
    }

    .corp-principles::after {
        position: absolute;
        top: -480px;
        right: -300px;
        z-index: -1;
        width: 950px;
        height: 950px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.045);
        border-radius: 50%;
        box-shadow: 0 0 0 95px rgba(255, 255, 255, 0.01), 0 0 0 190px rgba(255, 255, 255, 0.006);
    }

.corp-principles-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 58px;
}

    .corp-principles-head h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(42px, 4vw, 56px);
        font-weight: 600;
        line-height: 1.06;
        letter-spacing: -0.05em;
    }

        .corp-principles-head h2 em {
            color: rgba(255, 255, 255, 0.44);
            font-style: normal;
            font-weight: 350;
        }

    .corp-principles-head > p {
        max-width: 470px;
        margin: 0 0 4px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 14px;
        line-height: 1.8;
    }

.corp-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .corp-principles-grid article {
        min-height: 330px;
        padding: 33px 29px 30px;
        transition: background 0.25s ease, transform 0.25s ease;
    }

        .corp-principles-grid article + article {
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .corp-principles-grid article:hover {
            background: rgba(255, 255, 255, 0.045);
            transform: translateY(-5px);
        }

        .corp-principles-grid article > span {
            display: block;
            margin-bottom: 45px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 11px;
            font-weight: 650;
        }

.corp-principle-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
    color: #ffffff;
    background: rgba(197, 34, 35, 0.13);
    border: 1px solid rgba(230, 67, 69, 0.19);
    border-radius: 14px;
    place-items: center;
    font-size: 21px;
}

.corp-principles-grid h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.corp-principles-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.75;
}

.corp-purpose {
    background: #f7f5f3;
}

.corp-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.corp-purpose-card {
    position: relative;
    min-height: 570px;
    padding: 42px;
    overflow: hidden;
    border-radius: 27px;
}

    .corp-purpose-card::after {
        position: absolute;
        right: -150px;
        bottom: -190px;
        width: 470px;
        height: 470px;
        content: "";
        border: 1px solid currentColor;
        border-radius: 50%;
        opacity: 0.045;
        box-shadow: 0 0 0 55px currentColor, 0 0 0 110px currentColor;
        pointer-events: none;
    }

.corp-purpose-card-mission {
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    box-shadow: 0 20px 55px rgba(25, 27, 32, 0.07);
}

.corp-purpose-card-vision {
    color: #ffffff;
    background: radial-gradient(circle at 80% 16%, rgba(197, 34, 35, 0.22), transparent 27%), #15171c;
}

.corp-purpose-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

    .corp-purpose-top > span {
        color: var(--muted);
        font-size: 11px;
        font-weight: 650;
    }

.corp-purpose-card-vision .corp-purpose-top > span {
    color: rgba(255, 255, 255, 0.34);
}

.corp-purpose-icon {
    display: grid;
    width: 54px;
    height: 54px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 15px;
    place-items: center;
    font-size: 21px;
}

.corp-purpose-card-vision .corp-purpose-icon {
    color: #ffffff;
    background: rgba(197, 34, 35, 0.16);
    border: 1px solid rgba(229, 72, 74, 0.18);
}

.corp-purpose-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 15px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.corp-purpose-card h2 {
    position: relative;
    z-index: 2;
    max-width: 510px;
    margin: 0 0 28px;
    color: inherit;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

    .corp-purpose-card h2 em {
        color: var(--red);
        font-style: normal;
    }

.corp-purpose-card-vision h2 em {
    color: rgba(255, 255, 255, 0.46);
    font-weight: 350;
}

.corp-purpose-text {
    position: relative;
    z-index: 2;
    max-height: 260px;
    padding-right: 14px;
    overflow-y: auto;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    scrollbar-width: thin;
}

.corp-purpose-card-vision .corp-purpose-text {
    color: rgba(255, 255, 255, 0.56);
}

.corp-purpose-text p {
    margin: 0 0 16px;
}

    .corp-purpose-text p:last-child {
        margin-bottom: 0;
    }

.corp-purpose-text b,
.corp-purpose-text strong {
    color: inherit;
    font-weight: 650;
}

.corp-process {
    background: #ffffff;
}

.corp-process-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

    .corp-process-heading h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(40px, 3.8vw, 54px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

        .corp-process-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .corp-process-heading > p {
        max-width: 430px;
        margin: 0 0 5px;
        color: var(--text);
        font-size: 14px;
        line-height: 1.8;
    }

.corp-process-list {
    border-top: 1px solid var(--line);
}

    .corp-process-list article {
        display: grid;
        min-height: 160px;
        grid-template-columns: 70px minmax(0, 1fr) 52px;
        align-items: center;
        gap: 25px;
        padding: 26px 7px;
        border-bottom: 1px solid var(--line);
        transition: padding 0.25s ease, background 0.25s ease;
    }

        .corp-process-list article:hover {
            padding-right: 22px;
            padding-left: 22px;
            background: #fff8f7;
        }

        .corp-process-list article > span {
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
        }

    .corp-process-list small {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 650;
        letter-spacing: 0.1em;
    }

    .corp-process-list h3 {
        margin: 0 0 7px;
        color: var(--ink);
        font-size: 21px;
        font-weight: 650;
    }

    .corp-process-list p {
        max-width: 740px;
        margin: 0;
        color: var(--text);
        font-size: 14px;
        line-height: 1.7;
    }

    .corp-process-list article > i {
        display: grid;
        width: 48px;
        height: 48px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 14px;
        place-items: center;
        font-size: 18px;
        transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .corp-process-list article:hover > i {
        color: #ffffff;
        background: var(--red);
        transform: rotate(-4deg);
    }

.corp-cta {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: #ffffff;
    background: radial-gradient(circle at 87% 22%, rgba(197, 34, 35, 0.27), transparent 22%), linear-gradient(125deg, #15171c, #0e1014);
    isolation: isolate;
}

.corp-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.21;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 70px 70px;
}

.corp-cta::after {
    position: absolute;
    top: -410px;
    right: -150px;
    z-index: -1;
    width: 760px;
    height: 760px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.01), 0 0 0 180px rgba(255, 255, 255, 0.006);
}

.corp-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
}

.corp-eyebrow-light {
    color: rgba(255, 255, 255, 0.47);
}

.corp-cta h2 {
    max-width: 750px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(44px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.055em;
}

    .corp-cta h2 em {
        color: rgba(255, 255, 255, 0.44);
        font-style: normal;
        font-weight: 350;
    }

.corp-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 15px;
    line-height: 1.8;
}

.corp-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corp-cta-contact,
.corp-cta-tests {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 17px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.corp-cta-contact {
    color: #ffffff;
    background: linear-gradient(120deg, #d62d2f, #a8171b);
}

    .corp-cta-contact:hover {
        color: #ffffff;
    }

.corp-cta-tests {
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
}

    .corp-cta-tests:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.09);
    }

@media (max-width: 1199.98px) {
    .corp-hero-layout {
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 50px;
    }

    .corp-story-grid {
        gap: 60px;
    }

    .corp-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .corp-principles-grid article:nth-child(3) {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 0;
        }

        .corp-principles-grid article:nth-child(4) {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
}

@media (max-width: 991.98px) {
    .corp-hero {
        padding: 75px 0 85px;
    }

    .corp-hero-layout {
        grid-template-columns: 1fr;
    }

    .corp-hero-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

        .corp-hero-facts article {
            min-height: 145px;
            grid-template-columns: 1fr;
            align-content: center;
            gap: 7px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.13);
        }

            .corp-hero-facts article + article {
                border-left: 1px solid rgba(255, 255, 255, 0.13);
            }

    .corp-story-grid {
        grid-template-columns: 1fr;
    }

    .corp-story-media {
        width: min(100%, 700px);
    }

    .corp-story-copy {
        max-width: 760px;
    }

    .corp-rich-text {
        max-height: none;
        overflow: visible;
    }

    .corp-principles-head,
    .corp-process-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .corp-purpose-grid {
        grid-template-columns: 1fr;
    }

    .corp-purpose-card {
        min-height: 0;
    }

    .corp-purpose-text {
        max-height: none;
        overflow: visible;
    }

    .corp-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 767.98px) {
    .corp-hero-copy h1 {
        font-size: clamp(45px, 11vw, 65px);
    }

    .corp-hero-facts {
        grid-template-columns: 1fr;
    }

        .corp-hero-facts article {
            min-height: 95px;
            grid-template-columns: 38px 115px 1fr;
            padding: 14px 0;
        }

            .corp-hero-facts article + article {
                border-left: 0;
            }

    .corp-story-media {
        min-height: 520px;
    }

    .corp-story-main-image {
        inset: 0 35px 45px 0;
    }

    .corp-story-secondary-image {
        width: 220px;
        height: 175px;
    }

    .corp-story-badge {
        top: 25px;
        right: 0;
    }

    .corp-principles {
        padding: 75px 0;
    }

    .corp-principles-grid {
        grid-template-columns: 1fr;
    }

        .corp-principles-grid article {
            min-height: 270px;
        }

            .corp-principles-grid article + article,
            .corp-principles-grid article:nth-child(3),
            .corp-principles-grid article:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, 0.12);
                border-left: 0;
            }

    .corp-purpose-card {
        padding: 30px;
    }

    .corp-purpose-top {
        margin-bottom: 48px;
    }

    .corp-process-list article {
        grid-template-columns: 42px minmax(0, 1fr) 45px;
        gap: 15px;
    }

    .corp-cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479.98px) {
    .corp-hero {
        padding: 60px 0 70px;
    }

    .corp-breadcrumb {
        margin-bottom: 28px;
    }

    .corp-hero-copy h1 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .corp-hero-copy > p {
        font-size: 15px;
    }

    .corp-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .corp-primary-button,
    .corp-secondary-button {
        width: 100%;
    }

    .corp-hero-facts article {
        grid-template-columns: 34px 100px 1fr;
    }

    .corp-story-media {
        min-height: 430px;
    }

    .corp-story-main-image {
        inset: 0 18px 35px 0;
        border-radius: 22px;
    }

    .corp-story-secondary-image {
        width: 165px;
        height: 125px;
        border-radius: 17px;
    }

        .corp-story-secondary-image img {
            border-radius: 12px;
        }

    .corp-story-badge {
        top: 16px;
        min-width: 150px;
        padding: 13px 14px;
    }

        .corp-story-badge strong {
            font-size: 25px;
        }

    .corp-story-line {
        display: none;
    }

    .corp-purpose-card {
        padding: 24px;
        border-radius: 22px;
    }

    .corp-purpose-top {
        margin-bottom: 38px;
    }

    .corp-process-list article {
        grid-template-columns: 32px 1fr;
    }

        .corp-process-list article > i {
            display: none;
        }

    .corp-cta {
        padding: 70px 0;
    }

        .corp-cta h2 {
            font-size: clamp(36px, 10vw, 48px);
        }

    .corp-cta-contact,
    .corp-cta-tests {
        width: 100%;
    }
}

.corp-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 70px;
    color: #ffffff;
    background: radial-gradient( circle at 84% 22%, rgba(255, 255, 255, 0.08), transparent 23% ), linear-gradient( 118deg, #8b111b 0%, #b81723 47%, #d52633 100% );
    isolation: isolate;
}

    .corp-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.33;
        background-image: linear-gradient( rgba(255, 255, 255, 0.045) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px );
        background-size: 52px 52px;
        pointer-events: none;
    }

    .corp-page-hero::after {
        position: absolute;
        top: -360px;
        right: 4%;
        z-index: -1;
        width: 500px;
        height: 500px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.025), 0 0 0 130px rgba(255, 255, 255, 0.015);
        pointer-events: none;
    }

    .corp-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.corp-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 31px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .corp-page-breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
        transition: color 0.2s ease;
    }

        .corp-page-breadcrumb a:hover {
            color: #ffffff;
        }

    .corp-page-breadcrumb i {
        font-size: 11px;
        opacity: 0.55;
    }

.corp-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.corp-page-hero-content {
    max-width: 760px;
}

.corp-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 0.14em;
}

    .corp-page-eyebrow::before {
        width: 31px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.8);
    }

.corp-page-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(43px, 4.7vw, 67px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.corp-page-hero-content p {
    max-width: 690px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
}

.corp-page-hero-stat {
    position: relative;
    display: flex;
    min-width: 195px;
    min-height: 115px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 20px 26px;
    background: rgba(120, 10, 18, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(88, 6, 12, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .corp-page-hero-stat::before {
        position: absolute;
        top: 13px;
        right: 14px;
        width: 7px;
        height: 7px;
        content: "";
        background: rgba(255, 255, 255, 0.58);
        border-radius: 50%;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07);
    }

    .corp-page-hero-stat strong {
        color: #ffffff;
        font-size: 37px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .corp-page-hero-stat span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 11px;
        font-weight: 650;
        line-height: 1.3;
        letter-spacing: 0.07em;
    }

.corp-page-hero-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.corp-page-hero-orbit-one {
    top: -410px;
    right: -20px;
    width: 650px;
    height: 650px;
}

.corp-page-hero-orbit-two {
    right: -180px;
    bottom: -210px;
    width: 310px;
    height: 310px;
}

@media (max-width: 991.98px) {
    .corp-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .corp-page-hero-stat {
        justify-self: start;
        min-width: 190px;
        min-height: 92px;
    }
}

@media (max-width: 767.98px) {
    .corp-page-hero {
        padding: 44px 0 62px;
    }

    .corp-page-breadcrumb {
        margin-bottom: 24px;
    }

    .corp-page-hero-content h1 {
        font-size: 41px;
    }

    .corp-page-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .corp-page-hero {
        padding: 38px 0 55px;
    }

    .corp-page-hero-content h1 {
        font-size: 34px;
    }

    .corp-page-hero-stat {
        width: 100%;
    }
}


.career-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #ffffff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .career-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.3;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .career-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.01);
    }

    .career-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.career-page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.career-page-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.career-page-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.career-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .career-page-breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

        .career-page-breadcrumb a:hover {
            color: #ffffff;
        }

    .career-page-breadcrumb i {
        font-size: 10px;
        opacity: 0.55;
    }

.career-page-hero-content {
    max-width: 850px;
}

.career-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.14em;
}

    .career-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.82);
    }

.career-page-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.career-intro {
    background: #ffffff;
}

.career-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 90px;
}

.career-intro-copy {
    position: sticky;
    top: 130px;
}

    .career-intro-copy h2,
    .career-section-heading h2,
    .career-form-info h2 {
        margin: 0 0 28px;
        color: var(--ink);
        font-size: clamp(40px, 3.8vw, 55px);
        font-weight: 700;
        line-height: 1.07;
        letter-spacing: -0.052em;
    }

        .career-intro-copy h2 em,
        .career-section-heading h2 em,
        .career-form-info h2 em {
            color: var(--red);
            font-style: normal;
        }

    .career-intro-copy > p {
        max-width: 620px;
        margin: 0 0 17px;
        color: var(--text);
        font-size: 16px;
        line-height: 1.85;
    }

.career-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
    padding-bottom: 6px;
    color: var(--ink);
    border-bottom: 1px solid rgba(25, 27, 32, 0.25);
    font-size: 14px;
    font-weight: 650;
}

    .career-scroll-link i {
        color: var(--red);
        transition: transform 0.2s ease;
    }

    .career-scroll-link:hover {
        color: var(--red);
    }

        .career-scroll-link:hover i {
            transform: translateY(3px);
        }

.career-values {
    border-top: 1px solid var(--line);
}

    .career-values article {
        display: grid;
        min-height: 135px;
        grid-template-columns: 38px 54px minmax(0, 1fr);
        align-items: center;
        gap: 20px;
        padding: 24px 5px;
        border-bottom: 1px solid var(--line);
        transition: padding 0.25s ease, background 0.25s ease;
    }

        .career-values article:hover {
            padding-right: 17px;
            padding-left: 17px;
            background: #fff8f7;
        }

        .career-values article > span {
            color: var(--red);
            font-size: 11px;
            font-weight: 700;
        }

.career-value-icon {
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 14px;
    place-items: center;
    font-size: 20px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.career-values article:hover .career-value-icon {
    color: #ffffff;
    background: var(--red);
    transform: rotate(-4deg);
}

.career-values h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 650;
}

.career-values p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.career-openings {
    position: relative;
    overflow: hidden;
    background: #f7f5f3;
    isolation: isolate;
}

.career-openings-decoration {
    position: absolute;
    top: -260px;
    right: -220px;
    z-index: -1;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(197, 34, 35, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(197, 34, 35, 0.02), 0 0 0 160px rgba(197, 34, 35, 0.01);
}

.career-section-heading,
.career-process-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

    .career-section-heading > p,
    .career-process-head > p {
        max-width: 450px;
        margin: 0 0 6px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

.career-position-list {
    border-top: 1px solid #dcd8d5;
}

.career-position-item {
    position: relative;
    display: grid;
    min-height: 120px;
    grid-template-columns: 60px minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 25px;
    padding: 22px 8px;
    color: var(--ink);
    border-bottom: 1px solid #dcd8d5;
    transition: padding 0.27s ease, color 0.2s ease, background 0.27s ease;
}

    .career-position-item:hover {
        padding-right: 23px;
        padding-left: 23px;
        color: var(--ink);
        background: #ffffff;
    }

.career-position-index {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

.career-position-main small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.1em;
}

.career-position-main h3 {
    margin: 0;
    color: var(--ink);
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.career-position-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
}

    .career-position-location i {
        color: var(--red);
    }

.career-position-arrow {
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 14px;
    place-items: center;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.career-position-item:hover .career-position-arrow {
    color: #ffffff;
    background: var(--red);
    transform: rotate(-5deg);
}

.career-empty-position {
    max-width: 680px;
    margin: 0 auto;
    padding: 55px 35px;
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 22px;
    text-align: center;
}

    .career-empty-position > div {
        display: grid;
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 16px;
        place-items: center;
        font-size: 23px;
    }

    .career-empty-position h3 {
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 23px;
        font-weight: 650;
    }

    .career-empty-position p {
        max-width: 470px;
        margin: 0 auto;
        color: var(--text);
        font-size: 14px;
        line-height: 1.7;
    }

.career-process {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 85% 12%, rgba(197, 34, 35, 0.21), transparent 23%), linear-gradient(125deg, #16181d, #101216 70%, #181014);
    isolation: isolate;
}

    .career-process::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        content: "";
        opacity: 0.18;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 78px 78px;
    }

.career-process-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 3.8vw, 55px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

    .career-process-head h2 em {
        color: rgba(255, 255, 255, 0.44);
        font-style: normal;
        font-weight: 350;
    }

.career-process-head > p {
    color: rgba(255, 255, 255, 0.53);
}

.career-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .career-process-grid article {
        min-height: 315px;
        padding: 32px 28px;
    }

        .career-process-grid article + article {
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .career-process-grid article > span {
            display: block;
            margin-bottom: 46px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 11px;
            font-weight: 650;
        }

        .career-process-grid article > i {
            display: block;
            margin-bottom: 25px;
            color: #ffffff;
            font-size: 35px;
        }

    .career-process-grid h3 {
        margin: 0 0 11px;
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
    }

    .career-process-grid p {
        margin: 0;
        color: rgba(255, 255, 255, 0.52);
        font-size: 14px;
        line-height: 1.75;
    }

.career-form-section {
    background: #ffffff;
}

.career-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 75px;
}

.career-form-info {
    position: sticky;
    top: 130px;
}

    .career-form-info > p {
        max-width: 500px;
        margin: 0;
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

.career-form-notes {
    display: grid;
    gap: 13px;
    margin-top: 35px;
}

    .career-form-notes > div {
        display: flex;
        align-items: flex-start;
        gap: 13px;
        padding: 16px;
        background: #f8f6f4;
        border-radius: 14px;
    }

    .career-form-notes i {
        display: grid;
        width: 39px;
        height: 39px;
        flex: 0 0 39px;
        color: var(--red);
        background: #ffffff;
        border-radius: 11px;
        place-items: center;
    }

    .career-form-notes span {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.55;
    }

    .career-form-notes strong {
        display: block;
        margin-bottom: 2px;
        color: var(--ink);
        font-size: 13px;
        font-weight: 650;
    }

.career-form-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.09);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(25, 27, 32, 0.08);
}

.career-form-card-head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

    .career-form-card-head > span {
        display: block;
        margin-bottom: 6px;
        color: var(--red);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.11em;
    }

    .career-form-card-head h3 {
        margin: 0 0 7px;
        color: var(--ink);
        font-size: 25px;
        font-weight: 650;
    }

    .career-form-card-head p {
        margin: 0;
        color: var(--muted);
        font-size: 12px;
    }

        .career-form-card-head p strong,
        .career-field label strong {
            color: var(--red);
        }

.career-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
}

.career-field {
    min-width: 0;
}

.career-field-full {
    grid-column: 1 / -1;
}

.career-field label {
    display: block;
    margin-bottom: 7px;
    color: #4d5056;
    font-size: 12px;
    font-weight: 600;
}

.career-input,
.career-select,
.career-textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 11px 14px;
    color: var(--ink);
    background: #faf9f8;
    border: 1px solid #e2dfdc;
    border-radius: 11px;
    outline: 0;
    font: inherit;
    font-size: 14px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.career-textarea {
    min-height: 110px;
    resize: vertical;
}

    .career-input:focus,
    .career-select:focus,
    .career-textarea:focus {
        background: #ffffff;
        border-color: rgba(197, 34, 35, 0.44);
        box-shadow: 0 0 0 4px rgba(197, 34, 35, 0.06);
    }

.career-file-field {
    position: relative;
    padding: 17px;
    background: #faf9f8;
    border: 1px dashed #d7d2cf;
    border-radius: 13px;
}

.career-file-input {
    display: block;
    width: 100%;
    color: var(--ink);
    font-size: 13px;
}

    .career-file-input::file-selector-button {
        margin-right: 12px;
        padding: 9px 13px;
        color: var(--red);
        background: var(--red-soft);
        border: 0;
        border-radius: 9px;
        font: inherit;
        font-size: 12px;
        font-weight: 650;
        cursor: pointer;
    }

.career-file-field > span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
}

.career-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 27px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

    .career-form-footer p {
        max-width: 430px;
        margin: 0;
        color: var(--muted);
        font-size: 11px;
        line-height: 1.6;
    }

.career-submit {
    min-height: 50px;
    padding: 11px 20px;
    color: #ffffff;
    background: linear-gradient(120deg, #d42d2f, #a9171b);
    border: 0;
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(168, 23, 27, 0.2);
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

    .career-submit:hover {
        box-shadow: 0 16px 32px rgba(168, 23, 27, 0.27);
        transform: translateY(-2px);
    }

.career-form-message {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.6;
}

    .career-form-message.is-success {
        color: #176c42;
        background: #ecf8f1;
        border: 1px solid #ccebd9;
    }

    .career-form-message.is-error {
        color: #a61b20;
        background: #fff0f0;
        border: 1px solid #f1cdcf;
    }

.career-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1199.98px) {
    .career-intro-grid,
    .career-form-layout {
        gap: 50px;
    }

    .career-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .career-process-grid article:nth-child(3) {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 0;
        }

        .career-process-grid article:nth-child(4) {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
}

@media (max-width: 991.98px) {
    .career-intro-grid,
    .career-form-layout {
        grid-template-columns: 1fr;
    }

    .career-intro-copy,
    .career-form-info {
        position: static;
    }

    .career-section-heading,
    .career-process-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }
}

@media (max-width: 767.98px) {
    .career-page-hero {
        padding: 44px 0 60px;
    }

    .career-page-hero-content h1 {
        font-size: 41px;
    }

    .career-position-item {
        min-height: 110px;
        grid-template-columns: 35px minmax(0, 1fr) 44px;
        gap: 15px;
    }

    .career-position-location {
        display: none;
    }

    .career-process-grid {
        grid-template-columns: 1fr;
    }

        .career-process-grid article {
            min-height: 250px;
        }

            .career-process-grid article + article,
            .career-process-grid article:nth-child(3),
            .career-process-grid article:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, 0.12);
                border-left: 0;
            }

    .career-form-card {
        padding: 25px;
    }

    .career-form-grid {
        grid-template-columns: 1fr;
    }

    .career-field-full {
        grid-column: auto;
    }

    .career-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .career-submit {
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .career-page-hero {
        padding: 38px 0 52px;
    }

    .career-page-breadcrumb {
        margin-bottom: 25px;
    }

    .career-page-hero-content h1 {
        font-size: 34px;
    }

    .career-intro-copy h2,
    .career-section-heading h2,
    .career-form-info h2,
    .career-process-head h2 {
        font-size: 36px;
    }

    .career-position-main h3 {
        font-size: 19px;
    }

    .career-form-card {
        padding: 21px;
        border-radius: 20px;
    }
}

.services-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #ffffff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .services-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.3;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .services-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.01);
    }

    .services-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.services-page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.services-page-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.services-page-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.services-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .services-page-breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

        .services-page-breadcrumb a:hover {
            color: #ffffff;
        }

    .services-page-breadcrumb i {
        font-size: 10px;
        opacity: 0.55;
    }

.services-page-hero-content {
    max-width: 850px;
}

.services-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.14em;
}

    .services-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.82);
    }

.services-page-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.services-intro {
    background: #ffffff;
}

.services-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: end;
    gap: 80px;
}

.services-intro-heading h2 {
    max-width: 750px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.055em;
}

    .services-intro-heading h2 em {
        color: var(--red);
        font-style: normal;
    }

.services-intro-copy p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
}

    .services-intro-copy p + p {
        margin-top: 14px;
    }

.services-category-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 58px;
    overflow: hidden;
    background: rgba(25, 27, 32, 0.08);
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 20px;
}

    .services-category-nav > a {
        position: relative;
        display: grid;
        min-height: 115px;
        grid-template-columns: 30px minmax(0, 1fr) auto 35px;
        align-items: center;
        gap: 13px;
        padding: 19px 21px;
        color: var(--ink);
        background: #ffffff;
        transition: color 0.25s ease, background 0.25s ease;
    }

        .services-category-nav > a:hover {
            color: var(--ink);
            background: #fff8f7;
        }

        .services-category-nav > a > span {
            color: var(--red);
            font-size: 10px;
            font-weight: 700;
        }

        .services-category-nav > a > strong {
            font-size: 14px;
            font-weight: 650;
            line-height: 1.4;
        }

        .services-category-nav > a > small {
            color: var(--muted);
            font-size: 10px;
            white-space: nowrap;
        }

        .services-category-nav > a > i {
            display: grid;
            width: 34px;
            height: 34px;
            color: var(--red);
            background: var(--red-soft);
            border-radius: 10px;
            place-items: center;
            font-size: 13px;
            transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .services-category-nav > a:hover > i {
            color: #ffffff;
            background: var(--red);
            transform: rotate(-4deg);
        }

.services-catalog {
    background: #f7f5f3;
}

.services-category-block {
    padding: 105px 0;
}

    .services-category-block + .services-category-block {
        border-top: 1px solid rgba(25, 27, 32, 0.08);
    }

.services-category-heading {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: end;
    gap: 25px;
    margin-bottom: 42px;
}

.services-category-heading-number {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

.services-category-heading > div:nth-child(2) > span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.11em;
}

.services-category-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3.2vw, 47px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.services-category-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.services-page-card {
    min-width: 0;
}

.services-page-card-link {
    display: flex;
    height: 100%;
    min-height: 520px;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(25, 27, 32, 0.045);
    transition: color 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .services-page-card-link:hover {
        color: var(--ink);
        border-color: rgba(197, 34, 35, 0.22);
        box-shadow: 0 24px 52px rgba(48, 28, 30, 0.1);
        transform: translateY(-7px);
    }

.services-page-card-media {
    position: relative;
    height: 270px;
    flex: 0 0 270px;
    overflow: hidden;
    background: #e9e6e3;
}

    .services-page-card-media img,
    .services-page-card-fallback {
        width: 100%;
        height: 100%;
    }

    .services-page-card-media img {
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
    }

.services-page-card-link:hover .services-page-card-media img {
    transform: scale(1.055);
}

.services-page-card-fallback {
    display: grid;
    color: #ffffff;
    background: linear-gradient(145deg, #d54244, #941519);
    place-items: center;
}

    .services-page-card-fallback i {
        font-size: 50px;
    }

.services-page-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(20, 21, 25, 0.42), transparent 55% );
    pointer-events: none;
}

.services-page-card-number {
    position: absolute;
    right: 16px;
    bottom: 15px;
    z-index: 2;
    display: inline-flex;
    min-width: 42px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #ffffff;
    background: rgba(20, 21, 25, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 650;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-page-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.services-page-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-page-card-body h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.services-page-card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.services-page-card-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ink);
    border-top: 1px solid rgba(25, 27, 32, 0.08);
    font-size: 13px;
    font-weight: 650;
}

    .services-page-card-more i {
        color: var(--red);
        transition: transform 0.25s ease;
    }

.services-page-card-link:hover .services-page-card-more i {
    transform: translate(3px, -3px);
}

.services-empty-section {
    background: #f7f5f3;
}

.services-empty {
    max-width: 670px;
    margin: 0 auto;
    padding: 55px 30px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 23px;
    text-align: center;
}

    .services-empty > div {
        display: grid;
        width: 62px;
        height: 62px;
        margin: 0 auto 18px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 17px;
        place-items: center;
        font-size: 23px;
    }

    .services-empty h2 {
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 25px;
        font-weight: 650;
    }

    .services-empty p {
        margin: 0;
        font-size: 14px;
    }

.services-page-cta {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: #ffffff;
    background: radial-gradient(circle at 87% 20%, rgba(197, 34, 35, 0.26), transparent 23%), linear-gradient(125deg, #15171c, #0e1014);
    isolation: isolate;
}

.services-page-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.services-page-cta::after {
    position: absolute;
    top: -410px;
    right: -160px;
    z-index: -1;
    width: 760px;
    height: 760px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.01), 0 0 0 180px rgba(255, 255, 255, 0.006);
}

.services-page-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
}

.services-page-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.13em;
}

    .services-page-cta-eyebrow i {
        width: 34px;
        height: 1px;
        background: #e34547;
    }

.services-page-cta h2 {
    max-width: 780px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(43px, 4.4vw, 63px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.055em;
}

    .services-page-cta h2 em {
        color: rgba(255, 255, 255, 0.44);
        font-style: normal;
        font-weight: 350;
    }

.services-page-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 15px;
    line-height: 1.8;
}

.services-page-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-page-cta-primary,
.services-page-cta-secondary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 17px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.services-page-cta-primary {
    color: #ffffff;
    background: linear-gradient(120deg, #d62d2f, #a8171b);
}

    .services-page-cta-primary:hover {
        color: #ffffff;
    }

.services-page-cta-secondary {
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

    .services-page-cta-secondary:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.09);
    }

@media (max-width: 1199.98px) {
    .services-intro-layout {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 55px;
    }

    .services-category-nav,
    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .services-intro-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-intro-copy {
        max-width: 700px;
    }

    .services-category-heading {
        grid-template-columns: 50px minmax(0, 1fr);
    }

        .services-category-heading > p {
            grid-column: 2;
        }

    .services-page-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 767.98px) {
    .services-page-hero {
        padding: 44px 0 60px;
    }

    .services-page-hero-content h1 {
        font-size: 41px;
    }

    .services-category-nav,
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .services-category-block {
        padding: 75px 0;
    }

    .services-page-card-link {
        min-height: 0;
    }

    .services-page-card-media {
        height: 250px;
        flex-basis: 250px;
    }

    .services-page-cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479.98px) {
    .services-page-hero {
        padding: 38px 0 52px;
    }

    .services-page-breadcrumb {
        margin-bottom: 25px;
    }

    .services-page-hero-content h1 {
        font-size: 34px;
    }

    .services-intro-heading h2 {
        font-size: 36px;
    }

    .services-category-nav > a {
        grid-template-columns: 25px minmax(0, 1fr) 33px;
    }

        .services-category-nav > a > small {
            display: none;
        }

    .services-page-card-media {
        height: 220px;
        flex-basis: 220px;
    }

    .services-page-card-body {
        padding: 21px;
    }

    .services-page-cta {
        padding: 70px 0;
    }

        .services-page-cta h2 {
            font-size: 36px;
        }

    .services-page-cta-primary,
    .services-page-cta-secondary {
        width: 100%;
    }
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #ffffff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .service-detail-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.3;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .service-detail-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.01);
    }

    .service-detail-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.service-detail-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.service-detail-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.service-detail-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .service-detail-breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

        .service-detail-breadcrumb a:hover {
            color: #ffffff;
        }

    .service-detail-breadcrumb i {
        font-size: 10px;
        opacity: 0.55;
    }

    .service-detail-breadcrumb span {
        overflow: hidden;
        max-width: 420px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.service-detail-hero-content {
    max-width: 960px;
}

.service-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.14em;
}

    .service-detail-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.82);
    }

.service-detail-hero-content h1 {
    max-width: 1000px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.service-detail-main {
    background: #ffffff;
}

.service-detail-cover {
    position: relative;
    height: clamp(420px, 48vw, 650px);
    margin-bottom: 72px;
    overflow: hidden;
    background: #ece9e6;
    border-radius: 27px;
}

    .service-detail-cover > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-detail-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(13, 14, 17, 0.55), transparent 45% );
    pointer-events: none;
}

.service-detail-cover-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    max-width: calc(100% - 56px);
    flex-direction: column;
    gap: 5px;
    padding: 15px 18px;
    color: #ffffff;
    background: rgba(18, 19, 23, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .service-detail-cover-badge span {
        color: rgba(255, 255, 255, 0.58);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    .service-detail-cover-badge strong {
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
    }

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 80px;
}

.service-detail-content {
    min-width: 0;
}

.service-detail-heading {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--line);
}

.service-detail-section-number {
    padding-top: 7px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.service-detail-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.service-detail-editor {
    color: #555960;
    font-size: 15px;
    line-height: 1.9;
}

    .service-detail-editor > *:first-child {
        margin-top: 0;
    }

    .service-detail-editor > *:last-child {
        margin-bottom: 0;
    }

    .service-detail-editor p {
        margin: 0 0 21px;
    }

    .service-detail-editor h2,
    .service-detail-editor h3,
    .service-detail-editor h4,
    .service-detail-editor h5 {
        margin: 38px 0 15px;
        color: var(--ink);
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -0.025em;
    }

    .service-detail-editor h2 {
        font-size: 29px;
    }

    .service-detail-editor h3 {
        font-size: 24px;
    }

    .service-detail-editor h4 {
        font-size: 20px;
    }

    .service-detail-editor strong,
    .service-detail-editor b {
        color: #292c31;
        font-weight: 700;
    }

    .service-detail-editor ul,
    .service-detail-editor ol {
        margin: 20px 0 25px;
        padding-left: 23px;
    }

    .service-detail-editor li {
        margin-bottom: 9px;
    }

    .service-detail-editor ul li::marker {
        color: var(--red);
    }

    .service-detail-editor a {
        color: var(--red);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .service-detail-editor img {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 16px;
    }

    .service-detail-editor table {
        width: 100%;
        margin: 25px 0;
        border-collapse: collapse;
    }

        .service-detail-editor table th,
        .service-detail-editor table td {
            padding: 12px 14px;
            border: 1px solid var(--line);
            vertical-align: top;
        }

        .service-detail-editor table th {
            color: var(--ink);
            background: #f7f5f3;
        }

.service-detail-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.service-detail-info-card {
    padding: 28px;
    background: #f8f6f4;
    border: 1px solid rgba(25, 27, 32, 0.07);
    border-radius: 20px;
}

.service-detail-info-label {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.service-detail-info-card > h3 {
    margin: 0 0 25px;
    padding-bottom: 22px;
    color: var(--ink);
    border-bottom: 1px solid rgba(25, 27, 32, 0.09);
    font-size: 22px;
    font-weight: 650;
    line-height: 1.35;
}

.service-detail-info-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

    .service-detail-info-row + .service-detail-info-row {
        margin-top: 18px;
    }

.service-detail-info-icon {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    color: var(--red);
    background: #ffffff;
    border-radius: 12px;
    place-items: center;
    font-size: 17px;
}

.service-detail-info-row > div:last-child {
    min-width: 0;
}

.service-detail-info-row span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

.service-detail-info-row strong {
    display: block;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
}

.service-detail-contact-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    color: #ffffff;
    background: radial-gradient(circle at 90% 10%, rgba(197, 34, 35, 0.32), transparent 32%), #15171c;
    border-radius: 20px;
}

    .service-detail-contact-card::after {
        position: absolute;
        right: -90px;
        bottom: -120px;
        width: 230px;
        height: 230px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 50%;
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.014), 0 0 0 70px rgba(255, 255, 255, 0.008);
    }

.service-detail-contact-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: #ffffff;
    background: rgba(197, 34, 35, 0.2);
    border: 1px solid rgba(224, 68, 70, 0.25);
    border-radius: 14px;
    place-items: center;
    font-size: 20px;
}

.service-detail-contact-card > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.service-detail-contact-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}

.service-detail-contact-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 13px;
    line-height: 1.7;
}

.service-detail-contact-card > a {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    color: #ffffff;
    background: var(--red);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
}

    .service-detail-contact-card > a:hover {
        color: #ffffff;
    }

    .service-detail-contact-card > a i {
        transition: transform 0.22s ease;
    }

    .service-detail-contact-card > a:hover i {
        transform: translate(3px, -3px);
    }

.service-detail-gallery {
    background: #f7f5f3;
}

.service-detail-gallery-heading,
.service-detail-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 43px;
}

    .service-detail-gallery-heading h2,
    .service-detail-related-heading h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(40px, 3.8vw, 55px);
        font-weight: 700;
        line-height: 1.06;
        letter-spacing: -0.05em;
    }

        .service-detail-gallery-heading h2 em,
        .service-detail-related-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

.service-detail-gallery-count {
    padding-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
}

.service-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-detail-gallery-item {
    position: relative;
    display: block;
    height: 390px;
    overflow: hidden;
    background: #e9e6e3;
    border-radius: 20px;
}

    .service-detail-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .service-detail-gallery-item:hover img {
        transform: scale(1.045);
    }

    .service-detail-gallery-item > span {
        position: absolute;
        right: 17px;
        bottom: 17px;
        display: grid;
        width: 45px;
        height: 45px;
        color: #ffffff;
        background: rgba(16, 17, 20, 0.64);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        place-items: center;
    }

.service-detail-related {
    background: #ffffff;
}

.service-detail-related-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    color: var(--ink);
    border-bottom: 1px solid rgba(25, 27, 32, 0.23);
    font-size: 13px;
    font-weight: 650;
}

    .service-detail-related-heading > a i {
        color: var(--red);
        transition: transform 0.22s ease;
    }

    .service-detail-related-heading > a:hover {
        color: var(--red);
    }

        .service-detail-related-heading > a:hover i {
            transform: translateX(3px);
        }

.service-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 21px;
}

.service-detail-related-card > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 21px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .service-detail-related-card > a:hover {
        color: var(--ink);
        border-color: rgba(197, 34, 35, 0.22);
        box-shadow: 0 20px 45px rgba(25, 27, 32, 0.09);
        transform: translateY(-6px);
    }

.service-detail-related-media {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #eae7e4;
}

    .service-detail-related-media img,
    .service-detail-related-fallback {
        width: 100%;
        height: 100%;
    }

    .service-detail-related-media img {
        object-fit: cover;
        transition: transform 0.55s ease;
    }

.service-detail-related-card > a:hover img {
    transform: scale(1.05);
}

.service-detail-related-fallback {
    display: grid;
    color: #ffffff;
    background: linear-gradient(145deg, #cb292c, #8f1318);
    place-items: center;
    font-size: 42px;
}

.service-detail-related-index {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    min-width: 39px;
    height: 32px;
    padding: 0 9px;
    color: #ffffff;
    background: rgba(16, 17, 20, 0.65);
    border-radius: 9px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    place-items: center;
    font-size: 10px;
    font-weight: 650;
}

.service-detail-related-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

    .service-detail-related-body > span {
        display: block;
        margin-bottom: 8px;
        color: var(--red);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .service-detail-related-body h3 {
        margin: 0 0 22px;
        color: var(--ink);
        font-size: 20px;
        font-weight: 650;
        line-height: 1.35;
    }

    .service-detail-related-body > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: auto;
        padding-top: 17px;
        color: var(--ink);
        border-top: 1px solid var(--line);
        font-size: 12px;
        font-weight: 650;
    }

        .service-detail-related-body > div i {
            color: var(--red);
        }

.service-detail-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    color: #ffffff;
    background: radial-gradient(circle at 87% 22%, rgba(197, 34, 35, 0.27), transparent 23%), linear-gradient(125deg, #15171c, #0e1014);
    isolation: isolate;
}

.service-detail-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.service-detail-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
}

.service-detail-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.12em;
}

    .service-detail-cta-label i {
        width: 34px;
        height: 1px;
        background: #e34547;
    }

.service-detail-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.3vw, 61px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.052em;
}

    .service-detail-cta h2 em {
        color: rgba(255, 255, 255, 0.43);
        font-style: normal;
        font-weight: 350;
    }

.service-detail-cta-inner > a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 18px;
    color: #ffffff;
    background: var(--red);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 650;
}

    .service-detail-cta-inner > a:hover {
        color: #ffffff;
    }

    .service-detail-cta-inner > a i {
        transition: transform 0.2s ease;
    }

    .service-detail-cta-inner > a:hover i {
        transform: translate(3px, -3px);
    }

.service-detail-not-found {
    padding: 120px 0;
    background: #f7f5f3;
}

.service-detail-not-found-inner {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

    .service-detail-not-found-inner > div {
        display: grid;
        width: 67px;
        height: 67px;
        margin: 0 auto 20px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 18px;
        place-items: center;
        font-size: 26px;
    }

    .service-detail-not-found-inner > span {
        display: block;
        margin-bottom: 6px;
        color: var(--red);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
    }

.service-detail-not-found h1 {
    margin: 0 0 13px;
    color: var(--ink);
    font-size: 43px;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.service-detail-not-found p {
    margin: 0 0 25px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.service-detail-not-found a {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    color: #ffffff;
    background: var(--red);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
}

    .service-detail-not-found a:hover {
        color: #ffffff;
    }

@media (max-width: 1199.98px) {
    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 50px;
    }
}

@media (max-width: 991.98px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 767.98px) {
    .service-detail-hero {
        padding: 44px 0 60px;
    }

    .service-detail-hero-content h1 {
        font-size: 41px;
    }

    .service-detail-cover {
        height: 390px;
        margin-bottom: 55px;
        border-radius: 21px;
    }

    .service-detail-layout {
        gap: 55px;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .service-detail-gallery-grid,
    .service-detail-related-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-gallery-item {
        height: 320px;
    }

    .service-detail-gallery-heading,
    .service-detail-related-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 479.98px) {
    .service-detail-hero {
        padding: 38px 0 52px;
    }

    .service-detail-breadcrumb {
        margin-bottom: 25px;
    }

        .service-detail-breadcrumb span {
            max-width: 180px;
        }

    .service-detail-hero-content h1 {
        font-size: 34px;
    }

    .service-detail-cover {
        height: 285px;
        margin-bottom: 45px;
        border-radius: 17px;
    }

    .service-detail-cover-badge {
        right: 15px;
        bottom: 15px;
        left: 15px;
        max-width: none;
    }

    .service-detail-heading {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 11px;
    }

        .service-detail-heading h2 {
            font-size: 31px;
        }

    .service-detail-editor {
        font-size: 14px;
    }

    .service-detail-info-card,
    .service-detail-contact-card {
        padding: 23px;
    }

    .service-detail-gallery-item {
        height: 250px;
    }

    .service-detail-cta {
        padding: 70px 0;
    }

        .service-detail-cta h2 {
            font-size: 35px;
        }

    .service-detail-cta-inner > a {
        width: 100%;
    }
}

.media-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #ffffff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .media-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: 0.3;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .media-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.01);
    }

    .media-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.media-page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.media-page-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.media-page-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.media-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

    .media-page-breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

        .media-page-breadcrumb a:hover {
            color: #ffffff;
        }

    .media-page-breadcrumb i {
        font-size: 10px;
        opacity: 0.55;
    }

.media-page-hero-content {
    max-width: 850px;
}

.media-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.14em;
}

    .media-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, 0.82);
    }

.media-page-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.media-intro {
    background: #ffffff;
}

.media-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    align-items: end;
    gap: 80px;
}

.media-intro-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.055em;
}

    .media-intro-heading h2 em {
        color: var(--red);
        font-style: normal;
    }

.media-intro-content p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
}

    .media-intro-content p + p {
        margin-top: 14px;
    }

.media-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

    .media-navigation > a {
        position: relative;
        display: grid;
        min-height: 165px;
        grid-template-columns: 29px 54px minmax(0, 1fr) 38px;
        align-items: center;
        gap: 17px;
        padding: 25px;
        color: var(--ink);
        transition: background 0.25s ease, padding 0.25s ease;
    }

        .media-navigation > a + a {
            border-left: 1px solid var(--line);
        }

        .media-navigation > a:hover {
            padding-right: 30px;
            padding-left: 30px;
            color: var(--ink);
            background: #fff8f7;
        }

.media-navigation-number {
    align-self: start;
    padding-top: 5px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.media-navigation-icon {
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 14px;
    place-items: center;
    font-size: 20px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.media-navigation > a:hover .media-navigation-icon {
    color: #ffffff;
    background: var(--red);
    transform: rotate(-4deg);
}

.media-navigation-content {
    min-width: 0;
}

    .media-navigation-content small {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    .media-navigation-content strong {
        display: block;
        margin-bottom: 4px;
        color: var(--ink);
        font-size: 20px;
        font-weight: 650;
    }

    .media-navigation-content > span {
        color: var(--muted);
        font-size: 12px;
    }

.media-navigation-arrow {
    color: var(--red);
    font-size: 17px;
    transition: transform 0.25s ease;
}

.media-navigation > a:hover .media-navigation-arrow {
    transform: translate(3px, 3px);
}

.media-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

    .media-section-heading h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(40px, 3.8vw, 55px);
        font-weight: 700;
        line-height: 1.06;
        letter-spacing: -0.05em;
    }

        .media-section-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

.media-section-index {
    display: block;
    padding-bottom: 5px;
    color: rgba(25, 27, 32, 0.24);
    font-size: 13px;
    font-weight: 700;
}

.media-blog-section {
    background: #f7f5f3;
}

.media-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.media-blog-card {
    min-width: 0;
}

.media-blog-card-link {
    display: flex;
    height: 100%;
    min-height: 525px;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .media-blog-card-link:hover {
        color: var(--ink);
        border-color: rgba(197, 34, 35, 0.2);
        box-shadow: 0 24px 55px rgba(36, 24, 26, 0.09);
        transform: translateY(-6px);
    }

.media-blog-card-media {
    position: relative;
    height: 270px;
    flex: 0 0 270px;
    overflow: hidden;
    background: #e9e6e3;
}

    .media-blog-card-media img,
    .media-blog-fallback {
        width: 100%;
        height: 100%;
    }

    .media-blog-card-media img {
        object-fit: cover;
        transition: transform 0.65s ease;
    }

.media-blog-card-link:hover .media-blog-card-media img {
    transform: scale(1.05);
}

.media-blog-fallback {
    display: grid;
    color: #ffffff;
    background: radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.09), transparent 28%), linear-gradient(145deg, #ca292c, #911419);
    place-items: center;
}

    .media-blog-fallback i {
        font-size: 48px;
    }

.media-blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(15, 16, 20, 0.46), transparent 52% );
}

.media-blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    padding: 8px 11px;
    overflow: hidden;
    color: #ffffff;
    background: rgba(16, 17, 20, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.media-blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.media-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 11px;
}

    .media-blog-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .media-blog-meta i {
        color: var(--red);
    }

.media-blog-card-content h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.media-blog-card-content p {
    display: -webkit-box;
    margin: 0 0 22px;
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.media-blog-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 650;
}

    .media-blog-more i {
        color: var(--red);
        transition: transform 0.25s ease;
    }

.media-blog-card-link:hover .media-blog-more i {
    transform: translate(3px, -3px);
}

.media-photo-section {
    background: #ffffff;
}

.media-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 17px;
}

.media-photo-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9e6e3;
    border-radius: 18px;
}

    .media-photo-item:nth-child(1),
    .media-photo-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .media-photo-item:nth-child(4) {
        grid-column: span 2;
    }

    .media-photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
    }

    .media-photo-item:hover img {
        transform: scale(1.055);
    }

.media-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(13, 14, 17, 0.44), transparent 48% );
    opacity: 0.65;
    transition: opacity 0.25s ease;
}

.media-photo-item:hover .media-photo-overlay {
    opacity: 1;
}

.media-photo-number {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 650;
}

.media-photo-open {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: grid;
    width: 43px;
    height: 43px;
    color: #ffffff;
    background: rgba(16, 17, 20, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    place-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.media-photo-item:hover .media-photo-open {
    background: var(--red);
    transform: scale(1.05);
}

.media-video-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 87% 12%, rgba(197, 34, 35, 0.2), transparent 23%), linear-gradient(125deg, #15171c, #101216 72%, #181014);
    isolation: isolate;
}

    .media-video-section::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        content: "";
        opacity: 0.18;
        background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 78px 78px;
    }

.media-section-heading-light h2 {
    color: #ffffff;
}

    .media-section-heading-light h2 em {
        color: rgba(255, 255, 255, 0.44);
        font-weight: 350;
    }

.media-section-heading-light .media-section-index {
    color: rgba(255, 255, 255, 0.25);
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.media-video-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 21px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .media-video-card:hover {
        background: rgba(255, 255, 255, 0.065);
        border-color: rgba(255, 255, 255, 0.17);
        transform: translateY(-5px);
    }

.media-video-player {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #090a0c;
}

    .media-video-player iframe,
    .media-video-player video,
    .media-video-fallback {
        width: 100%;
        height: 100%;
    }

    .media-video-player iframe {
        display: block;
        border: 0;
    }

    .media-video-player video {
        display: block;
        object-fit: cover;
    }

.media-video-fallback {
    display: grid;
    color: rgba(255, 255, 255, 0.6);
    background: radial-gradient(circle at 50% 50%, rgba(197, 34, 35, 0.17), transparent 34%), #0e1014;
    place-items: center;
    font-size: 50px;
}

.media-video-number {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    min-width: 38px;
    height: 31px;
    padding: 0 8px;
    color: #ffffff;
    background: rgba(10, 11, 13, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 9px;
    place-items: center;
    font-size: 10px;
    font-weight: 650;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.media-video-content {
    padding: 23px;
}

    .media-video-content > span {
        display: block;
        margin-bottom: 7px;
        color: #e34b4d;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.11em;
    }

    .media-video-content h3 {
        margin: 0 0 11px;
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.35;
    }

    .media-video-content p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

.media-empty {
    max-width: 670px;
    margin: 0 auto;
    padding: 55px 30px;
    background: #ffffff;
    border: 1px solid rgba(25, 27, 32, 0.08);
    border-radius: 22px;
    text-align: center;
}

    .media-empty > div {
        display: grid;
        width: 61px;
        height: 61px;
        margin: 0 auto 18px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 16px;
        place-items: center;
        font-size: 23px;
    }

    .media-empty h3 {
        margin: 0;
        color: var(--ink);
        font-size: 22px;
        font-weight: 650;
    }

.media-empty-dark {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
}

    .media-empty-dark > div {
        color: #ffffff;
        background: rgba(197, 34, 35, 0.17);
    }

    .media-empty-dark h3 {
        color: #ffffff;
    }

@media (max-width: 1199.98px) {
    .media-intro-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 55px;
    }

    .media-navigation {
        grid-template-columns: 1fr;
    }

        .media-navigation > a + a {
            border-top: 1px solid var(--line);
            border-left: 0;
        }

    .media-blog-grid,
    .media-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .media-photo-item:nth-child(1),
    .media-photo-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 991.98px) {
    .media-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .media-intro-content {
        max-width: 720px;
    }

    .media-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-photo-item:nth-child(1),
    .media-photo-item:nth-child(4),
    .media-photo-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .media-page-hero {
        padding: 44px 0 60px;
    }

    .media-page-hero-content h1 {
        font-size: 41px;
    }

    .media-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .media-section-index {
        display: none;
    }

    .media-blog-grid,
    .media-video-grid {
        grid-template-columns: 1fr;
    }

    .media-blog-card-link {
        min-height: 0;
    }

    .media-photo-grid {
        grid-auto-rows: 230px;
    }
}

@media (max-width: 575.98px) {
    .media-navigation > a {
        grid-template-columns: 25px 48px minmax(0, 1fr) 25px;
        min-height: 135px;
        gap: 12px;
        padding: 19px 10px;
    }

    .media-navigation-icon {
        width: 46px;
        height: 46px;
    }

    .media-photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 270px;
    }

    .media-photo-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 479.98px) {
    .media-page-hero {
        padding: 38px 0 52px;
    }

    .media-page-breadcrumb {
        margin-bottom: 25px;
    }

    .media-page-hero-content h1 {
        font-size: 34px;
    }

    .media-intro-heading h2,
    .media-section-heading h2 {
        font-size: 36px;
    }

    .media-blog-card-media {
        height: 230px;
        flex-basis: 230px;
    }

    .media-video-player {
        height: 220px;
    }
}


.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #fff;
    background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .contact-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: .3;
        background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .contact-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.01);
    }

    .contact-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.contact-page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    pointer-events: none;
}

.contact-page-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.contact-page-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.contact-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

    .contact-page-breadcrumb a {
        color: rgba(255,255,255,.82);
    }

        .contact-page-breadcrumb a:hover {
            color: #fff;
        }

    .contact-page-breadcrumb i {
        font-size: 10px;
        opacity: .55;
    }

.contact-page-hero-content {
    max-width: 1000px;
}

.contact-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
}

    .contact-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255,255,255,.82);
    }

.contact-page-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.contact-intro {
    background: #fff;
}

.contact-intro-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 52px;
}

    .contact-intro-heading h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(42px, 4vw, 57px);
        font-weight: 700;
        line-height: 1.06;
        letter-spacing: -.052em;
    }

        .contact-intro-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .contact-intro-heading > p {
        max-width: 480px;
        margin: 0 0 5px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-info-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
    transition: background .25s ease, transform .25s ease;
}

    .contact-info-card + .contact-info-card {
        border-left: 1px solid var(--line);
    }

    .contact-info-card:hover {
        background: #fff8f7;
        transform: translateY(-4px);
    }

.contact-info-number {
    display: block;
    margin-bottom: 34px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.contact-info-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 21px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 14px;
    place-items: center;
    font-size: 19px;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.contact-info-card:hover .contact-info-icon {
    color: #fff;
    background: var(--red);
    transform: rotate(-4deg);
}

.contact-info-content > span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.contact-info-content h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 650;
}

.contact-info-content p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}

.contact-info-content a {
    display: block;
    color: var(--text);
    font-size: 13px;
    line-height: 1.75;
    word-break: break-word;
}

    .contact-info-content a:hover {
        color: var(--red);
    }

.contact-main {
    background: #f7f5f3;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(390px, .93fr);
    align-items: start;
    gap: 35px;
}

.contact-form-side {
    padding: 42px;
    background: #fff;
    border: 1px solid rgba(25,27,32,.08);
    border-radius: 25px;
    box-shadow: 0 22px 60px rgba(25,27,32,.06);
}

.contact-form-heading {
    margin-bottom: 32px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--line);
}

    .contact-form-heading h2 {
        margin: 0 0 18px;
        color: var(--ink);
        font-size: clamp(38px, 3.5vw, 52px);
        font-weight: 700;
        line-height: 1.07;
        letter-spacing: -.05em;
    }

        .contact-form-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .contact-form-heading > p {
        max-width: 650px;
        margin: 0;
        color: var(--text);
        font-size: 14px;
        line-height: 1.8;
    }

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
}

.contact-field {
    min-width: 0;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #4d5056;
    font-size: 12px;
    font-weight: 650;
}

    .contact-field label strong {
        color: var(--red);
    }

.contact-input,
.contact-select,
.contact-textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 11px 14px;
    color: var(--ink);
    background: #faf9f8;
    border: 1px solid #e2dfdc;
    border-radius: 11px;
    outline: none;
    font: inherit;
    font-size: 14px;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .contact-input::placeholder,
    .contact-textarea::placeholder {
        color: #aaa6a2;
    }

.contact-textarea {
    min-height: 165px;
    resize: vertical;
}

    .contact-input:focus,
    .contact-select:focus,
    .contact-textarea:focus {
        background: #fff;
        border-color: rgba(197,34,35,.44);
        box-shadow: 0 0 0 4px rgba(197,34,35,.06);
    }

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 27px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

    .contact-form-footer p {
        max-width: 430px;
        margin: 0;
        color: var(--muted);
        font-size: 11px;
        line-height: 1.6;
    }

.contact-submit {
    min-height: 52px;
    padding: 11px 23px;
    color: #fff;
    background: linear-gradient( 120deg, #d42d2f, #a9171b );
    border: 0;
    border-radius: 11px;
    box-shadow: 0 12px 27px rgba(168,23,27,.2);
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
}

    .contact-submit:hover {
        box-shadow: 0 16px 34px rgba(168,23,27,.28);
        transform: translateY(-2px);
    }

.contact-form-message {
    margin-bottom: 25px;
    padding: 14px 16px;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.6;
}

    .contact-form-message.is-success {
        color: #176c42;
        background: #ecf8f1;
        border: 1px solid #ccebd9;
    }

    .contact-form-message.is-error {
        color: #a61b20;
        background: #fff0f0;
        border: 1px solid #f1cdcf;
    }

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-detail-side {
    display: grid;
    gap: 20px;
}

.contact-map {
    position: relative;
    height: 440px;
    overflow: hidden;
    background: #ddd9d5;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(25,27,32,.08);
}

    .contact-map iframe {
        display: block;
        width: 100%;
        height: 100%;
    }

.contact-map-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(18,19,23,.76);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 13px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .contact-map-label > i {
        display: grid;
        width: 39px;
        height: 39px;
        flex: 0 0 39px;
        color: #fff;
        background: var(--red);
        border-radius: 11px;
        place-items: center;
    }

    .contact-map-label span {
        display: block;
        margin-bottom: 2px;
        color: rgba(255,255,255,.5);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
    }

    .contact-map-label strong {
        color: #fff;
        font-size: 13px;
        font-weight: 650;
    }

.contact-detail-panel {
    padding: 31px;
    color: #fff;
    background: radial-gradient(circle at 88% 10%, rgba(197,34,35,.22), transparent 28%), linear-gradient(140deg, #191b20, #101216);
    border-radius: 23px;
}

.contact-detail-label {
    display: block;
    margin-bottom: 6px;
    color: #e64a4c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
}

.contact-detail-panel > h3 {
    margin: 0 0 25px;
    padding-bottom: 22px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 25px;
    font-weight: 600;
}

.contact-detail-row {
    display: grid;
    grid-template-columns: 43px minmax(0,1fr);
    align-items: start;
    gap: 14px;
}

    .contact-detail-row + .contact-detail-row {
        margin-top: 19px;
    }

    .contact-detail-row > i {
        display: grid;
        width: 43px;
        height: 43px;
        color: #fff;
        background: rgba(197,34,35,.15);
        border: 1px solid rgba(223,68,70,.17);
        border-radius: 12px;
        place-items: center;
    }

    .contact-detail-row span {
        display: block;
        margin-bottom: 3px;
        color: rgba(255,255,255,.4);
        font-size: 10px;
        font-weight: 650;
    }

    .contact-detail-row p,
    .contact-detail-row a {
        display: block;
        margin: 0;
        color: rgba(255,255,255,.75);
        font-size: 13px;
        line-height: 1.7;
    }

        .contact-detail-row a:hover {
            color: #fff;
        }

.contact-socials {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .contact-socials > span {
        display: block;
        margin-bottom: 12px;
        color: rgba(255,255,255,.4);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
    }

    .contact-socials > div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-socials a {
        display: grid;
        width: 42px;
        height: 42px;
        color: rgba(255,255,255,.7);
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 11px;
        place-items: center;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

        .contact-socials a:hover {
            color: #fff;
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px);
        }

@media (max-width: 1199.98px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .contact-info-card:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .contact-info-card:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .contact-main-grid {
        grid-template-columns: minmax(0,1fr) 360px;
    }
}

@media (max-width: 991.98px) {
    .contact-intro-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-detail-side {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    }

    .contact-map {
        height: auto;
        min-height: 470px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-hero {
        padding: 44px 0 60px;
    }

    .contact-page-hero-content h1 {
        font-size: 41px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 220px;
    }

        .contact-info-card + .contact-info-card,
        .contact-info-card:nth-child(3),
        .contact-info-card:nth-child(4) {
            border-top: 1px solid var(--line);
            border-left: 0;
        }

    .contact-detail-side {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .contact-form-side {
        padding: 28px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit {
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .contact-page-hero {
        padding: 38px 0 52px;
    }

    .contact-page-breadcrumb {
        margin-bottom: 25px;
    }

    .contact-page-hero-content h1 {
        font-size: 34px;
    }

    .contact-intro-heading h2,
    .contact-form-heading h2 {
        font-size: 36px;
    }

    .contact-form-side {
        padding: 21px;
        border-radius: 20px;
    }

    .contact-map {
        min-height: 330px;
        border-radius: 19px;
    }

    .contact-detail-panel {
        padding: 24px;
        border-radius: 19px;
    }
}


.blogs-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #fff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .blogs-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: .3;
        background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .blogs-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .01);
    }

    .blogs-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.blogs-page-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.blogs-page-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.blogs-page-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.blogs-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

    .blogs-page-breadcrumb a {
        color: rgba(255, 255, 255, .82);
    }

        .blogs-page-breadcrumb a:hover {
            color: #fff;
        }

    .blogs-page-breadcrumb i {
        font-size: 10px;
        opacity: .55;
    }

.blogs-page-hero-content {
    max-width: 900px;
}

.blogs-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
}

    .blogs-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, .82);
    }

.blogs-page-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4.8vw, 66px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.blogs-page-main {
    background: #fff;
}

.blogs-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 43px;
}

    .blogs-page-heading h2 {
        max-width: 800px;
        margin: 0;
        color: var(--ink);
        font-size: clamp(42px, 4vw, 57px);
        font-weight: 700;
        line-height: 1.06;
        letter-spacing: -.052em;
    }

        .blogs-page-heading h2 em {
            color: var(--red);
            font-style: normal;
        }

    .blogs-page-heading > p {
        max-width: 475px;
        margin: 0 0 5px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.8;
    }

.blogs-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    padding: 11px;
    background: #f7f5f3;
    border: 1px solid rgba(25, 27, 32, .06);
    border-radius: 16px;
}

    .blogs-filter > a {
        display: inline-flex;
        min-height: 43px;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        color: #5c5f65;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

        .blogs-filter > a:hover {
            color: var(--ink);
            background: #fff;
        }

        .blogs-filter > a.is-active {
            color: #fff;
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 9px 22px rgba(197, 34, 35, .16);
        }

    .blogs-filter small {
        display: grid;
        min-width: 22px;
        height: 22px;
        padding: 0 6px;
        color: var(--muted);
        background: rgba(25, 27, 32, .06);
        border-radius: 7px;
        place-items: center;
        font-size: 10px;
        font-weight: 700;
    }

    .blogs-filter > a.is-active small {
        color: #fff;
        background: rgba(255, 255, 255, .16);
    }

.blogs-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 23px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

    .blogs-result-bar span {
        display: block;
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .blogs-result-bar strong {
        color: var(--ink);
        font-size: 15px;
        font-weight: 650;
    }

    .blogs-result-bar p {
        margin: 0;
        color: var(--muted);
        font-size: 12px;
    }

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.blogs-card {
    min-width: 0;
}

.blogs-card-link {
    display: flex;
    height: 100%;
    min-height: 535px;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(25, 27, 32, .09);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(25, 27, 32, .035);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .blogs-card-link:hover {
        color: var(--ink);
        border-color: rgba(197, 34, 35, .22);
        box-shadow: 0 24px 55px rgba(40, 24, 26, .1);
        transform: translateY(-7px);
    }

.blogs-card-media {
    position: relative;
    height: 275px;
    flex: 0 0 275px;
    overflow: hidden;
    background: #e9e6e3;
}

    .blogs-card-media img,
    .blogs-card-fallback {
        width: 100%;
        height: 100%;
    }

    .blogs-card-media img {
        object-fit: cover;
        transition: transform .7s cubic-bezier(.2, .75, .25, 1);
    }

.blogs-card-link:hover .blogs-card-media img {
    transform: scale(1.055);
}

.blogs-card-fallback {
    position: relative;
    display: grid;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .12), transparent 25%), linear-gradient(135deg, #c8272c, #98151b);
    place-items: center;
}

    .blogs-card-fallback::before,
    .blogs-card-fallback::after {
        position: absolute;
        content: "";
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 50%;
    }

    .blogs-card-fallback::before {
        top: -120px;
        right: -80px;
        width: 300px;
        height: 300px;
        box-shadow: 0 0 0 45px rgba(255, 255, 255, .02), 0 0 0 90px rgba(255, 255, 255, .012);
    }

    .blogs-card-fallback::after {
        bottom: -110px;
        left: -80px;
        width: 240px;
        height: 240px;
    }

.blogs-card-fallback-grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 44px 44px;
}

.blogs-card-fallback > i {
    position: relative;
    z-index: 2;
    font-size: 49px;
}

.blogs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(15, 16, 20, .46), transparent 54% );
    pointer-events: none;
}

.blogs-card-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
    max-width: calc(100% - 85px);
    padding: 8px 11px;
    overflow: hidden;
    color: #fff;
    background: rgba(16, 17, 20, .61);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blogs-card-index {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 3;
    display: grid;
    min-width: 38px;
    height: 33px;
    padding: 0 8px;
    color: #fff;
    background: rgba(16, 17, 20, .61);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    place-items: center;
    font-size: 10px;
    font-weight: 650;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blogs-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.blogs-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 11px;
}

    .blogs-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .blogs-card-meta i {
        color: var(--red);
    }

.blogs-card-content h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.34;
    letter-spacing: -.025em;
}

.blogs-card-content p {
    display: -webkit-box;
    margin: 0 0 22px;
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blogs-card-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 650;
}

    .blogs-card-more > i {
        color: var(--red);
        transition: transform .25s ease;
    }

.blogs-card-link:hover .blogs-card-more > i {
    transform: translate(3px, -3px);
}

.blogs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 60px;
}

.blogs-pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .blogs-pagination-pages > a,
    .blogs-pagination-arrow {
        display: grid;
        width: 45px;
        height: 45px;
        color: #5e6167;
        background: #fff;
        border: 1px solid #dedbd8;
        border-radius: 11px;
        place-items: center;
        font-size: 12px;
        font-weight: 650;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

        .blogs-pagination-pages > a:hover,
        .blogs-pagination-arrow:hover {
            color: var(--red);
            border-color: rgba(197, 34, 35, .35);
            transform: translateY(-2px);
        }

        .blogs-pagination-pages > a.is-active {
            color: #fff;
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 10px 24px rgba(197, 34, 35, .18);
        }

        .blogs-pagination-arrow.is-disabled {
            color: #bbb8b5;
            background: #f7f5f3;
            cursor: default;
        }

.blogs-pagination-dots {
    display: grid;
    width: 34px;
    height: 45px;
    color: var(--muted);
    place-items: center;
    font-size: 13px;
}

.blogs-empty {
    max-width: 650px;
    margin: 40px auto 0;
    padding: 60px 35px;
    background: #f8f6f4;
    border: 1px solid rgba(25, 27, 32, .07);
    border-radius: 24px;
    text-align: center;
}

.blogs-empty-icon {
    display: grid;
    width: 65px;
    height: 65px;
    margin: 0 auto 19px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 18px;
    place-items: center;
    font-size: 25px;
}

.blogs-empty > span {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.blogs-empty h2 {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.035em;
}

.blogs-empty p {
    max-width: 470px;
    margin: 0 auto 23px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.blogs-empty > a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 17px;
    color: #fff;
    background: var(--red);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
}

    .blogs-empty > a:hover {
        color: #fff;
    }

@media (max-width: 1199.98px) {
    .blogs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .blogs-page-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px;
    }

        .blogs-page-heading > p {
            max-width: 700px;
        }
}

@media (max-width: 767.98px) {
    .blogs-page-hero {
        padding: 44px 0 60px;
    }

    .blogs-page-hero-content h1 {
        font-size: 41px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blogs-card-link {
        min-height: 0;
    }

    .blogs-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .blogs-filter::-webkit-scrollbar {
            display: none;
        }

        .blogs-filter > a {
            flex: 0 0 auto;
            white-space: nowrap;
        }
}

@media (max-width: 575.98px) {
    .blogs-result-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .blogs-card-media {
        height: 235px;
        flex-basis: 235px;
    }

    .blogs-pagination {
        gap: 6px;
    }

    .blogs-pagination-pages {
        gap: 4px;
    }

        .blogs-pagination-pages > a,
        .blogs-pagination-arrow {
            width: 40px;
            height: 40px;
        }
}

@media (max-width: 479.98px) {
    .blogs-page-hero {
        padding: 38px 0 52px;
    }

    .blogs-page-breadcrumb {
        margin-bottom: 25px;
    }

    .blogs-page-hero-content h1 {
        font-size: 34px;
    }

    .blogs-page-heading h2 {
        font-size: 36px;
    }

    .blogs-card-content {
        padding: 21px;
    }

        .blogs-card-content h3 {
            font-size: 20px;
        }

    .blogs-pagination-pages > a:not(.is-active) {
        display: none;
    }

    .blogs-pagination-dots {
        display: none;
    }
}

.blog-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #fff;
    background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .blog-detail-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: .3;
        background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .blog-detail-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.01);
    }

    .blog-detail-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.blog-detail-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    pointer-events: none;
}

.blog-detail-hero-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.blog-detail-hero-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

    .blog-detail-breadcrumb a {
        color: rgba(255,255,255,.82);
    }

        .blog-detail-breadcrumb a:hover {
            color: #fff;
        }

    .blog-detail-breadcrumb i {
        font-size: 10px;
        opacity: .55;
    }

    .blog-detail-breadcrumb span {
        overflow: hidden;
        max-width: 480px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.blog-detail-hero-content {
    max-width: 1050px;
}

.blog-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
}

    .blog-detail-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255,255,255,.82);
    }

.blog-detail-hero-content h1 {
    max-width: 1050px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -.045em;
}

.blog-detail-main {
    background: #fff;
}

.blog-detail-top {
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
    color: var(--muted);
    font-size: 12px;
}

    .blog-detail-meta > span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .blog-detail-meta i {
        color: var(--red);
    }

.blog-detail-category {
    padding: 8px 12px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 9px;
    font-weight: 650;
}

.blog-detail-cover {
    height: clamp(430px, 50vw, 680px);
    margin-bottom: 70px;
    overflow: hidden;
    background: #ece9e6;
    border-radius: 26px;
}

    .blog-detail-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    align-items: start;
    gap: 80px;
}

.blog-detail-content {
    min-width: 0;
}

.blog-detail-lead {
    margin-bottom: 34px;
    padding: 25px 28px;
    color: #3c3f45;
    background: #f7f5f3;
    border-left: 4px solid var(--red);
    border-radius: 0 14px 14px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

.blog-detail-editor {
    color: #555960;
    font-size: 15px;
    line-height: 1.95;
}

    .blog-detail-editor > *:first-child {
        margin-top: 0;
    }

    .blog-detail-editor > *:last-child {
        margin-bottom: 0;
    }

    .blog-detail-editor p {
        margin: 0 0 22px;
    }

    .blog-detail-editor h2,
    .blog-detail-editor h3,
    .blog-detail-editor h4,
    .blog-detail-editor h5 {
        margin: 41px 0 16px;
        color: var(--ink);
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -.025em;
    }

    .blog-detail-editor h2 {
        font-size: 30px;
    }

    .blog-detail-editor h3 {
        font-size: 25px;
    }

    .blog-detail-editor h4 {
        font-size: 21px;
    }

    .blog-detail-editor strong,
    .blog-detail-editor b {
        color: #26292e;
        font-weight: 700;
    }

    .blog-detail-editor ul,
    .blog-detail-editor ol {
        margin: 20px 0 27px;
        padding-left: 24px;
    }

    .blog-detail-editor li {
        margin-bottom: 10px;
    }

        .blog-detail-editor li::marker {
            color: var(--red);
        }

    .blog-detail-editor img {
        max-width: 100%;
        height: auto;
        margin: 25px 0;
        border-radius: 17px;
    }

    .blog-detail-editor a {
        color: var(--red);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .blog-detail-editor blockquote {
        margin: 30px 0;
        padding: 24px 27px;
        color: var(--ink);
        background: #fff7f6;
        border-left: 4px solid var(--red);
        border-radius: 0 13px 13px 0;
        font-size: 17px;
        line-height: 1.75;
    }

    .blog-detail-editor table {
        width: 100%;
        margin: 25px 0;
        border-collapse: collapse;
    }

    .blog-detail-editor td,
    .blog-detail-editor th {
        padding: 12px 14px;
        border: 1px solid var(--line);
        vertical-align: top;
    }

    .blog-detail-editor th {
        color: var(--ink);
        background: #f7f5f3;
    }

.blog-detail-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

    .blog-detail-share > div:first-child > span {
        display: block;
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
    }

    .blog-detail-share > div:first-child > strong {
        color: var(--ink);
        font-size: 14px;
        font-weight: 650;
    }

.blog-detail-share-links {
    display: flex;
    gap: 8px;
}

    .blog-detail-share-links a {
        display: grid;
        width: 43px;
        height: 43px;
        color: var(--ink);
        background: #f7f5f3;
        border: 1px solid var(--line);
        border-radius: 11px;
        place-items: center;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

        .blog-detail-share-links a:hover {
            color: #fff;
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px);
        }

.blog-detail-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 19px;
}

.blog-detail-side-card,
.blog-detail-info-card {
    padding: 27px;
    background: #f8f6f4;
    border: 1px solid rgba(25,27,32,.07);
    border-radius: 20px;
}

.blog-detail-side-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

    .blog-detail-side-head > span,
    .blog-detail-info-card > span {
        display: block;
        margin-bottom: 5px;
        color: var(--red);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
    }

    .blog-detail-side-head h3 {
        margin: 0;
        color: var(--ink);
        font-size: 23px;
        font-weight: 650;
    }

.blog-detail-recent-list {
    display: grid;
    gap: 17px;
}

.blog-detail-recent {
    display: grid;
    grid-template-columns: 76px minmax(0,1fr);
    align-items: center;
    gap: 13px;
    color: var(--ink);
}

    .blog-detail-recent:hover {
        color: var(--red);
    }

.blog-detail-recent-image {
    width: 76px;
    height: 65px;
    overflow: hidden;
    background: #e7e4e1;
    border-radius: 11px;
}

    .blog-detail-recent-image img,
    .blog-detail-recent-image > span {
        width: 100%;
        height: 100%;
    }

    .blog-detail-recent-image img {
        object-fit: cover;
    }

    .blog-detail-recent-image > span {
        display: grid;
        color: #fff;
        background: var(--red);
        place-items: center;
    }

.blog-detail-recent small {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 10px;
}

.blog-detail-recent strong {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-detail-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    padding-top: 18px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 650;
}

    .blog-detail-all i {
        color: var(--red);
        transition: transform .2s ease;
    }

    .blog-detail-all:hover {
        color: var(--red);
    }

        .blog-detail-all:hover i {
            transform: translateX(3px);
        }

.blog-detail-info-card {
    background: radial-gradient(circle at 90% 10%, rgba(197,34,35,.18), transparent 30%), #15171c;
    border-color: rgba(255,255,255,.07);
}

    .blog-detail-info-card > h3 {
        margin: 0 0 24px;
        padding-bottom: 20px;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: 19px;
        font-weight: 600;
        line-height: 1.4;
    }

.blog-detail-info-row {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    align-items: center;
    gap: 12px;
}

    .blog-detail-info-row + .blog-detail-info-row {
        margin-top: 17px;
    }

    .blog-detail-info-row > i {
        display: grid;
        width: 42px;
        height: 42px;
        color: #fff;
        background: rgba(197,34,35,.15);
        border: 1px solid rgba(224,65,67,.16);
        border-radius: 11px;
        place-items: center;
    }

    .blog-detail-info-row span {
        display: block;
        margin-bottom: 2px;
        color: rgba(255,255,255,.4);
        font-size: 10px;
    }

    .blog-detail-info-row strong {
        display: block;
        color: rgba(255,255,255,.78);
        font-size: 12px;
        font-weight: 600;
    }

.blog-detail-navigation {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 15px;
    margin-top: 85px;
    padding-top: 35px;
    border-top: 1px solid var(--line);
}

.blog-detail-navigation-item {
    display: grid;
    grid-template-columns: 43px minmax(0,1fr);
    align-items: center;
    gap: 15px;
    min-height: 100px;
    padding: 19px;
    color: var(--ink);
    background: #f8f6f4;
    border: 1px solid rgba(25,27,32,.06);
    border-radius: 16px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .blog-detail-navigation-item:hover {
        color: var(--ink);
        background: #fff8f7;
        border-color: rgba(197,34,35,.17);
        transform: translateY(-3px);
    }

    .blog-detail-navigation-item > i {
        display: grid;
        width: 43px;
        height: 43px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 11px;
        place-items: center;
    }

    .blog-detail-navigation-item span {
        display: block;
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
    }

    .blog-detail-navigation-item strong {
        display: -webkit-box;
        overflow: hidden;
        color: var(--ink);
        font-size: 13px;
        font-weight: 650;
        line-height: 1.5;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.blog-detail-navigation-next {
    grid-template-columns: minmax(0,1fr) 43px;
    text-align: right;
}

.blog-detail-not-found {
    padding: 120px 0;
    background: #f7f5f3;
}

.blog-detail-not-found-inner {
    max-width: 650px;
    margin: auto;
    text-align: center;
}

    .blog-detail-not-found-inner > div {
        display: grid;
        width: 65px;
        height: 65px;
        margin: 0 auto 18px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 18px;
        place-items: center;
        font-size: 25px;
    }

    .blog-detail-not-found-inner > span {
        display: block;
        color: var(--red);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
    }

.blog-detail-not-found h1 {
    margin: 7px 0 12px;
    color: var(--ink);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.blog-detail-not-found p {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 14px;
}

.blog-detail-not-found a {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    color: #fff;
    background: var(--red);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
}

    .blog-detail-not-found a:hover {
        color: #fff;
    }

@media (max-width:1199.98px) {
    .blog-detail-layout {
        grid-template-columns: minmax(0,1fr) 320px;
        gap: 50px;
    }
}

@media (max-width:991.98px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width:767.98px) {
    .blog-detail-hero {
        padding: 44px 0 60px;
    }

    .blog-detail-hero-content h1 {
        font-size: 40px;
    }

    .blog-detail-cover {
        height: 390px;
        margin-bottom: 50px;
        border-radius: 20px;
    }

    .blog-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-detail-navigation {
        grid-template-columns: 1fr;
    }

        .blog-detail-navigation > span {
            display: none;
        }
}

@media (max-width:479.98px) {
    .blog-detail-hero {
        padding: 38px 0 52px;
    }

    .blog-detail-breadcrumb {
        margin-bottom: 25px;
    }

        .blog-detail-breadcrumb span {
            max-width: 180px;
        }

    .blog-detail-hero-content h1 {
        font-size: 33px;
    }

    .blog-detail-cover {
        height: 270px;
        border-radius: 17px;
    }

    .blog-detail-meta {
        gap: 12px;
    }

    .blog-detail-lead {
        padding: 20px;
        font-size: 16px;
    }

    .blog-detail-editor {
        font-size: 14px;
    }

    .blog-detail-share {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-detail-side-card,
    .blog-detail-info-card {
        padding: 22px;
    }
}

.legal-page-hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 67px;
    color: #fff;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .08), transparent 23%), linear-gradient(118deg, #92121b 0%, #ba1723 48%, #d62734 100%);
    isolation: isolate;
}

    .legal-page-hero::before {
        position: absolute;
        inset: 0;
        z-index: -2;
        content: "";
        opacity: .3;
        background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
        background-size: 52px 52px;
    }

    .legal-page-hero::after {
        position: absolute;
        top: -400px;
        right: 3%;
        z-index: -1;
        width: 630px;
        height: 630px;
        content: "";
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 50%;
        box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .01);
    }

    .legal-page-hero .container-xxl {
        position: relative;
        z-index: 2;
    }

.legal-page-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.legal-page-orbit-one {
    top: -440px;
    right: -60px;
    width: 720px;
    height: 720px;
}

.legal-page-orbit-two {
    right: -210px;
    bottom: -220px;
    width: 330px;
    height: 330px;
}

.legal-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

    .legal-page-breadcrumb a {
        color: rgba(255, 255, 255, .82);
    }

        .legal-page-breadcrumb a:hover {
            color: #fff;
        }

    .legal-page-breadcrumb i {
        font-size: 10px;
        opacity: .55;
    }

    .legal-page-breadcrumb span {
        overflow: hidden;
        max-width: 540px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.legal-page-hero-content {
    max-width: 1050px;
}

.legal-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
}

    .legal-page-eyebrow::before {
        width: 32px;
        height: 2px;
        content: "";
        background: rgba(255, 255, 255, .82);
    }

.legal-page-hero-content h1 {
    max-width: 1050px;
    margin: 0;
    color: #fff;
    font-size: clamp(43px, 4.6vw, 64px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.legal-page-main {
    background: #f7f5f3;
}

.legal-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: start;
    gap: 35px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
}

.legal-nav {
    padding: 27px;
    background: #fff;
    border: 1px solid rgba(25, 27, 32, .08);
    border-radius: 21px;
    box-shadow: 0 16px 42px rgba(25, 27, 32, .045);
}

.legal-nav-label {
    display: block;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.legal-nav > h2 {
    margin: 0 0 23px;
    padding-bottom: 20px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.legal-nav nav {
    display: grid;
    gap: 7px;
}

    .legal-nav nav > a {
        display: flex;
        min-height: 51px;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
        color: #555960;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 11px;
        font-size: 12px;
        font-weight: 600;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

        .legal-nav nav > a > span {
            display: flex;
            min-width: 0;
            align-items: center;
            gap: 10px;
        }

            .legal-nav nav > a > span > i {
                display: grid;
                width: 30px;
                height: 30px;
                flex: 0 0 30px;
                color: var(--red);
                background: var(--red-soft);
                border-radius: 8px;
                place-items: center;
                font-size: 13px;
            }

        .legal-nav nav > a > i {
            color: #b3afab;
            font-size: 12px;
            transition: transform .2s ease;
        }

        .legal-nav nav > a:hover {
            color: var(--ink);
            background: #faf8f6;
            border-color: var(--line);
            transform: translateX(2px);
        }

            .legal-nav nav > a:hover > i {
                color: var(--red);
                transform: translateX(2px);
            }

        .legal-nav nav > a.is-active {
            color: #fff;
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 11px 24px rgba(197, 34, 35, .16);
        }

            .legal-nav nav > a.is-active > span > i {
                color: #fff;
                background: rgba(255, 255, 255, .15);
            }

            .legal-nav nav > a.is-active > i {
                color: rgba(255, 255, 255, .82);
            }

.legal-document {
    min-width: 0;
    padding: 45px 50px 55px;
    background: #fff;
    border: 1px solid rgba(25, 27, 32, .08);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(25, 27, 32, .05);
}

.legal-document-head {
    margin-bottom: 38px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

    .legal-document-head > span {
        display: block;
        margin-bottom: 8px;
        color: var(--red);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .13em;
    }

    .legal-document-head h2 {
        max-width: 850px;
        margin: 0 0 10px;
        color: var(--ink);
        font-size: clamp(34px, 3.5vw, 49px);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -.04em;
    }

    .legal-document-head p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }

.legal-content {
    max-width: 960px;
    color: #555960;
    font-size: 15px;
    line-height: 1.9;
}

    .legal-content > *:first-child {
        margin-top: 0 !important;
    }

    .legal-content > *:last-child {
        margin-bottom: 0 !important;
    }

    .legal-content p {
        margin: 0 0 20px;
    }

        .legal-content p:empty {
            display: none;
        }

    .legal-content span {
        font: inherit;
        color: inherit;
    }

    .legal-content h1,
    .legal-content h2,
    .legal-content h3,
    .legal-content h4,
    .legal-content h5,
    .legal-content h6 {
        color: var(--ink);
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -.025em;
    }

    .legal-content h1 {
        margin: 0 0 25px;
        font-size: 34px;
    }

    .legal-content h2 {
        margin: 39px 0 16px;
        font-size: 28px;
    }

    .legal-content h3 {
        margin: 34px 0 14px;
        font-size: 23px;
    }

    .legal-content h4 {
        margin: 29px 0 12px;
        font-size: 19px;
    }

    .legal-content h5,
    .legal-content h6 {
        margin: 25px 0 10px;
        font-size: 17px;
    }

    .legal-content strong,
    .legal-content b {
        color: #282b30;
        font-weight: 700;
    }

    .legal-content ul,
    .legal-content ol {
        margin: 21px 0 25px;
        padding-left: 25px;
    }

    .legal-content li {
        margin-bottom: 9px;
        padding-left: 3px;
    }

        .legal-content li::marker {
            color: var(--red);
        }

    .legal-content a {
        color: var(--red);
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }

        .legal-content a:hover {
            color: #94171c;
        }

    .legal-content blockquote {
        margin: 27px 0;
        padding: 21px 24px;
        color: #41444a;
        background: #fff8f7;
        border-left: 4px solid var(--red);
        border-radius: 0 13px 13px 0;
    }

    .legal-content hr {
        height: 1px;
        margin: 35px 0;
        background: var(--line);
        border: 0;
    }

    .legal-content img {
        max-width: 100%;
        height: auto;
        margin: 25px 0;
        border-radius: 15px;
    }

    .legal-content table {
        width: 100%;
        margin: 27px 0;
        overflow: hidden;
        border-collapse: collapse;
        border-radius: 12px;
    }

        .legal-content table th,
        .legal-content table td {
            padding: 13px 15px;
            border: 1px solid #e3e0dd;
            vertical-align: top;
            text-align: left;
        }

        .legal-content table th {
            color: var(--ink);
            background: #f7f5f3;
            font-weight: 650;
        }

        .legal-content table td {
            background: #fff;
        }

.legal-empty {
    padding: 70px 30px;
    text-align: center;
}

    .legal-empty > i {
        display: grid;
        width: 66px;
        height: 66px;
        margin: 0 auto 18px;
        color: var(--red);
        background: var(--red-soft);
        border-radius: 18px;
        place-items: center;
        font-size: 25px;
    }

    .legal-empty h3 {
        margin: 0;
        color: var(--ink);
        font-size: 23px;
        font-weight: 650;
    }

@media (max-width: 1199.98px) {
    .legal-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 25px;
    }

    .legal-document {
        padding: 40px;
    }
}

@media (max-width: 991.98px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-nav nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .legal-page-hero {
        padding: 44px 0 60px;
    }

    .legal-page-hero-content h1 {
        font-size: 40px;
    }

    .legal-nav nav {
        grid-template-columns: 1fr;
    }

    .legal-document {
        padding: 31px 27px 38px;
        border-radius: 20px;
    }

    .legal-content {
        font-size: 14px;
    }

        .legal-content table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
}

@media (max-width: 479.98px) {
    .legal-page-hero {
        padding: 38px 0 52px;
    }

    .legal-page-breadcrumb {
        margin-bottom: 25px;
    }

        .legal-page-breadcrumb span {
            max-width: 210px;
        }

    .legal-page-hero-content h1 {
        font-size: 33px;
    }

    .legal-nav {
        padding: 21px;
        border-radius: 18px;
    }

        .legal-nav > h2 {
            font-size: 21px;
        }

    .legal-document {
        padding: 25px 20px 31px;
        border-radius: 18px;
    }

    .legal-document-head {
        margin-bottom: 29px;
        padding-bottom: 23px;
    }

        .legal-document-head h2 {
            font-size: 31px;
        }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .legal-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 767.98px) {
    .services-carousel {
        overflow: hidden;
    }

    .services-track {
        grid-auto-columns: 100% !important;
    }

    .service-slide {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .service-slide-link {
        width: 100%;
        max-width: 100%;
    }

    .service-slide-media {
        width: 100%;
    }

    .service-slide-copy {
        width: 100%;
    }
}
