:root {
    --red: #c60021;
    --red-dark: #8f0018;
    --red-gradient: linear-gradient(135deg, #ff1744 0%, #d5002f 48%, #8f0018 100%);
    --red-gradient-hover: linear-gradient(135deg, #ff3f62 0%, #e00033 48%, #7b0015 100%);
    --red-gradient-soft: linear-gradient(90deg, #ff1744 0%, #c60021 52%, rgba(198, 0, 33, 0) 100%);
    --title-line-vertical: linear-gradient(180deg, rgba(255, 23, 68, 0) 0%, rgba(255, 23, 68, 0.62) 26%, #d5002f 72%, #c60021 100%);
    --title-line-horizontal: linear-gradient(90deg, #c60021 0%, #ff1744 28%, rgba(198, 0, 33, 0) 100%);
    --title-line-vertical-white: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 26%, rgba(255, 255, 255, 0.94) 72%, #ffffff 100%);
    --title-line-horizontal-white: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0) 100%);
    --detail-line-horizontal-red: linear-gradient(270deg, #c60021 0%, #ff1744 56%, rgba(198, 0, 33, 0.48) 78%, rgba(198, 0, 33, 0) 100%);
    --detail-line-vertical-white: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 44%, rgba(255, 255, 255, 0.48) 72%, rgba(255, 255, 255, 0) 100%);
    --detail-line-horizontal-white: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 44%, rgba(255, 255, 255, 0.48) 72%, rgba(255, 255, 255, 0) 100%);
    --image-corner-top-vertical: linear-gradient(0deg, rgba(198, 0, 33, 0) 0%, #ff1744 56%, #c60021 100%);
    --image-corner-top-vertical-white: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.86) 56%, #ffffff 100%);
    --image-corner-bottom-vertical: linear-gradient(0deg, #c60021 0%, #ff1744 44%, rgba(198, 0, 33, 0) 100%);
    --title-line-gap: 20px;
    --title-line-thickness: 3px;
    --title-line-offset-inline: 27px;
    --title-line-offset-block: 34px;
    --title-line-offset-block-bottom: 30px;
    --title-line-top: 12px;
    --title-line-bottom: 12px;
    --title-line-small-offset: 7px;
    --title-line-text-gap: 12px;
    --title-line-text-gap-x: var(--title-line-text-gap);
    --title-line-text-gap-y: var(--title-line-text-gap);
    --title-text-start: calc(var(--title-line-small-offset) + var(--title-line-thickness) + var(--title-line-text-gap-x));
    --title-line-bottom-space: calc(var(--title-line-text-gap-y) + (var(--title-line-thickness) * 2) + var(--title-line-stack-gap));
    --title-line-stack-gap: 4px;
    --title-line-prelude: 0px;
    --title-line-inner-top-trim: 20px;
    --title-line-outer-length: 470px;
    --title-line-inner-length: 300px;
    --dark-gradient: linear-gradient(135deg, #252a32 0%, #111317 52%, #050607 100%);
    --dark-gradient-hover: linear-gradient(135deg, #303641 0%, #171a20 54%, #090a0c 100%);
    --ink: #111317;
    --graphite: #20242a;
    --muted: #6f747c;
    --line: #e4e6ea;
    --soft: #f4f5f7;
    --paper: #ffffff;
    --cream: #faf8f4;
    --steel: #b8bec6;
    --shadow: 0 24px 70px rgba(17, 19, 23, 0.14);
    --shadow-soft: 0 16px 36px rgba(17, 19, 23, 0.08);
    --radius: 0;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 18px;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: 0;
}

h1 {
    font-size: 28px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-weight: 650;
}

section {
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(228, 230, 234, 0.82);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: 100%;
    max-width: 1240px;
    height: 84px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 232px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
}

.main-nav {
    --nav-item-width: 148px;
    --nav-item-gap: 12px;
    display: grid;
    grid-template-columns: repeat(5, var(--nav-item-width));
    align-items: center;
    justify-content: center;
    gap: var(--nav-item-gap);
}

.main-nav > a,
.nav-dropdown > button {
    --nav-l-right: 7px;
    --nav-l-width: calc(100% - 14px);
    --nav-l-inner-trim: 34px;
    position: relative;
    width: 100%;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--graphite);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav > a:nth-child(1) {
    --nav-l-width: 82px;
    --nav-l-right: calc((100% - var(--nav-l-width)) / 2);
    --nav-l-inner-trim: 28px;
}

.nav-dropdown > button {
    --nav-l-right: -2px;
    --nav-l-width: calc(100% - 5px);
    --nav-l-inner-trim: 40px;
}

.main-nav > a:nth-child(4),
.main-nav > a:nth-child(5) {
    --nav-l-width: 104px;
    --nav-l-right: calc((100% - var(--nav-l-width)) / 2);
    --nav-l-inner-trim: 30px;
}

.nav-dropdown {
    position: relative;
    width: var(--nav-item-width);
}

.nav-dropdown > button span {
    display: block;
    width: 100%;
    padding-right: 12px;
    text-align: center;
}

.nav-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: filter 180ms ease, transform 180ms ease;
    transform: translateY(-50%);
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown:hover > button:not(.is-active) .nav-arrow,
.nav-dropdown:focus-within > button:not(.is-active) .nav-arrow {
    filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(4550%) hue-rotate(337deg) brightness(82%) contrast(110%);
}

.main-nav .is-active .nav-arrow {
    filter: brightness(0) invert(1);
}

.main-nav > a::before,
.nav-dropdown > button::before {
    content: "";
    position: absolute;
    right: var(--nav-l-right);
    bottom: -3px;
    width: var(--nav-l-width);
    height: 28px;
    background:
        var(--red-gradient) right bottom / 2px 26px no-repeat,
        var(--red-gradient) right bottom / 100% 2px no-repeat,
        var(--red-gradient) right 7px bottom 7px / 2px 20px no-repeat,
        var(--red-gradient) right 7px bottom 7px / calc(100% - var(--nav-l-inner-trim)) 2px no-repeat;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav > a::after,
.nav-dropdown > button::after {
    content: "";
    display: none;
}

.main-nav > a:not(.is-active):hover,
.nav-dropdown:hover > button:not(.is-active) {
    color: var(--red);
    background: transparent;
    box-shadow: none;
}

.main-nav .is-active {
    color: var(--paper);
    background: var(--red-gradient);
    box-shadow: 0 10px 24px rgba(198, 0, 33, 0.18);
}

.main-nav > a:not(.is-active):hover::before,
.main-nav > a:not(.is-active):hover::after,
.main-nav > a:not(.is-active):focus-visible::before,
.main-nav > a:not(.is-active):focus-visible::after,
.nav-dropdown:hover > button:not(.is-active)::before,
.nav-dropdown:hover > button:not(.is-active)::after,
.nav-dropdown:focus-within > button:not(.is-active)::before,
.nav-dropdown:focus-within > button:not(.is-active)::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-panel {
    position: absolute;
    top: 54px;
    left: 50%;
    width: 340px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-panel a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px;
    border-radius: 6px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
    background: var(--red-gradient);
    color: var(--paper);
    box-shadow: 0 14px 28px rgba(198, 0, 33, 0.18);
    transform: translateY(-1px);
    outline: 0;
}

.nav-panel strong {
    font-size: 17px;
}

.nav-panel span {
    color: var(--muted);
    font-size: 14px;
}

.nav-panel a:hover span,
.nav-panel a:focus-visible span {
    color: rgba(255, 255, 255, 0.78);
}

.nav-call {
    position: relative;
    overflow: visible;
    isolation: isolate;
    width: var(--nav-item-width, 148px);
    min-width: var(--nav-item-width, 148px);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gradient);
    color: var(--paper);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    box-shadow: 0 14px 28px rgba(17, 19, 23, 0.18);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    --button-l-vertical: var(--title-line-vertical-white);
    --button-l-horizontal: var(--title-line-horizontal-white);
}

.nav-call:hover {
    background: var(--dark-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(17, 19, 23, 0.24);
}

.nav-toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-toggle img {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(4550%) hue-rotate(337deg) brightness(82%) contrast(110%);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
    border-color: rgba(198, 0, 33, 0.38);
    background: rgba(198, 0, 33, 0.08);
    box-shadow: 0 12px 26px rgba(198, 0, 33, 0.13);
    outline: 0;
}

.nav-toggle:active {
    transform: scale(0.96);
}

.nav-toggle img.nav-toggle-icon-close {
    width: 22px;
    height: 22px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62) rotate(-90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon-menu {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.hero {
    min-height: 770px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 19, 23, 0.91) 0%, rgba(17, 19, 23, 0.72) 38%, rgba(17, 19, 23, 0.15) 100%),
        linear-gradient(0deg, rgba(17, 19, 23, 0.74) 0%, rgba(17, 19, 23, 0) 45%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    --hero-title-text-offset: 14px;
    width: 100%;
    max-width: 760px;
    padding: 110px 0 80px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 26px var(--hero-title-text-offset);
    padding: 10px 18px;
    border-radius: 4px;
    background: var(--red-gradient);
    color: var(--paper);
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.22);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero h1 {
    --title-line-gap: 22px;
    --title-line-offset-inline: var(--hero-title-text-offset);
    --title-line-offset-block: 36px;
    --title-line-offset-block-bottom: 36px;
    --title-line-top: 11px;
    --title-line-bottom: 9px;
    --title-line-outer-length: 540px;
    --title-line-inner-length: 360px;
    --title-line-text-gap: 14px;
    --title-line-text-gap-x: var(--title-line-text-gap);
    --title-line-text-gap-y: var(--title-line-text-gap);
    font-size: 50px;
    font-weight: 700;
    margin-top: 0;
}

.hero h1,
.page-hero h1,
.contact-intro-copy h1,
.legal-head h1,
.section-copy h2,
.section-head h2,
.contact-form-head h2 {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 0;
}

.page-hero h1,
.contact-intro-copy h1,
.contact-form-head h2,
.legal-head h1,
.section-copy h2,
.section-head h2,
.service-detail-copy h2 {
    --title-line-prelude: 36px;
}

.hero h1::before,
.page-hero h1::before,
.contact-intro-copy h1::before,
.legal-head h1::before,
.section-copy h2::before,
.section-head h2::before,
.contact-form-head h2::before,
.hero h1::after,
.page-hero h1::after,
.contact-intro-copy h1::after,
.legal-head h1::after,
.section-copy h2::after,
.section-head h2::after,
.contact-form-head h2::after {
    content: none;
    display: none;
}

.title-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: var(--title-text-start);
    padding-bottom: var(--title-line-bottom-space);
    vertical-align: top;
}

.title-text {
    position: relative;
    z-index: 2;
    display: block;
    min-width: 0;
}

.title-line {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 999px;
    pointer-events: none;
}

.title-line-outer-v {
    left: 0;
    top: calc(var(--title-line-prelude) * -1);
    bottom: 0;
    width: var(--title-line-thickness);
    background: var(--title-line-vertical);
    transform-origin: bottom;
}

.title-line-inner-v {
    left: var(--title-line-small-offset);
    top: calc(var(--title-line-inner-top-trim) - var(--title-line-prelude));
    bottom: calc(var(--title-line-stack-gap) + var(--title-line-thickness));
    width: var(--title-line-thickness);
    background: var(--title-line-vertical);
    transform-origin: bottom;
}

.title-line-inner-h {
    left: var(--title-line-small-offset);
    bottom: calc(var(--title-line-stack-gap) + var(--title-line-thickness));
    width: min(var(--title-line-inner-length), calc(100% - 28px));
    height: var(--title-line-thickness);
    background: var(--title-line-horizontal);
    transform-origin: left;
}

.title-line-outer-h {
    left: 0;
    bottom: 0;
    width: min(var(--title-line-outer-length), 100%);
    height: var(--title-line-thickness);
    background: var(--title-line-horizontal);
    transform-origin: left;
}

.title-line-ready .title-line-outer-v,
.title-line-ready .title-line-inner-v {
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 520ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.title-line-ready .title-line-outer-h,
.title-line-ready .title-line-inner-h {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 520ms ease 120ms, transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.hero .title-line-ready .title-line-outer-v,
.hero .title-line-ready .title-line-inner-v {
    transition-duration: 820ms, 1280ms;
}

.hero .title-line-ready .title-line-outer-h,
.hero .title-line-ready .title-line-inner-h {
    transition-duration: 820ms, 1380ms;
    transition-delay: 240ms;
}

.title-line-ready.is-title-visible .title-line-outer-v,
.title-line-ready.is-title-visible .title-line-inner-v {
    opacity: 1;
    transform: scaleY(1);
}

.title-line-ready.is-title-visible .title-line-outer-h,
.title-line-ready.is-title-visible .title-line-inner-h {
    opacity: 1;
    transform: scaleX(1);
}

.text-reveal-ready {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    clip-path: inset(0 0 14% 0);
    transition:
        opacity 560ms ease,
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 680ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, clip-path;
}

.text-reveal-ready.is-text-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: inset(0);
}

.hero h1.text-reveal-ready,
.page-hero h1.text-reveal-ready,
.contact-intro-copy h1.text-reveal-ready,
.legal-head h1.text-reveal-ready,
.section-copy h2.text-reveal-ready,
.section-head h2.text-reveal-ready,
.contact-form-head h2.text-reveal-ready,
.service-detail-copy h2.text-reveal-ready {
    overflow: visible;
    clip-path: none;
}

.hero .text-reveal-ready:not(.is-text-visible) {
    transform: translate3d(0, 18px, 0);
}

.hero .text-reveal-ready {
    transition-duration: 620ms, 760ms, 760ms;
}

@media (prefers-reduced-motion: reduce) {
    .text-reveal-ready {
        opacity: 1;
        transform: none;
        clip-path: inset(0);
        transition: none;
    }

    .title-line-ready .title-line {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .partner-marquee-track {
        animation: none;
    }
}

.service-card .card-title {
    --title-line-outer-length: 240px;
    --title-line-inner-length: 112px;
    --title-line-text-gap: 6px;
    --title-line-text-gap-x: var(--title-line-text-gap);
    --title-line-text-gap-y: var(--title-line-text-gap);
    --title-text-start: calc(var(--title-line-small-offset) + var(--title-line-thickness) + var(--title-line-text-gap-x));
    --title-line-bottom-space: calc(var(--title-line-text-gap-y) + (var(--title-line-thickness) * 2) + var(--title-line-stack-gap));
    --title-line-stack-gap: 4px;
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 0;
}

.service-card .card-title::before,
.service-card .card-title::after {
    content: none;
    display: none;
}

.hero-lead {
    max-width: 780px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.48;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 43px;
    padding-top: 3px;
    overflow: visible;
}

.btn {
    position: relative;
    overflow: visible;
    isolation: isolate;
    min-height: auto;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn::before {
    content: none;
    display: none;
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.06) brightness(1.03);
}

.btn-primary {
    background: var(--red-gradient);
    color: var(--paper);
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.22);
}

.btn-primary:hover {
    background: var(--red-gradient-hover);
    box-shadow: 0 20px 42px rgba(198, 0, 33, 0.28);
}

.btn-secondary {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    box-shadow: 0 18px 38px rgba(17, 19, 23, 0.18);
}

.btn-dark {
    background: var(--dark-gradient);
    color: var(--paper);
    box-shadow: 0 16px 34px rgba(17, 19, 23, 0.22);
}

.btn-dark:hover {
    background: var(--dark-gradient-hover);
    box-shadow: 0 20px 42px rgba(17, 19, 23, 0.28);
}

.btn-light {
    background: var(--paper);
    color: var(--ink);
}

.btn-light:hover {
    background: #f4f5f7;
    box-shadow: 0 18px 38px rgba(17, 19, 23, 0.16);
}

.nav-call::before {
    content: none;
    display: none;
}

.btn-outline-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    box-shadow: 0 18px 38px rgba(17, 19, 23, 0.18);
}

.hero-proof {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 820px;
}

.proof-item {
    position: relative;
    min-width: 0;
    padding: 20px 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-item::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--red-gradient-soft);
}

.proof-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.proof-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #ff5a73;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-item strong {
    display: block;
    color: var(--paper);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.proof-item span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.proof-item .proof-label {
    margin-top: 0;
}

.intro-band {
    background: var(--paper);
    padding: 75px 0;
}

.split {
    display: flex;
    gap: 54px;
    align-items: flex-start;
}

.split > * {
    flex: 1 1 0;
}

.section-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.intro-band .section-copy {
    flex: 1 1 66%;
    max-width: 780px;
    gap: 30px;
}

.intro-band .intro-cta {
    align-self: flex-start;
    width: auto;
    padding-inline: 20px;
}

.intro-band .intro-cta::before {
    content: none;
    display: none;
}

.intro-media {
    flex: 0 1 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-intro-band .about-intro-image {
    flex: 0 0 440px;
    max-width: 440px;
}

.about-intro-band .about-intro-image img {
    aspect-ratio: 941 / 1672;
    min-height: 0;
    height: auto;
}

.intro-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.intro-proof-card {
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-rows: 44px minmax(48px, auto) 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    row-gap: 14px;
    padding: 18px 16px 20px;
    border: 0;
    border-radius: 6px;
    background: var(--dark-gradient);
    color: var(--paper);
    box-shadow: 0 18px 38px rgba(17, 19, 23, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.intro-proof-card:first-child {
    padding-left: 16px;
}

.intro-proof-card:last-child {
    padding-right: 16px;
}

.intro-proof-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(17, 19, 23, 0.24);
    filter: saturate(1.04) brightness(1.02);
}

.intro-proof-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--red-gradient);
    box-shadow: 0 12px 26px rgba(198, 0, 33, 0.2);
}

.intro-proof-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.intro-proof-card h3 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-size: 20px;
    line-height: 1.18;
    font-weight: 650;
}

.intro-proof-card p {
    margin-top: 0;
    align-self: start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.35;
}

.intro-media .image-frame {
    width: min(100%, 420px);
    margin-left: auto;
}

.intro-media .image-frame img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
}

.section-copy p {
    color: var(--muted);
}

.intro-band .section-copy > p:not(.section-subtitle) {
    color: #4f5660;
}

.intro-cta-text {
    margin: 0 0 -12px;
    color: #242932;
    font-size: 16px;
    font-weight: 600;
}

.intro-band .intro-proof-card h3 {
    text-align: center;
}

.intro-band .intro-proof-card p {
    color: rgba(255, 255, 255, 0.76);
}

.section-subtitle {
    display: block;
    max-width: 720px;
    padding-left: var(--title-text-start);
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
}

.section-copy .section-subtitle {
    margin-bottom: -14px;
    padding-left: var(--title-text-start);
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
}

.section-head .section-subtitle,
.page-hero .section-subtitle,
.footer-cta .section-subtitle {
    margin-bottom: 8px;
}

.hero .section-subtitle {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
}

.dark-band .section-subtitle,
.faq-section .section-subtitle {
    color: var(--red);
}

.dark-band .section-copy .section-subtitle,
.faq-section .section-copy .section-subtitle {
    color: var(--red);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--soft);
}

.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.services-section,
.references-section,
.faq-section {
    padding: 75px 0;
    background: var(--soft);
}

.references-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.references-head {
    align-items: flex-start;
    margin-bottom: 28px;
}

.reference-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 34px;
}

.reference-filter-badge {
    appearance: none;
    border: 1px solid rgba(198, 0, 33, 0.28);
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.12), rgba(255, 255, 255, 0) 80%),
        #ffffff;
    color: var(--ink);
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reference-filter-badge:hover,
.reference-filter-badge.is-active {
    color: #ffffff;
    border-color: transparent;
    background: var(--red-gradient);
    box-shadow: 0 14px 32px rgba(198, 0, 33, 0.18);
}

.reference-filter-badge:hover {
    transform: translateY(-2px);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reference-project-card {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: translateY(0);
    animation: referenceCardIn 280ms ease both;
    animation-delay: var(--reveal-delay, 0ms);
    transition: transform 180ms ease, filter 180ms ease;
}

.reference-project-card[hidden] {
    display: none;
}

.reference-project-media {
    position: relative;
    overflow: hidden;
    background: #f1f3f5;
}

.reference-project-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.reference-project-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(17, 19, 23, 0) 0%, rgba(17, 19, 23, 0.66) 100%);
    pointer-events: none;
}

.reference-category-chip {
    position: absolute;
    left: 12px;
    top: auto;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    background: var(--red-gradient);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(198, 0, 33, 0.16);
}

.reference-project-card:hover {
    transform: translateY(-4px);
}

.reference-project-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) brightness(1.02);
}

.reference-marquee-section {
    overflow: hidden;
    background: var(--red-gradient);
    color: #ffffff;
    padding: 75px 0;
}

.reference-marquee-section .section-subtitle,
.reference-marquee-section h2,
.reference-marquee-section p {
    color: #ffffff;
}

.reference-marquee-head {
    max-width: 980px;
    margin-bottom: 34px;
}

.reference-marquee-head p:not(.section-subtitle) {
    max-width: 840px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.84);
}

.reference-marquee-viewport {
    width: 100%;
    overflow: hidden;
}

.reference-marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: referenceMarquee 42s linear infinite;
}

.reference-marquee-track:hover {
    animation-play-state: paused;
}

.reference-marquee-card {
    position: relative;
    flex: 0 0 clamp(240px, 24vw, 360px);
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: #111317;
    color: #ffffff;
    text-decoration: none;
}

.reference-marquee-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.reference-marquee-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(17, 19, 23, 0) 0%, rgba(17, 19, 23, 0.76) 100%);
    pointer-events: none;
}

.reference-marquee-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.reference-marquee-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.reference-marquee-actions .btn {
    background: var(--dark-gradient);
    color: #ffffff;
}

@keyframes referenceMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.project-inquiry-section {
    background: var(--red-gradient);
    color: #ffffff;
}

.project-inquiry-section .section-subtitle,
.project-inquiry-section h2,
.project-inquiry-section p {
    color: #ffffff;
}

.project-inquiry-section .contact-card {
    background: #111317;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.project-inquiry-section .contact-card p {
    color: rgba(255, 255, 255, 0.76);
}

@keyframes referenceCardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #25040a 0%, #111317 48%, #5f0010 100%);
    color: var(--paper);
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.18) 0%, rgba(255, 23, 68, 0) 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 44%);
    pointer-events: none;
}

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

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

.section-head h2 {
    max-width: 760px;
}

.section-head p {
    max-width: 420px;
    color: var(--muted);
}

.services-head {
    align-items: flex-start;
}

.services-head > div {
    max-width: 760px;
}

.services-head p {
    max-width: 620px;
    margin-top: 18px;
}

.section-head .section-subtitle,
.services-head .section-subtitle {
    max-width: 720px;
    margin: 0 0 8px;
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
}

.dark-band .section-head .section-subtitle,
.faq-section .section-subtitle {
    color: var(--red);
}

.card-grid {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.service-card,
.project-card,
.value-card,
.benefit-card,
.contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(17, 19, 23, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.service-card:hover,
.services-section .service-card.is-in-view,
.project-card:hover,
.value-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 0, 33, 0.28);
    box-shadow: var(--shadow-soft);
}

.service-card:hover,
.services-section .service-card.is-in-view {
    background: var(--red-gradient);
    border-color: transparent;
    box-shadow: 0 22px 48px rgba(198, 0, 33, 0.24);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .text-link,
.services-section .service-card.is-in-view h3,
.services-section .service-card.is-in-view p,
.services-section .service-card.is-in-view .text-link {
    color: var(--paper);
}

.service-card:hover .title-line-outer-v,
.service-card:hover .title-line-inner-v,
.services-section .service-card.is-in-view .title-line-outer-v,
.services-section .service-card.is-in-view .title-line-inner-v {
    background: var(--title-line-vertical-white);
}

.service-card:hover .title-line-outer-h,
.service-card:hover .title-line-inner-h,
.services-section .service-card.is-in-view .title-line-outer-h,
.services-section .service-card.is-in-view .title-line-inner-h {
    background: var(--title-line-horizontal-white);
}

.service-card,
.project-card {
    width: calc((100% - 44px) / 3);
}

.services-section .service-card-reparatur-wartung {
    width: 100%;
    flex-direction: row;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card img,
.project-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.services-section .service-card-reparatur-wartung img {
    width: 42%;
    aspect-ratio: 16 / 9;
}

.services-section .service-card-reparatur-wartung .card-body {
    width: 58%;
}

.card-body {
    flex: 1 1 auto;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card .text-link {
    margin-top: auto;
}

.service-card h3,
.project-card h3,
.value-card h3,
.benefit-card h3,
.contact-card h3 {
    font-size: 22px;
}

.card-body p {
    color: var(--muted);
    font-size: 16px;
}

.text-link {
    --detail-line-vertical: var(--red-gradient);
    --detail-line-horizontal: var(--detail-line-horizontal-red);
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0 26px 15px 0;
    transition: color 180ms ease;
}

.text-link::before,
.text-link::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 2px;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
}

.text-link::before {
    width: calc(100% - 5px);
    height: 26px;
    background:
        var(--detail-line-vertical) right bottom / 2px 24px no-repeat,
        var(--detail-line-horizontal) right bottom / 100% 2px no-repeat,
        var(--detail-line-vertical) right 7px bottom 6px / 2px 16px no-repeat,
        var(--detail-line-horizontal) right 7px bottom 6px / calc(100% - 38px) 2px no-repeat;
    transform: translateY(4px);
}

.text-link::after {
    display: none;
}

.service-card:hover .text-link,
.services-section .service-card.is-in-view .text-link {
    --detail-line-vertical: var(--detail-line-vertical-white);
    --detail-line-horizontal: var(--detail-line-horizontal-white);
}

.text-link:hover::before,
.text-link:hover::after,
.text-link:focus-visible::before,
.text-link:focus-visible::after,
.service-card:hover .text-link::before,
.service-card:hover .text-link::after,
.services-section .service-card.is-in-view .text-link::before,
.services-section .service-card.is-in-view .text-link::after {
    opacity: 1;
    transform: translateY(0);
}

.dark-band {
    padding: 75px 0;
    background: var(--ink);
    color: var(--paper);
}

.process-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #101216 0%, #181b21 52%, #0c0d10 100%);
}

.process-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.11) 0%, rgba(255, 23, 68, 0) 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 38%);
    pointer-events: none;
}

.process-band .container {
    position: relative;
    z-index: 1;
}

.process-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 54px;
}

.process-head > div {
    max-width: 760px;
}

.process-head p {
    max-width: 680px;
    margin-top: 18px;
}

.dark-band .section-copy p,
.dark-band .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.process-showcase {
    --process-duration: 6800ms;
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.process-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-mobile-nav {
    display: none;
}

.process-tab {
    position: relative;
    width: 100%;
    min-height: 112px;
    padding: 22px 22px 20px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    color: var(--paper);
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.process-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
        var(--red-gradient);
    opacity: 0;
    transition: opacity 220ms ease;
}

.process-tab:hover,
.process-tab:focus-visible {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.24);
    outline: 0;
}

.process-tab.is-active {
    border-color: transparent;
    box-shadow: 0 24px 52px rgba(198, 0, 33, 0.28);
}

.process-tab.is-active::before {
    opacity: 1;
}

.process-tab-number,
.process-tab-copy,
.process-tab-progress {
    position: relative;
    z-index: 1;
}

.process-tab-number {
    display: inline-flex;
    width: 54px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: var(--paper);
    border-radius: 4px;
    font-family: "Roboto Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(198, 0, 33, 0.24);
}

.process-tab.is-active .process-tab-number {
    background: var(--dark-gradient);
    box-shadow: 0 14px 30px rgba(17, 19, 23, 0.25);
}

.process-tab-copy strong,
.process-info h3 {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.process-tab-copy span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
}

.process-tab.is-active .process-tab-copy span {
    color: rgba(255, 255, 255, 0.86);
}

.process-tab-progress {
    grid-column: 1 / -1;
    height: 3px;
    margin-top: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.process-tab-progress::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
}

.process-showcase.is-autoplaying .process-tab.is-active .process-tab-progress::after {
    animation: process-progress var(--process-duration) linear forwards;
}

.process-stage {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: #0b0c0f;
    box-shadow: 0 34px 76px rgba(0, 0, 0, 0.34);
}

.process-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    grid-template-rows: minmax(0, 1fr);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.process-panel.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.process-image {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 100%;
    overflow: hidden;
}

.process-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 13, 16, 0.32) 0%, rgba(12, 13, 16, 0) 38%),
        linear-gradient(180deg, rgba(12, 13, 16, 0) 54%, rgba(12, 13, 16, 0.52) 100%);
}

.process-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel.is-active .process-image img {
    transform: scale(1);
}

.process-info {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(198, 0, 33, 0.22), rgba(255, 255, 255, 0.035)),
        linear-gradient(180deg, rgba(17, 19, 23, 0.98), rgba(17, 19, 23, 0.94));
}

.process-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: #ff5a73;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-info h3 {
    margin-bottom: 14px;
}

.process-info p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.process-info ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
}

.process-info li {
    position: relative;
    padding: 12px 12px 12px 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.process-info li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 18px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--red-gradient);
    box-shadow: 0 0 0 5px rgba(255, 23, 68, 0.14);
}

@keyframes process-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.value-section {
    padding: 75px 0;
    background:
        linear-gradient(135deg, rgba(198, 0, 33, 0.04) 0%, rgba(198, 0, 33, 0) 32%),
        linear-gradient(180deg, var(--paper) 0%, #f6f7f9 100%);
}

.value-section .section-head p {
    max-width: 700px;
    margin-top: 18px;
}

.value-grid {
    gap: 22px;
}

.value-card,
.benefit-card,
.contact-card {
    width: calc((100% - 44px) / 3);
    padding: 30px;
}

.value-grid .value-card {
    width: calc((100% - 44px) / 3);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 34px;
    background: var(--dark-gradient);
    border-color: transparent;
    color: var(--paper);
    box-shadow: 0 24px 54px rgba(17, 19, 23, 0.16);
}

.value-grid .value-card::before {
    content: none;
    display: none;
}

.value-grid .value-card::after {
    content: attr(data-card-number);
    position: absolute;
    right: 24px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.08);
    font-family: "Roboto Mono", monospace;
    font-size: 92px;
    font-weight: 700;
    pointer-events: none;
    transition: color 180ms ease;
}

.value-card .number {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: var(--paper);
    border-radius: 4px;
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.22);
}

.value-icon {
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 4px;
    background: var(--red-gradient);
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.value-card:hover {
    background: var(--dark-gradient-hover);
    border-color: transparent;
    color: var(--paper);
    box-shadow: 0 28px 64px rgba(17, 19, 23, 0.24);
}

.value-card:hover::before {
    content: none;
    display: none;
}

.value-card:hover::after {
    color: rgba(255, 255, 255, 0.11);
}

.value-card:hover .number {
    background: var(--red-gradient);
    box-shadow: 0 14px 28px rgba(17, 19, 23, 0.22);
}

.value-card:hover .value-icon {
    box-shadow: 0 14px 28px rgba(17, 19, 23, 0.22);
    transform: translateY(-2px);
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.86);
}

.value-card p,
.benefit-card p,
.contact-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
}

.value-card h3 {
    font-weight: 700;
}

.value-card p {
    color: rgba(255, 255, 255, 0.78);
}

.partners-section {
    padding: 75px 0;
    padding-block: 75px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(198, 0, 33, 0.035) 0%, rgba(198, 0, 33, 0) 34%),
        var(--paper);
}

.partners-section .section-head p {
    max-width: 720px;
    margin-top: 28px;
}

.partner-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 54px;
}

.partner-marquee::before,
.partner-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(70px, 12vw, 190px);
    pointer-events: none;
}

.partner-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--paper) 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--paper) 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-marquee-track {
    display: flex;
    width: max-content;
    animation: partner-marquee 34s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
    animation-play-state: paused;
}

.partner-marquee-group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
}

.partner-logo-card {
    width: 190px;
    height: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 22px 28px;
    border: 1px solid rgba(228, 230, 234, 0.86);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: none;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@keyframes partner-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.page-hero {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, var(--ink) 0%, #272a30 55%, var(--red-dark) 100%);
    color: var(--paper);
}

.page-hero p {
    max-width: 750px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.page-hero .section-subtitle {
    max-width: 720px;
    margin: 0 0 -12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
}

.page-hero h1 {
    font-size: 42px;
}

.service-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: stretch;
    padding: 118px 0 84px;
    background: var(--ink);
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 0%, rgba(255, 23, 68, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 36%);
    pointer-events: none;
    z-index: 1;
}

.service-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 19, 23, 0.91) 0%, rgba(17, 19, 23, 0.73) 42%, rgba(17, 19, 23, 0.2) 100%),
        linear-gradient(0deg, rgba(17, 19, 23, 0.78) 0%, rgba(17, 19, 23, 0.04) 52%);
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.service-hero-grid {
    display: block;
    width: 100%;
}

.service-hero-copy {
    max-width: 780px;
}

.service-hero .section-subtitle {
    margin-bottom: 8px;
}

.service-hero h1 {
    max-width: 780px;
    font-size: 42px;
    font-weight: 650;
}

.service-hero-copy > p:not(.section-subtitle) {
    max-width: 720px;
    margin-top: 28px;
}

.page-hero .section-subtitle,
.service-hero .section-subtitle {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 26px var(--title-text-start);
    padding: 10px 18px;
    border-radius: 4px;
    background: var(--red-gradient);
    color: var(--paper);
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.22);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.content-section {
    padding: 75px 0;
    background: var(--paper);
}

.service-detail-media {
    margin-top: -46px;
}

.service-detail-media .image-frame {
    aspect-ratio: 16 / 9;
}

.service-detail-media .image-frame img {
    height: 100%;
    min-height: 0;
}

.service-overview .split {
    max-width: 1200px;
    align-items: start;
}

.service-overview.has-image .split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: clamp(34px, 5vw, 82px);
}

.service-overview {
    background: #f5f6f8;
}

.service-overview-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
}

.service-overview-text p {
    color: #515862;
}

.service-overview-badges {
    margin-top: 32px;
    max-width: 100%;
}

.service-overview-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.service-overview-card {
    min-height: 116px;
    padding: 16px;
    border-radius: 6px;
    background: var(--red-gradient);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(198, 0, 33, 0.16);
    transform-origin: center bottom;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-overview-card span {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--dark-gradient);
    box-shadow: 0 10px 22px rgba(17, 19, 23, 0.28);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(198, 0, 33, 0.22);
}

.service-overview-card.text-reveal-ready {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.96);
    clip-path: none;
    transition:
        opacity 520ms ease,
        transform 720ms cubic-bezier(0.18, 1, 0.28, 1),
        box-shadow 260ms ease;
}

.service-overview-card.text-reveal-ready.is-text-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.service-overview-card.text-reveal-ready.is-text-visible:hover {
    transform: translateY(-5px);
}

.service-overview-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 650;
}

.service-overview-card p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.service-overview-image {
    position: relative;
    overflow: visible;
    --media-l-outer: 104px;
    --media-l-inner: 78px;
    --media-l-gap: 9px;
    --media-l-outset: 18px;
    --media-l-thickness: 3px;
    align-self: center;
    height: 720px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.service-overview-image::before,
.service-detail-image::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 5;
    width: calc(var(--media-l-outer) + var(--media-l-gap));
    height: calc(var(--media-l-outer) + var(--media-l-gap));
    pointer-events: none;
    background-image:
        var(--image-corner-top-vertical),
        var(--title-line-horizontal),
        var(--image-corner-top-vertical),
        var(--title-line-horizontal);
    background-size:
        var(--media-l-thickness) var(--media-l-outer),
        var(--media-l-outer) var(--media-l-thickness),
        var(--media-l-thickness) var(--media-l-inner),
        var(--media-l-inner) var(--media-l-thickness);
    background-position:
        left top,
        left top,
        var(--media-l-gap) var(--media-l-gap),
        var(--media-l-gap) var(--media-l-gap);
    background-repeat: no-repeat;
}

.service-overview-image::after,
.service-detail-image::after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: calc(var(--media-l-outer) + var(--media-l-gap));
    height: calc(var(--media-l-outer) + var(--media-l-gap));
    pointer-events: none;
    background-image:
        var(--image-corner-bottom-vertical),
        var(--detail-line-horizontal-red),
        var(--image-corner-bottom-vertical),
        var(--detail-line-horizontal-red);
    background-size:
        var(--media-l-thickness) var(--media-l-outer),
        var(--media-l-outer) var(--media-l-thickness),
        var(--media-l-thickness) var(--media-l-inner),
        var(--media-l-inner) var(--media-l-thickness);
    background-position:
        right bottom,
        right bottom,
        right var(--media-l-gap) bottom var(--media-l-gap),
        right var(--media-l-gap) bottom var(--media-l-gap);
    background-repeat: no-repeat;
}

.service-overview-image .image-corner,
.service-detail-image .image-corner {
    display: none;
}

.service-overview-image .image-corner::before,
.service-overview-image .image-corner::after,
.service-detail-image .image-corner::before,
.service-detail-image .image-corner::after {
    content: none;
    display: none;
}

.service-overview-image .image-label,
.service-detail-image .image-label {
    display: none;
}

.service-overview-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: #e8eaee;
    box-shadow: var(--shadow);
    color: transparent;
    font-size: 0;
    object-fit: cover;
    transition: transform 520ms ease;
}

.service-overview-image:hover img,
.service-detail-image:hover img {
    transform: scale(1.035);
}

.service-section-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 27px;
    padding-top: 3px;
    overflow: visible;
}

.service-section-cta p {
    max-width: 560px;
    color: #252a32;
    font-size: 15px;
    font-weight: 600;
}

.service-reference-card .service-section-cta p,
.service-process-cta p {
    color: #252a32;
    font-size: 15px;
    font-weight: 600;
}

.service-section-cta .btn {
    min-width: 190px;
}

.service-detail-band.is-red .service-section-cta p {
    color: #252a32;
}

.service-detail-band.is-red .service-section-cta .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 46px rgba(17, 19, 23, 0.22);
}

.service-process-cta {
    margin-top: 31px;
    padding-top: 3px;
    overflow: visible;
}

.service-long-section {
    padding: 0;
    background: #ffffff;
}

.service-detail-band {
    padding: 75px 0;
    background: #ffffff;
}

.service-detail-band.is-soft {
    background: #f5f6f8;
}

.service-detail-band.is-red {
    background: var(--red-gradient);
    color: #ffffff;
}

.service-detail-block {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
}

.service-detail-block.is-reverse {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 0.9fr);
}

.service-detail-block.is-reverse .service-detail-copy {
    grid-column: 2;
}

.service-detail-block.is-reverse .service-detail-image {
    grid-column: 1;
    grid-row: 1;
}

.service-detail-block.has-no-image {
    grid-template-columns: 1fr;
}

.service-detail-block.has-no-image .service-detail-copy {
    max-width: 980px;
}

.service-detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-detail-copy .section-subtitle {
    margin-bottom: 8px;
    padding-left: var(--title-text-start);
    color: #c60021;
}

.service-detail-band.is-red .service-detail-copy .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

.service-detail-copy h2 {
    --title-line-outer-length: 470px;
    --title-line-inner-length: 300px;
    position: relative;
    display: inline-block;
    max-width: 760px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--ink);
    font-size: 28px;
    font-weight: 620;
}

.service-detail-band.is-red .service-detail-copy h2 {
    color: #ffffff;
}

.service-detail-copy h2::before,
.service-detail-copy h2::after {
    content: none;
    display: none;
}

.service-detail-band.is-red .title-line-outer-v,
.service-detail-band.is-red .title-line-inner-v {
    background: var(--title-line-vertical-white);
}

.service-detail-band.is-red .title-line-outer-h,
.service-detail-band.is-red .title-line-inner-h {
    background: var(--title-line-horizontal-white);
}

.service-detail-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
}

.service-detail-copy p {
    color: #515862;
    font-size: 18px;
}

.service-detail-band.is-red .service-detail-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.service-detail-copy .service-section-cta p,
.service-detail-band.is-red .service-detail-copy .service-section-cta p {
    color: #252a32;
    font-size: 15px;
    font-weight: 600;
}

.service-detail-copy .service-section-cta {
    margin-top: 30px;
    padding: 18px 0 0;
}

.service-detail-band.is-red .service-detail-copy .service-section-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-image {
    position: relative;
    overflow: visible;
    --media-l-outer: 104px;
    --media-l-inner: 78px;
    --media-l-gap: 9px;
    --media-l-outset: 18px;
    --media-l-thickness: 3px;
    align-self: center;
    height: 720px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.service-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: #e8eaee;
    box-shadow: var(--shadow);
    color: transparent;
    font-size: 0;
    object-fit: cover;
    transition: transform 520ms ease;
}

.service-detail-image.is-square {
    height: auto;
}

.service-detail-image.is-square img {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-overview-image.text-reveal-ready,
.service-detail-image.text-reveal-ready {
    opacity: 0;
    clip-path: none;
    transform: translate3d(28px, 0, 0) scale(0.985);
    transition:
        opacity 620ms ease,
        transform 820ms cubic-bezier(0.18, 1, 0.28, 1);
}

.service-detail-block.is-reverse .service-detail-image.text-reveal-ready {
    transform: translate3d(-28px, 0, 0) scale(0.985);
}

.service-overview-image.text-reveal-ready.is-text-visible,
.service-detail-image.text-reveal-ready.is-text-visible,
.service-detail-block.is-reverse .service-detail-image.text-reveal-ready.is-text-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .service-overview-card,
    .service-overview-card.text-reveal-ready,
    .other-services-track,
    .service-overview-image.text-reveal-ready,
    .service-detail-image.text-reveal-ready,
    .service-detail-block.is-reverse .service-detail-image.text-reveal-ready,
    .service-overview-image img,
    .service-detail-image img {
        opacity: 1;
        clip-path: inset(0);
        transform: none;
        transition: none;
        animation: none;
    }
}

.service-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-top: 30px;
    max-width: 820px;
}

.service-chip-grid.is-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 14px;
}

.service-feature-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    width: 100%;
    max-width: 100%;
    padding: 8px 14px 8px 9px;
    border: 1px solid rgba(198, 0, 33, 0.28);
    border-left: 4px solid #c60021;
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.14), rgba(255, 255, 255, 0) 78%),
        #ffffff;
    color: var(--ink);
    overflow: hidden;
    transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-feature-card::before {
    content: none;
}

.service-feature-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 28px;
    border: 1px solid transparent;
    background: var(--red-gradient);
    color: #ffffff;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 auto;
}

.service-feature-text {
    display: block;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: normal;
}

.service-feature-copy {
    display: block;
    color: inherit;
}

.service-feature-description {
    display: block;
    margin-top: 8px;
    color: #525965;
    font-size: 16px;
    font-weight: 400;
}

.service-chip-grid.is-three .service-feature-card {
    display: block;
    min-height: 168px;
    padding: 20px;
    border: 0;
    border-left: 0;
    background: var(--red-gradient);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(198, 0, 33, 0.16);
}

.service-chip-grid.is-three .service-feature-number {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    background: var(--dark-gradient);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.service-chip-grid.is-three .service-feature-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.service-chip-grid.is-three .service-feature-description {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.service-chip-grid.is-three .service-feature-card:hover {
    border-color: transparent;
    background: var(--red-gradient);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(198, 0, 33, 0.22);
}

.service-feature-card:hover {
    border-color: rgba(198, 0, 33, 0.5);
    border-left-color: #ff1744;
    background:
        linear-gradient(90deg, rgba(255, 23, 68, 0.2), rgba(255, 255, 255, 0) 78%),
        #ffffff;
    transform: translateY(-2px);
}

.service-feature-card:hover .service-feature-number {
    background: var(--dark-gradient);
    color: #ffffff;
}

.service-chip-grid.is-three .service-feature-card:hover {
    border-color: transparent;
    border-left-color: transparent;
    background: var(--red-gradient);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(198, 0, 33, 0.22);
}

.service-chip-grid.is-three .service-feature-card:hover .service-feature-number {
    background: var(--dark-gradient);
    color: #ffffff;
}

.service-detail-band.is-red .service-chip-grid {
    color: #ffffff;
}

.service-detail-band.is-red .service-feature-card {
    border-color: rgba(255, 255, 255, 0.32);
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.service-detail-band.is-red .service-feature-card::before {
    background: #ffffff;
    opacity: 0.72;
}

.service-detail-band.is-red .service-feature-number {
    border-color: transparent;
    background: #ffffff;
    color: #c60021;
}

.service-detail-band.is-red .service-feature-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
    border-left-color: #ffffff;
}

.service-detail-band.is-red .service-feature-card:hover .service-feature-number {
    background: var(--dark-gradient);
    color: #ffffff;
}

.service-process-section {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background: #f5f6f8;
}

.service-process-section::before {
    content: none;
}

.service-process-section .container {
    position: relative;
    z-index: 1;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
}

.service-process-grid::before {
    content: none;
}

.service-process-card {
    position: relative;
    min-height: auto;
    padding: 30px 34px 0 0;
    border-right: 0;
    background: transparent;
    box-shadow: none;
}

.service-process-card:not(:first-child) {
    padding-left: 34px;
    border-left: 1px solid var(--line);
}

.service-process-card::after {
    content: none;
}

.service-process-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-bottom: 24px;
    background: var(--red-gradient);
    border-radius: 999px;
}

.service-process-card h3 {
    color: var(--ink);
}

.service-process-card p {
    margin-top: 16px;
    color: #515862;
    font-size: 16px;
}

.service-reference-section {
    background: #ffffff;
}

.service-reference-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    overflow: visible;
}

.service-reference-card::before {
    content: none;
}

.service-reference-card p {
    color: #515862;
}

.service-reference-card .btn {
    margin-top: 23px;
}

.other-services-section {
    padding: 75px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(198, 0, 33, 0.045) 0%, rgba(198, 0, 33, 0) 36%),
        #f5f6f8;
}

.other-services-section .container {
    width: min(1200px, calc(100% - 48px));
    max-width: none;
    padding: 0;
}

.other-services-section .section-head {
    margin-bottom: 46px;
}

.other-services-section .section-head p:not(.section-subtitle) {
    margin-top: 26px;
}

.other-services-scroll {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(198, 0, 33, 0.88) rgba(17, 19, 23, 0.08);
}

.other-services-scroll::-webkit-scrollbar {
    height: 8px;
}

.other-services-scroll::-webkit-scrollbar-track {
    margin: 0 4px;
    background: rgba(17, 19, 23, 0.08);
    border-radius: 999px;
}

.other-services-scroll::-webkit-scrollbar-thumb {
    background: var(--red-gradient);
    border: 2px solid #eef0f3;
    border-radius: 999px;
}

.other-services-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--red-gradient-hover);
}

.other-services-track {
    width: max-content;
    display: flex;
    gap: 22px;
}

.other-service-card {
    width: 330px;
    flex: 0 0 330px;
}

.benefits-section {
    padding: 75px 0;
    background: var(--soft);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.process-row {
    position: relative;
    display: block;
    padding: 20px 0 20px 28px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
}

.process-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-gradient);
}

.process-row p {
    color: var(--graphite);
}

.dark-band .process-row p {
    color: rgba(255, 255, 255, 0.84);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section .section-copy h2 {
    color: var(--paper);
}

.faq-section .section-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.faq-item button {
    width: 100%;
    min-height: 64px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--paper);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    color: #ff5a73;
    font-size: 26px;
    line-height: 1;
    transition: transform 180ms ease, color 180ms ease;
}

.faq-item.is-open button span {
    color: var(--paper);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: rgba(255, 255, 255, 0.72);
}

.faq-item.is-open .faq-answer {
    max-height: 360px;
}

.contact-page-section {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background:
        linear-gradient(135deg, rgba(198, 0, 33, 0.06) 0%, rgba(198, 0, 33, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.contact-layout {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}

.container.contact-layout-redesign {
    position: relative;
    z-index: 1;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 19, 23, 0.08);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.contact-intro-panel,
.contact-form-panel {
    min-width: 0;
}

.contact-intro-panel {
    position: relative;
    flex: 0 0 43%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    padding: 44px;
    overflow: hidden;
    background: var(--dark-gradient);
    color: var(--paper);
}

.contact-intro-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--red-gradient);
}

.contact-intro-panel::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(12deg);
    pointer-events: none;
}

.contact-intro-copy,
.contact-step-list,
.contact-info-grid {
    position: relative;
    z-index: 1;
}

.contact-intro-copy .section-subtitle,
.contact-form-head .section-subtitle {
    margin-bottom: 8px;
}

.contact-intro-copy h1 {
    --title-line-outer-length: 420px;
    --title-line-inner-length: 260px;
    max-width: 520px;
    color: var(--paper);
    font-size: 28px;
    font-weight: 700;
}

.contact-intro-copy p:not(.section-subtitle) {
    max-width: 520px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.contact-step-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-step span {
    display: grid;
    width: 42px;
    height: 36px;
    place-items: center;
    background: var(--red-gradient);
    color: #ffffff;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 700;
}

.contact-step p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-info-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--red-gradient);
    opacity: 0;
    transition: opacity 180ms ease, width 220ms ease;
}

.contact-info-card:hover,
.contact-info-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(255, 23, 68, 0.7);
    background: rgba(255, 23, 68, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 10px 26px rgba(198, 0, 33, 0.18);
}

.contact-info-card:hover::before,
.contact-info-card:focus-within::before {
    width: 100%;
    opacity: 0.24;
}

.contact-info-card img {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 180ms ease, opacity 180ms ease;
}

.contact-info-card:hover img,
.contact-info-card:focus-within img {
    opacity: 1;
    transform: translateX(2px) scale(1.08);
}

.contact-info-card span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 180ms ease;
}

.contact-info-card:hover span,
.contact-info-card:focus-within span {
    color: rgba(255, 255, 255, 0.84);
}

.contact-info-card a {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    transition: color 180ms ease;
}

.contact-info-card a:focus-visible {
    outline: 0;
    color: #ffffff;
}

.contact-form-panel {
    flex: 1 1 0;
    padding: 44px;
    background:
        linear-gradient(135deg, rgba(255, 23, 68, 0.04) 0%, rgba(255, 23, 68, 0) 34%),
        #ffffff;
}

.contact-form-head {
    max-width: 680px;
    margin-bottom: 30px;
}

.contact-form-head h2 {
    --title-line-outer-length: 380px;
    --title-line-inner-length: 220px;
    font-size: 28px;
    font-weight: 700;
}

.contact-form-head p:not(.section-subtitle) {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.contact-form {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-form[aria-busy="true"] {
    cursor: auto;
}

.contact-honeypot {
    position: fixed;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.field {
    width: calc((100% - 18px) / 2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.field.full {
    width: 100%;
}

.attachment-field label span {
    color: var(--muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.attachment-field input[type="file"] {
    height: auto;
    padding: 12px;
    cursor: pointer;
}

.upload-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.selected-files {
    display: grid;
    gap: 8px;
}

.selected-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid #dfe2e7;
    background: #f7f8fa;
    color: var(--graphite);
    font-size: 14px;
}

.selected-file span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.selected-file-remove {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--red);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.privacy-field {
    margin-top: 2px;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.privacy-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 20px;
    min-height: 20px;
    height: 20px;
    margin: 1px 0 0;
    padding: 0;
    accent-color: var(--red);
}

.privacy-consent a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

label {
    color: var(--graphite);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
textarea,
select {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    border: 1px solid #dfe2e7;
    border-radius: 4px;
    background: #f7f8fa;
    color: var(--ink);
    font: inherit;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(198, 0, 33, 0.24);
    border-color: var(--red);
    background: var(--paper);
}

.field-error {
    color: #9c001a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

.form-status {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.form-status:empty {
    display: none;
}

.form-status.is-error {
    padding: 12px 14px;
    border-left: 3px solid var(--red);
    background: #ffe8eb;
    color: #8f0018;
    font-weight: 700;
}

.contact-submit {
    position: relative;
}

.contact-submit.is-sending {
    padding-right: 50px;
}

.contact-submit.is-sending::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: contact-submit-spin 700ms linear infinite;
}

.contact-submit:disabled {
    cursor: default;
    opacity: 0.82;
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form-panel.is-success {
    min-height: 640px;
    padding: 0;
    display: flex;
    background: var(--dark-gradient);
}

.contact-success {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.contact-success::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--red-gradient);
}

.contact-success::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -190px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(14deg);
    pointer-events: none;
}

.contact-success-kicker,
.contact-success h2,
.contact-success-message,
.contact-success-followup,
.contact-success-actions {
    position: relative;
    z-index: 1;
}

.contact-success-kicker {
    margin-bottom: 18px;
    color: #ff5c78;
    font: 700 14px/1.2 "Roboto Mono", monospace;
    letter-spacing: 1.5px;
}

.contact-success h2 {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 750;
}

.contact-success-message {
    margin-top: 22px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.contact-success-followup {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.contact-success-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-success .btn-secondary {
    border-color: rgba(255, 255, 255, 0.78);
    background: transparent;
    color: #ffffff;
}

.form-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 16px;
}

.alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 4px;
    font-weight: 700;
}

.alert-success {
    background: #e9f8ef;
    color: #176b38;
}

.alert-error {
    background: #ffe8eb;
    color: #9c001a;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    width: 100%;
}

@media (max-width: 980px) {
    .contact-layout-redesign {
        flex-direction: column;
    }

    .contact-intro-panel,
    .contact-form-panel {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 680px) {
    .contact-page-section {
        padding: 75px 0;
    }

    .contact-intro-panel,
    .contact-form-panel {
        padding: 28px;
    }

    .contact-form-panel.is-success {
        min-height: 520px;
        padding: 0;
    }

    .contact-success {
        padding: 52px 24px;
    }

    .contact-success-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-success-actions .btn {
        width: 100%;
    }

    .contact-step {
        grid-template-columns: 42px 1fr;
    }
}

.legal-content {
    max-width: 860px;
}

.legal-head {
    margin-bottom: 34px;
}

.legal-head h1 {
    --title-line-outer-length: 360px;
    --title-line-inner-length: 190px;
    font-size: 28px;
    font-weight: 700;
}

.legal-head p:not(.section-subtitle) {
    max-width: 720px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.legal-content h2 {
    margin-top: 34px;
    margin-bottom: 14px;
    font-size: 28px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.legal-content ul {
    padding-left: 22px;
}

.footer-cta {
    background: var(--red-gradient);
    color: var(--paper);
    overflow: hidden;
}

.footer-cta-inner {
    min-height: 360px;
    padding-top: 46px;
    padding-bottom: 46px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 52px;
    overflow: visible;
}

.footer-cta-copy {
    max-width: 720px;
    overflow: visible;
}

.footer-cta h2 {
    --title-line-prelude: 36px;
    --title-line-outer-length: 360px;
    --title-line-inner-length: 190px;
    --title-line-text-gap: 12px;
    --title-line-text-gap-x: var(--title-line-text-gap);
    --title-line-text-gap-y: var(--title-line-text-gap);
    --title-text-start: calc(var(--title-line-small-offset) + var(--title-line-thickness) + var(--title-line-text-gap-x));
    --title-line-bottom-space: calc(var(--title-line-text-gap-y) + (var(--title-line-thickness) * 2) + var(--title-line-stack-gap));
    position: relative;
    display: inline-block;
    max-width: 640px;
    margin: 0 0 22px;
    padding: 0;
}

.footer-cta h2 .title-line-outer-v,
.footer-cta h2 .title-line-inner-v {
    background: var(--title-line-vertical-white);
}

.footer-cta h2 .title-line-outer-h,
.footer-cta h2 .title-line-inner-h {
    background: var(--title-line-horizontal-white);
}

.footer-cta h2 .title-line-outer-h {
    width: min(360px, 100%) !important;
}

.footer-cta h2 .title-line-inner-h {
    width: min(190px, calc(100% - 28px)) !important;
}

.footer-cta p {
    max-width: 650px;
    margin: 14px 0 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.footer-cta .section-subtitle {
    max-width: 720px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
}

.footer-cta-media {
    flex: 0 0 clamp(300px, 30vw, 440px);
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: var(--ink);
    box-shadow: 0 24px 58px rgba(17, 19, 23, 0.28);
}

.footer-cta-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: none;
}

.site-footer {
    background: var(--ink);
    color: var(--paper);
}

.footer-main {
    padding: 64px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 34px;
    align-items: flex-start;
}

.footer-grid > div {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand {
    flex: 1.5 1 0;
}

.footer-brand img {
    width: 205px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-grid h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.footer-grid a:hover {
    color: var(--paper);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.72;
    transition: opacity 180ms ease, transform 180ms ease;
}

.footer-contact-link:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 18px;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    opacity: 0.72;
    transition: opacity 180ms ease, transform 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    outline: 0;
}

.footer-credit img {
    width: auto;
    height: 28px;
    object-fit: contain;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: min(430px, calc(100% - 44px));
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cookie-banner h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.cookie-banner p {
    color: var(--muted);
    font-size: 18px;
}

.cookie-actions {
    margin-top: 13px;
    padding-top: 3px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    overflow: visible;
}

.cookie-actions .btn {
    min-height: auto;
    padding: 10px 16px;
}

@media (max-width: 1180px) and (min-width: 981px) {
    .nav-shell {
        gap: 18px;
        padding-inline: 20px;
    }

    .brand {
        width: 204px;
        height: 78px;
    }

    .main-nav {
        --nav-item-width: 132px;
        --nav-item-gap: 8px;
    }

    .nav-call {
        width: 132px;
        min-width: 132px;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .nav-shell {
        height: 76px;
    }

    .brand {
        width: min(260px, calc(100vw - 120px));
        height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        display: flex;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        height: calc(var(--viewport-height, 100dvh) - 76px);
        padding: 24px 24px 104px;
        padding: 24px 24px calc(104px + env(safe-area-inset-bottom, 0px));
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px) scale(0.985);
        transform-origin: top center;
        transition:
            opacity 260ms ease,
            transform 340ms cubic-bezier(0.18, 1, 0.28, 1),
            visibility 0s linear 260ms;
        overflow: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    body.nav-open .main-nav {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        transform: translateY(0) !important;
        transition-delay: 0s;
    }

    .main-nav > a,
    .nav-dropdown > button {
        width: 100%;
        padding: 14px 18px;
        background: var(--soft);
    }

    .main-nav .nav-dropdown > button:not(.is-active),
    .main-nav .nav-dropdown:hover > button:not(.is-active),
    .main-nav .nav-dropdown:focus-within > button:not(.is-active) {
        color: var(--graphite);
        background: var(--soft);
        box-shadow: none;
    }

    .main-nav > a::before,
    .main-nav > a::after,
    .nav-dropdown > button::before,
    .nav-dropdown > button::after {
        content: none;
        display: none;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown {
        opacity: 0;
        transform: translateY(14px);
        transition:
            opacity 240ms ease,
            transform 300ms cubic-bezier(0.18, 1, 0.28, 1),
            color 180ms ease,
            background 180ms ease,
            box-shadow 180ms ease;
    }

    body.nav-open .main-nav > a,
    body.nav-open .main-nav > .nav-dropdown {
        opacity: 1;
        transform: translateY(0);
    }

    body.nav-open .main-nav > :nth-child(1) {
        transition-delay: 70ms;
    }

    body.nav-open .main-nav > :nth-child(2) {
        transition-delay: 120ms;
    }

    body.nav-open .main-nav > :nth-child(3) {
        transition-delay: 170ms;
    }

    body.nav-open .main-nav > :nth-child(4) {
        transition-delay: 220ms;
    }

    body.nav-open .main-nav > :nth-child(5) {
        transition-delay: 270ms;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 0;
        border: 0;
        background: transparent;
        opacity: 1;
        display: none;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .nav-dropdown:hover .nav-panel,
    .nav-dropdown:focus-within .nav-panel,
    .nav-dropdown.is-open .nav-panel {
        transform: none;
    }

    .nav-dropdown.is-open .nav-panel {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .nav-panel a {
        padding: 12px 14px;
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: none;
        transform: none;
    }

    .nav-panel a:hover,
    .nav-panel a:focus-visible {
        transform: none;
    }

    .nav-dropdown:hover .nav-arrow,
    .nav-dropdown:focus-within .nav-arrow {
        transform: translateY(-50%);
    }

    .nav-dropdown.is-open .nav-arrow {
        transform: translateY(-50%) rotate(180deg);
    }

    .main-nav .nav-dropdown.is-open > button,
    .main-nav .nav-dropdown.is-open:hover > button,
    .main-nav .nav-dropdown.is-open:focus-within > button {
        color: var(--red);
        background: var(--soft);
        box-shadow: inset 0 0 0 1px rgba(198, 0, 33, 0.22);
    }

    .nav-dropdown.is-open > button .nav-arrow {
        filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(4550%) hue-rotate(337deg) brightness(82%) contrast(110%);
    }

    .nav-call {
        display: none;
    }

    .split,
    .contact-layout,
    .footer-grid,
    .footer-cta-inner {
        flex-direction: column;
    }

    .footer-cta-inner {
        align-items: flex-start;
    }

    .service-overview-image,
    .service-detail-image {
        width: 100%;
        height: 540px;
        min-height: 0;
    }

    .service-detail-image.is-square {
        height: auto;
    }

    .service-overview.has-image .split {
        grid-template-columns: 1fr;
    }

    .service-overview-cards {
        grid-template-columns: 1fr;
    }

    .other-service-card {
        width: 300px;
        flex: 0 0 300px;
    }

    .footer-cta-media {
        width: min(420px, 86vw);
        flex: 0 0 auto;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-block,
    .service-detail-block.is-reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-block.is-reverse .service-detail-copy,
    .service-detail-block.is-reverse .service-detail-image {
        grid-column: auto;
        grid-row: auto;
    }

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

    .process-showcase {
        grid-template-columns: 1fr;
    }

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

    .process-stage {
        min-height: 620px;
    }

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

    .value-grid .value-card {
        width: calc((100% - 18px) / 2);
    }

    .intro-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-proof {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .service-card,
    .project-card,
    .value-card,
    .benefit-card,
    .contact-card {
        width: calc((100% - 22px) / 2);
    }

    .other-service-card {
        width: 300px;
        flex: 0 0 300px;
    }

    .contact-card,
    .field {
        width: 100%;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 18px;
    }

    .container,
    .nav-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand {
        width: min(240px, calc(100vw - 120px));
        height: 50px;
    }

    .brand img {
        width: 100%;
        height: 100%;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 84px;
    }

    .hero h1 {
        font-size: 36px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-lead,
    .page-hero p {
        font-size: 18px;
    }

    .hero-actions,
    .hero-proof,
    .card-grid {
        flex-direction: column;
    }

    .hero-actions .btn-secondary {
        border-width: 2px;
        font-weight: 800;
        padding: 12px 24px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-long-section {
        padding: 0;
    }

    .service-detail-band,
    .service-process-section {
        padding: 75px 0;
    }

    .service-overview-image,
    .service-detail-image {
        height: 380px;
        min-height: 0;
    }

    .service-detail-image.is-square {
        height: auto;
    }

    .service-detail-block {
        padding: 0;
    }

    .service-chip-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-chip-grid.is-three {
        grid-template-columns: 1fr;
    }

    .service-feature-card {
        max-width: 100%;
    }

    .service-process-card {
        min-height: auto;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
        padding: 24px 0;
    }

    .service-process-card:not(:first-child) {
        padding-left: 0;
        border-left: 0;
    }

    .service-process-card:last-child {
        border-bottom: 0;
    }

    .service-process-grid::before {
        left: 24px;
        right: 24px;
    }

    .process-showcase {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 18px 10px;
        align-items: stretch;
    }

    .process-mobile-nav {
        display: contents;
    }

    .process-mobile-arrow {
        display: inline-flex;
        width: 48px;
        min-height: 124px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font: inherit;
        font-size: 20px;
        font-weight: 800;
        cursor: pointer;
    }

    .process-mobile-arrow img {
        display: block;
        width: 30px;
        height: 30px;
        filter: brightness(0) invert(1);
        pointer-events: none;
    }

    .process-mobile-arrow[data-process-prev] img {
        transform: rotate(180deg);
    }

    .process-mobile-arrow:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .process-mobile-arrow:last-child {
        grid-column: 3;
        grid-row: 1;
    }

    .process-mobile-arrow:active,
    .process-mobile-arrow:focus-visible {
        border-color: rgba(255, 255, 255, 0.5);
        background: var(--red-gradient);
        outline: 0;
    }

    .process-tabs {
        display: flex;
        grid-template-columns: none;
        grid-column: 2;
        grid-row: 1;
        flex-direction: row;
        gap: 12px;
        min-width: 0;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .process-tabs::-webkit-scrollbar {
        display: none;
    }

    .process-tab {
        flex: 0 0 min(100%, 310px);
        min-height: 124px;
        padding: 18px;
        scroll-snap-align: center;
    }

    .other-service-card {
        width: 260px;
        flex: 0 0 260px;
    }

    .other-services-track {
        gap: 14px;
    }

    .process-stage {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 0;
        overflow: visible;
        border-color: rgba(255, 255, 255, 0.16);
        background: transparent;
        box-shadow: none;
    }

    .process-panel {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 6px;
        background: #0b0c0f;
        box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
    }

    .process-panel[hidden] {
        display: none;
    }

    .process-image {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        aspect-ratio: 1 / 1;
        min-height: 0;
        margin: 0;
        border-radius: 0;
    }

    .process-image img {
        min-height: 0;
        aspect-ratio: 1 / 1;
        transform: none;
    }

    .process-info {
        grid-column: auto;
        grid-row: auto;
        padding: 26px;
        justify-content: flex-start;
    }

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

    .value-grid .value-card {
        width: 100%;
    }

    .intro-proof-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
        gap: 14px;
    }

    .intro-proof-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 18px 16px 20px;
        border: 0;
    }

    .intro-proof-card:first-child {
        padding-top: 18px;
        padding-left: 16px;
    }

    .intro-proof-card:last-child {
        padding-right: 16px;
        padding-bottom: 20px;
    }

    .intro-proof-icon {
        width: 48px;
        height: 48px;
    }

    .service-card,
    .project-card,
    .value-card,
    .benefit-card,
    .contact-card {
        width: 100%;
    }

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

    .other-service-card {
        width: 260px;
        flex: 0 0 260px;
    }

    .service-card img,
    .project-card img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .intro-band,
    .services-section,
    .references-section,
    .faq-section,
    .value-section,
    .partners-section,
    .content-section,
    .benefits-section,
    .dark-band {
        padding: 75px 0;
    }

    .partner-logo-card {
        width: 160px;
        height: 90px;
        padding: 18px 22px;
    }

    .partner-logo-card img {
        max-height: 48px;
    }

    .page-hero {
        padding: 86px 0 56px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Project-wide sharp premium finish: no rounded UI, no image shadows or zoom. */
*,
*::before,
*::after {
    border-radius: 0 !important;
}

.image-frame,
.service-overview-image,
.service-detail-image,
.footer-cta-media {
    --media-l-outer: 104px;
    --media-l-inner: 78px;
    --media-l-gap: 9px;
    --media-l-outset: 18px;
    --media-l-thickness: 3px;
    position: relative;
    overflow: visible !important;
    box-shadow: none !important;
}

.image-frame,
.service-overview-image,
.service-detail-image,
.footer-cta-media {
    padding: var(--media-l-outset) !important;
    background: transparent !important;
}

.image-frame::before,
.service-overview-image::before,
.service-detail-image::before,
.footer-cta-media::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    inset: auto !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    z-index: 5 !important;
    width: calc(var(--media-l-outer) + var(--media-l-gap));
    height: calc(var(--media-l-outer) + var(--media-l-gap));
    pointer-events: none;
    background-image:
        var(--image-corner-top-vertical),
        var(--title-line-horizontal),
        var(--image-corner-top-vertical),
        var(--title-line-horizontal);
    background-size:
        var(--media-l-thickness) var(--media-l-outer),
        var(--media-l-outer) var(--media-l-thickness),
        var(--media-l-thickness) var(--media-l-inner),
        var(--media-l-inner) var(--media-l-thickness);
    background-position:
        left top,
        left top,
        var(--media-l-gap) var(--media-l-gap),
        var(--media-l-gap) var(--media-l-gap);
    background-repeat: no-repeat;
}

.image-frame::after {
    border: 0 !important;
}

.image-frame::after,
.service-overview-image::after,
.service-detail-image::after,
.footer-cta-media::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    inset: auto !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 5 !important;
    width: calc(var(--media-l-outer) + var(--media-l-gap));
    height: calc(var(--media-l-outer) + var(--media-l-gap));
    pointer-events: none;
    border: 0 !important;
    background-image:
        var(--image-corner-bottom-vertical),
        var(--detail-line-horizontal-red),
        var(--image-corner-bottom-vertical),
        var(--detail-line-horizontal-red);
    background-size:
        var(--media-l-thickness) var(--media-l-outer),
        var(--media-l-outer) var(--media-l-thickness),
        var(--media-l-thickness) var(--media-l-inner),
        var(--media-l-inner) var(--media-l-thickness);
    background-position:
        right bottom,
        right bottom,
        right var(--media-l-gap) bottom var(--media-l-gap),
        right var(--media-l-gap) bottom var(--media-l-gap);
    background-repeat: no-repeat;
}

.image-frame img,
.service-overview-image img,
.service-detail-image img,
.process-image img,
.footer-cta-media img,
.service-card img,
.project-card img {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}

.image-frame:hover img,
.service-overview-image:hover img,
.service-detail-image:hover img,
.process-image:hover img,
.footer-cta-media:hover img,
.service-card:hover img,
.project-card:hover img,
.process-panel.is-active .process-image img {
    transform: none !important;
}

.service-card::before,
.service-card::after,
.project-card::before,
.project-card::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.process-image::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

.service-detail-band.is-red .service-detail-image::before,
.footer-cta .footer-cta-media::before {
    background-image:
        var(--image-corner-top-vertical-white),
        var(--title-line-horizontal-white),
        var(--image-corner-top-vertical-white),
        var(--title-line-horizontal-white) !important;
}

.service-detail-band.is-red .service-detail-image::after,
.footer-cta .footer-cta-media::after {
    background-image:
        var(--detail-line-vertical-white),
        var(--detail-line-horizontal-white),
        var(--detail-line-vertical-white),
        var(--detail-line-horizontal-white) !important;
}

/* Footer CTA title: subtitle and h2 share one title frame like the other sections. */
.footer-cta-heading {
    --footer-title-vertical: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 26%, rgba(255, 255, 255, 0.94) 72%, #ffffff 100%);
    --footer-title-horizontal: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.48) 62%, rgba(255, 255, 255, 0) 100%);
    --title-line-prelude: 18px;
    --title-line-inner-top-trim: 36px;
    --title-line-outer-length: 470px;
    --title-line-inner-length: 300px;
    --title-text-start: calc(var(--title-line-small-offset) + var(--title-line-thickness) + var(--title-line-text-gap-x));
    --title-line-bottom-space: calc(var(--title-line-text-gap-y) + (var(--title-line-thickness) * 2) + var(--title-line-stack-gap));
    position: relative;
    display: inline-block;
    max-width: 720px;
    margin: 0 0 22px;
    overflow: visible;
}

.footer-cta-heading .title-frame,
.footer-cta-heading .title-text {
    display: block;
}

.footer-cta-heading .section-subtitle {
    margin: 0 0 12px;
    max-width: none;
    padding-left: 0;
}

.footer-cta-heading h2 {
    position: static;
    display: block;
    max-width: 640px;
    margin: 0;
    padding: 0;
}

.footer-cta-heading .title-line-outer-v,
.footer-cta-heading .title-line-inner-v {
    background: var(--footer-title-vertical) !important;
}

.footer-cta-heading .title-line-outer-h,
.footer-cta-heading .title-line-inner-h {
    background: var(--footer-title-horizontal) !important;
}

.footer-cta-heading .title-line-outer-h {
    width: min(470px, 100%) !important;
}

.footer-cta-heading .title-line-inner-h {
    width: min(300px, calc(100% - 28px)) !important;
}

section.content-section.reference-marquee-section,
section.content-section.project-inquiry-section {
    background: var(--red-gradient) !important;
    color: #ffffff !important;
}

section.content-section.reference-marquee-section .section-subtitle,
section.content-section.reference-marquee-section h2,
section.content-section.reference-marquee-section p,
section.content-section.project-inquiry-section .section-subtitle,
section.content-section.project-inquiry-section h2,
section.content-section.project-inquiry-section p {
    color: #ffffff !important;
}

section.content-section.reference-marquee-section .reference-marquee-actions .btn {
    background: var(--dark-gradient) !important;
    color: #ffffff !important;
}

section.content-section.project-inquiry-section .contact-card {
    background: var(--dark-gradient) !important;
}

section.content-section.project-inquiry-section .contact-card .btn {
    margin-top: 24px;
}

section.content-section.reference-marquee-section .title-line-outer-v,
section.content-section.reference-marquee-section .title-line-inner-v,
section.content-section.project-inquiry-section .title-line-outer-v,
section.content-section.project-inquiry-section .title-line-inner-v {
    background: var(--title-line-vertical-white) !important;
}

section.content-section.reference-marquee-section .title-line-outer-h,
section.content-section.reference-marquee-section .title-line-inner-h,
section.content-section.project-inquiry-section .title-line-outer-h,
section.content-section.project-inquiry-section .title-line-inner-h {
    background: var(--title-line-horizontal-white) !important;
}

@media (max-width: 980px) {
    .services-section .service-card-reparatur-wartung {
        width: 100%;
        flex-direction: column;
    }

    .services-section .service-card-reparatur-wartung img,
    .services-section .service-card-reparatur-wartung .card-body {
        width: 100%;
    }

    .services-section .service-card-reparatur-wartung img {
        aspect-ratio: 1 / 1;
    }

    .about-intro-band .section-copy {
        order: 1;
    }

    .about-intro-band .about-intro-image {
        order: 2;
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }
}
